/*!**************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-toastification/dist/index.css ***!
  \**************************************************************************************************/
.Vue-Toastification__container {
  z-index: 9999;
  position: fixed;
  padding: 4px;
  width: 600px;
  box-sizing: border-box;
  display: flex;
  min-height: 100%;
  color: #fff;
  flex-direction: column;
  pointer-events: none;
}
@media only screen and (min-width : 600px) {
  .Vue-Toastification__container.top-left, .Vue-Toastification__container.top-right, .Vue-Toastification__container.top-center {
    top: 1em;
  }
  .Vue-Toastification__container.bottom-left, .Vue-Toastification__container.bottom-right, .Vue-Toastification__container.bottom-center {
    bottom: 1em;
    flex-direction: column-reverse;
  }
  .Vue-Toastification__container.top-left, .Vue-Toastification__container.bottom-left {
    left: 1em;
  }
  .Vue-Toastification__container.top-left .Vue-Toastification__toast, .Vue-Toastification__container.bottom-left .Vue-Toastification__toast {
    margin-right: auto;
  }
  @supports not (-moz-appearance: none) {
    .Vue-Toastification__container.top-left .Vue-Toastification__toast--rtl, .Vue-Toastification__container.bottom-left .Vue-Toastification__toast--rtl {
      margin-right: unset;
      margin-left: auto;
    }
  }
  .Vue-Toastification__container.top-right, .Vue-Toastification__container.bottom-right {
    right: 1em;
  }
  .Vue-Toastification__container.top-right .Vue-Toastification__toast, .Vue-Toastification__container.bottom-right .Vue-Toastification__toast {
    margin-left: auto;
  }
  @supports not (-moz-appearance: none) {
    .Vue-Toastification__container.top-right .Vue-Toastification__toast--rtl, .Vue-Toastification__container.bottom-right .Vue-Toastification__toast--rtl {
      margin-left: unset;
      margin-right: auto;
    }
  }
  .Vue-Toastification__container.top-center, .Vue-Toastification__container.bottom-center {
    left: 50%;
    margin-left: -300px;
  }
  .Vue-Toastification__container.top-center .Vue-Toastification__toast, .Vue-Toastification__container.bottom-center .Vue-Toastification__toast {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width : 600px) {
  .Vue-Toastification__container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Vue-Toastification__container .Vue-Toastification__toast {
    width: 100%;
  }
  .Vue-Toastification__container.top-left, .Vue-Toastification__container.top-right, .Vue-Toastification__container.top-center {
    top: 0;
  }
  .Vue-Toastification__container.bottom-left, .Vue-Toastification__container.bottom-right, .Vue-Toastification__container.bottom-center {
    bottom: 0;
    flex-direction: column-reverse;
  }
}

.Vue-Toastification__toast {
  display: inline-flex;
  position: relative;
  max-height: 800px;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 22px 24px;
  border-radius: 8px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  justify-content: space-between;
  font-family: "Lato", Helvetica, "Roboto", Arial, sans-serif;
  max-width: 600px;
  min-width: 326px;
  pointer-events: auto;
  overflow: hidden;
  transform: translateZ(0);
  direction: ltr;
}
.Vue-Toastification__toast--rtl {
  direction: rtl;
}
.Vue-Toastification__toast--default {
  background-color: #1976d2;
  color: #fff;
}
.Vue-Toastification__toast--info {
  background-color: #2196f3;
  color: #fff;
}
.Vue-Toastification__toast--success {
  background-color: #4caf50;
  color: #fff;
}
.Vue-Toastification__toast--error {
  background-color: #ff5252;
  color: #fff;
}
.Vue-Toastification__toast--warning {
  background-color: #ffc107;
  color: #fff;
}
@media only screen and (max-width : 600px) {
  .Vue-Toastification__toast {
    border-radius: 0px;
    margin-bottom: 0.5rem;
  }
}
.Vue-Toastification__toast-body {
  flex: 1;
  line-height: 24px;
  font-size: 16px;
  word-break: break-word;
  white-space: pre-wrap;
}
.Vue-Toastification__toast-component-body {
  flex: 1;
}
.Vue-Toastification__toast.disable-transition {
  transition: none !important;
  animation: none !important;
}

.Vue-Toastification__close-button {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  padding-left: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  align-items: center;
  color: #fff;
  opacity: 0.3;
  transition: visibility 0s, opacity 0.2s linear;
}
.Vue-Toastification__close-button:hover, .Vue-Toastification__close-button:focus {
  opacity: 1;
}
.Vue-Toastification__toast:not(:hover) .Vue-Toastification__close-button.show-on-hover {
  opacity: 0;
}
.Vue-Toastification__toast--rtl .Vue-Toastification__close-button {
  padding-left: unset;
  padding-right: 10px;
}

@keyframes scale-x-frames {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Vue-Toastification__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 10000;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
  animation: scale-x-frames linear 1 forwards;
}
.Vue-Toastification__toast--rtl .Vue-Toastification__progress-bar {
  right: 0;
  left: unset;
  transform-origin: right;
}

.Vue-Toastification__icon {
  margin: auto 18px auto 0px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  transition: 0.3s ease;
  align-items: center;
  width: 20px;
  height: 100%;
}
.Vue-Toastification__toast--rtl .Vue-Toastification__icon {
  margin: auto 0px auto 18px;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutRight {
  40% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(1000px, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Vue-Toastification__bounce-enter-active.top-left, .Vue-Toastification__bounce-enter-active.bottom-left {
  animation-name: bounceInLeft;
}
.Vue-Toastification__bounce-enter-active.top-right, .Vue-Toastification__bounce-enter-active.bottom-right {
  animation-name: bounceInRight;
}
.Vue-Toastification__bounce-enter-active.top-center {
  animation-name: bounceInDown;
}
.Vue-Toastification__bounce-enter-active.bottom-center {
  animation-name: bounceInUp;
}

.Vue-Toastification__bounce-leave-active.top-left, .Vue-Toastification__bounce-leave-active.bottom-left {
  animation-name: bounceOutLeft;
}
.Vue-Toastification__bounce-leave-active.top-right, .Vue-Toastification__bounce-leave-active.bottom-right {
  animation-name: bounceOutRight;
}
.Vue-Toastification__bounce-leave-active.top-center {
  animation-name: bounceOutUp;
}
.Vue-Toastification__bounce-leave-active.bottom-center {
  animation-name: bounceOutDown;
}

.Vue-Toastification__bounce-move {
  transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 400ms;
}

/* ----------------------------------------------
 * Modified version from Animista
 * Animista is Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
@keyframes fadeOutTop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}
@keyframes fadeOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50px);
    opacity: 0;
  }
}
@keyframes fadeOutBottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(50px);
    opacity: 0;
  }
}
@keyframes fadeOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(50px);
    opacity: 0;
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInTop {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.Vue-Toastification__fade-enter-active.top-left, .Vue-Toastification__fade-enter-active.bottom-left {
  animation-name: fadeInLeft;
}
.Vue-Toastification__fade-enter-active.top-right, .Vue-Toastification__fade-enter-active.bottom-right {
  animation-name: fadeInRight;
}
.Vue-Toastification__fade-enter-active.top-center {
  animation-name: fadeInTop;
}
.Vue-Toastification__fade-enter-active.bottom-center {
  animation-name: fadeInBottom;
}

.Vue-Toastification__fade-leave-active.top-left, .Vue-Toastification__fade-leave-active.bottom-left {
  animation-name: fadeOutLeft;
}
.Vue-Toastification__fade-leave-active.top-right, .Vue-Toastification__fade-leave-active.bottom-right {
  animation-name: fadeOutRight;
}
.Vue-Toastification__fade-leave-active.top-center {
  animation-name: fadeOutTop;
}
.Vue-Toastification__fade-leave-active.bottom-center {
  animation-name: fadeOutBottom;
}

.Vue-Toastification__fade-move {
  transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 400ms;
}

/* ----------------------------------------------
 * Modified version from Animista
 * Animista is Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
@keyframes slideInBlurredLeft {
  0% {
    transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 100% 50%;
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideInBlurredTop {
  0% {
    transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 0%;
    filter: blur(240px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideInBlurredRight {
  0% {
    transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 0% 50%;
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideInBlurredBottom {
  0% {
    transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 100%;
    filter: blur(240px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideOutBlurredTop {
  0% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 0%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) scaleY(2) scaleX(0.2);
    transform-origin: 50% 0%;
    filter: blur(240px);
    opacity: 0;
  }
}
@keyframes slideOutBlurredBottom {
  0% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1000px) scaleY(2) scaleX(0.2);
    transform-origin: 50% 100%;
    filter: blur(240px);
    opacity: 0;
  }
}
@keyframes slideOutBlurredLeft {
  0% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-1000px) scaleX(2) scaleY(0.2);
    transform-origin: 100% 50%;
    filter: blur(40px);
    opacity: 0;
  }
}
@keyframes slideOutBlurredRight {
  0% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateX(1000px) scaleX(2) scaleY(0.2);
    transform-origin: 0% 50%;
    filter: blur(40px);
    opacity: 0;
  }
}
.Vue-Toastification__slideBlurred-enter-active.top-left, .Vue-Toastification__slideBlurred-enter-active.bottom-left {
  animation-name: slideInBlurredLeft;
}
.Vue-Toastification__slideBlurred-enter-active.top-right, .Vue-Toastification__slideBlurred-enter-active.bottom-right {
  animation-name: slideInBlurredRight;
}
.Vue-Toastification__slideBlurred-enter-active.top-center {
  animation-name: slideInBlurredTop;
}
.Vue-Toastification__slideBlurred-enter-active.bottom-center {
  animation-name: slideInBlurredBottom;
}

.Vue-Toastification__slideBlurred-leave-active.top-left, .Vue-Toastification__slideBlurred-leave-active.bottom-left {
  animation-name: slideOutBlurredLeft;
}
.Vue-Toastification__slideBlurred-leave-active.top-right, .Vue-Toastification__slideBlurred-leave-active.bottom-right {
  animation-name: slideOutBlurredRight;
}
.Vue-Toastification__slideBlurred-leave-active.top-center {
  animation-name: slideOutBlurredTop;
}
.Vue-Toastification__slideBlurred-leave-active.bottom-center {
  animation-name: slideOutBlurredBottom;
}

.Vue-Toastification__slideBlurred-move {
  transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 400ms;
}
/*!******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/app.scss ***!
  \******************************************************************************************************************************************************/
/*! tailwindcss v2.2.17 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

/**
 * Override legacy focus reset from Normalize with modern Firefox focus styles.
 *
 * This is actually an improvement over the new defaults in Firefox in our testing,
 * as it triggers the better focus styles even for links, which still use a dotted
 * outline in Firefox by default.
 */

:-moz-focusring {
  outline: auto;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}

/**
 * Ensure the default browser behavior of the `hidden` attribute.
 */

[hidden] {
  display: none;
}

*, ::before, ::after{
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

.mx-icon-left:before,
.mx-icon-right:before,
.mx-icon-double-left:before,
.mx-icon-double-right:before,
.mx-icon-double-left:after,
.mx-icon-double-right:after {
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  border-style: solid;
  border-color: currentColor;
  border-width: 2px 0 0 2px;
  border-radius: 1px;
  box-sizing: border-box;
  transform-origin: center;
  transform: rotate(-45deg) scale(0.7);
}

.mx-icon-double-left:after {
  left: -4px;
}

.mx-icon-double-right:before {
  left: 4px;
}

.mx-icon-right:before,
.mx-icon-double-right:before,
.mx-icon-double-right:after {
  transform: rotate(135deg) scale(0.7);
}

.mx-btn {
  box-sizing: border-box;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 15px;
  margin: 0;
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  color: #333333;
  white-space: nowrap;
}

.mx-btn:hover {
  border-color: #3d2706;
  color: #3d2706;
}

.mx-btn-text {
  border: 0;
  padding: 0 4px;
  text-align: left;
  line-height: inherit;
}

.mx-scrollbar {
  height: 100%;
}

.mx-scrollbar:hover .mx-scrollbar-track {
  opacity: 1;
}

.mx-scrollbar-wrap {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.mx-scrollbar-track {
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  width: 6px;
  z-index: 1;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.24s ease-out;
}

.mx-scrollbar-track .mx-scrollbar-thumb {
  position: absolute;
  width: 100%;
  height: 0;
  cursor: pointer;
  border-radius: inherit;
  background-color: rgba(144, 147, 153, 0.3);
  transition: background-color 0.3s;
}

.mx-zoom-in-down-enter-active,
.mx-zoom-in-down-leave-active {
  opacity: 1;
  transform: scaleY(1);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center top;
}

.mx-zoom-in-down-enter,
.mx-zoom-in-down-enter-from,
.mx-zoom-in-down-leave-to {
  opacity: 0;
  transform: scaleY(0);
}

.mx-datepicker {
  position: relative;
  display: inline-block;
  width: 210px;
}

.mx-datepicker svg {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

.mx-datepicker-range {
  width: 320px;
}

.mx-datepicker-inline {
  width: auto;
}

.mx-input-wrapper {
  position: relative;
}

.mx-input-wrapper .mx-icon-clear {
  display: none;
}

.mx-input-wrapper:hover .mx-icon-clear {
  display: block;
}

.mx-input-wrapper:hover .mx-icon-clear + .mx-icon-calendar {
  display: none;
}

.mx-input {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 6px 30px;
  padding-left: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.mx-input:hover, .mx-input:focus {
  border-color: #409aff;
}

.mx-input:disabled, .mx-input.disabled {
  color: #ccc;
  background-color: #f3f3f3;
  border-color: #ccc;
  cursor: not-allowed;
}

.mx-input:focus {
  outline: none;
}

.mx-input::-ms-clear {
  display: none;
}

.mx-icon-calendar,
.mx-icon-clear {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
  vertical-align: middle;
}

.mx-icon-clear {
  cursor: pointer;
}

.mx-icon-clear:hover {
  color: rgba(0, 0, 0, 0.8);
}

.mx-datepicker-main {
  font: 14px/1.5 "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", sans-serif;
  color: #333333;
  background-color: #fff;
  border: 1px solid #e8e8e8;
}

.mx-datepicker-popup {
  position: absolute;
  margin-top: 1px;
  margin-bottom: 1px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 2001;
}

.mx-datepicker-sidebar {
  float: left;
  box-sizing: border-box;
  width: 100px;
  padding: 6px;
  overflow: auto;
}

.mx-datepicker-sidebar + .mx-datepicker-content {
  margin-left: 100px;
  border-left: 1px solid #e8e8e8;
}

.mx-datepicker-body {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.mx-btn-shortcut {
  display: block;
  padding: 0 6px;
  line-height: 24px;
}

.mx-range-wrapper {
  display: flex;
}

@media (max-width: 750px) {
  .mx-range-wrapper {
    flex-direction: column;
  }
}

.mx-datepicker-header {
  padding: 6px 8px;
  border-bottom: 1px solid #e8e8e8;
}

.mx-datepicker-footer {
  padding: 6px 8px;
  text-align: right;
  border-top: 1px solid #e8e8e8;
}

.mx-calendar {
  box-sizing: border-box;
  width: 248px;
  padding: 6px 12px;
}

.mx-calendar + .mx-calendar {
  border-left: 1px solid #e8e8e8;
}

.mx-calendar-header, .mx-time-header {
  box-sizing: border-box;
  height: 34px;
  line-height: 34px;
  text-align: center;
  overflow: hidden;
}

.mx-btn-icon-left,
.mx-btn-icon-double-left {
  float: left;
}

.mx-btn-icon-right,
.mx-btn-icon-double-right {
  float: right;
}

.mx-calendar-header-label {
  font-size: 14px;
}

.mx-calendar-decade-separator {
  margin: 0 2px;
}

.mx-calendar-decade-separator:after {
  content: "~";
}

.mx-calendar-content {
  position: relative;
  height: 224px;
  box-sizing: border-box;
}

.mx-calendar-content .cell {
  cursor: pointer;
}

.mx-calendar-content .cell:hover {
  color: #333333;
  background-color: #f5f4f3;
}

.mx-calendar-content .cell.active {
  color: #fff;
  background-color: #3d2706;
}

.mx-calendar-content .cell.in-range, .mx-calendar-content .cell.hover-in-range {
  color: #333333;
  background-color: #e2dfda;
}

.mx-calendar-content .cell.disabled {
  cursor: not-allowed;
  color: #ccc;
  background-color: #f3f3f3;
}

.mx-calendar-week-mode .mx-date-row {
  cursor: pointer;
}

.mx-calendar-week-mode .mx-date-row:hover {
  background-color: #f5f4f3;
}

.mx-calendar-week-mode .mx-date-row.mx-active-week {
  background-color: #e2dfda;
}

.mx-calendar-week-mode .mx-date-row .cell:hover {
  color: inherit;
  background-color: transparent;
}

.mx-calendar-week-mode .mx-date-row .cell.active {
  color: inherit;
  background-color: transparent;
}

.mx-week-number {
  opacity: 0.5;
}

.mx-table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  text-align: center;
}

.mx-table th {
  padding: 0;
  font-weight: 500;
  vertical-align: middle;
}

.mx-table td {
  padding: 0;
  vertical-align: middle;
}

.mx-table-date td,
.mx-table-date th {
  height: 32px;
  font-size: 12px;
}

.mx-table-date .today {
  color: #503d1f;
}

.mx-table-date .cell.not-current-month {
  color: #ccc;
  background: none;
}

.mx-time {
  flex: 1;
  width: 224px;
  background: #fff;
}

.mx-time + .mx-time {
  border-left: 1px solid #e8e8e8;
}

.mx-calendar-time {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mx-time-header {
  border-bottom: 1px solid #e8e8e8;
}

.mx-time-content {
  height: 224px;
  box-sizing: border-box;
  overflow: hidden;
}

.mx-time-columns {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mx-time-column {
  flex: 1;
  position: relative;
  border-left: 1px solid #e8e8e8;
  text-align: center;
}

.mx-time-column:first-child {
  border-left: 0;
}

.mx-time-column .mx-time-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mx-time-column .mx-time-list::after {
  content: "";
  display: block;
  height: 192px;
}

.mx-time-column .mx-time-item {
  cursor: pointer;
  font-size: 12px;
  height: 32px;
  line-height: 32px;
}

.mx-time-column .mx-time-item:hover {
  color: #333333;
  background-color: #f5f4f3;
}

.mx-time-column .mx-time-item.active {
  color: #3d2706;
  background-color: transparent;
  font-weight: 700;
}

.mx-time-column .mx-time-item.disabled {
  cursor: not-allowed;
  color: #ccc;
  background-color: #f3f3f3;
}

.mx-time-option {
  cursor: pointer;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 20px;
}

.mx-time-option:hover {
  color: #333333;
  background-color: #f5f4f3;
}

.mx-time-option.active {
  color: #3d2706;
  background-color: transparent;
  font-weight: 700;
}

.mx-time-option.disabled {
  cursor: not-allowed;
  color: #ccc;
  background-color: #f3f3f3;
}

body {
  cursor: url(3220110e4d7fa5bce681.png) 10 10, auto;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-text-opacity));
}

@media (min-width: 768px) and (max-width: 1199px) {
  body {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1200px) {
  body {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

button,
input[type=submit] {
  outline: none !important;
}

button, input[type=submit]{
  cursor: pointer;
}

.bw-button {
  display: inline-block;
  font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
  --tw-bg-opacity: 1;
  background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-text-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 9999px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 3rem;
  padding-right: 3rem;
  text-decoration: none;
}

.bw-button.dark {
  --tw-bg-opacity: 1;
  background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-text-opacity));
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bw-button {
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1200px) {
  .bw-button {
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    padding-left: 7rem;
    padding-right: 7rem;
  }
}

#cookiePolicy a:not(.bw-button) {
  text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1199px) {
  #cookiePolicy .cookie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  #cookiePolicy .cookie-container-row {
    flex-shrink: 1;
  }
}

@media (min-width: 1200px) {
  #cookiePolicy .cookie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  #cookiePolicy .cookie-container-row {
    flex-shrink: 1;
  }
}

.bw-downloads {
  margin-right: -.25rem;
}

.bw-downloads .bw-download-item {
  flex: 1 0 50%;
  -webkit-flex: 1 0 50%;
  -moz-flex: 1 0 50%;
  -ms-flex: 1 0 50%;
  -o-flex: 1 0 50%;
  cursor: url(33a5cac616d6bc225edf.png) 35 35, auto;
}

.bw-downloads .bw-download-item a {
  width: 100%;
  cursor: url(33a5cac616d6bc225edf.png) 35 35, auto;
}

.bw-downloads .bw-download-item a:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.bw-downloads .bw-download-item a img {
  position: absolute;
  width: 50%;
  cursor: url(33a5cac616d6bc225edf.png) 35 35, auto;
}

.bw-downloads .bw-download-item a div {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  cursor: url(33a5cac616d6bc225edf.png) 35 35, auto;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bw-downloads .bw-download-item {
    flex: 1 0 21%;
    -webkit-flex: 1 0 21%;
    -moz-flex: 1 0 21%;
    -ms-flex: 1 0 21%;
    -o-flex: 1 0 21%;
  }
}

@media (min-width: 1200px) {
  .bw-downloads .bw-download-item {
    flex: 1 0 21%;
    -webkit-flex: 1 0 21%;
    -moz-flex: 1 0 21%;
    -ms-flex: 1 0 21%;
    -o-flex: 1 0 21%;
  }
}

.spinner {
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.spinner.small {
  width: 2rem;
  height: 2rem;
}

.bw-events-container article a {
  cursor: url(f80bcd6062b5ab724efd.png) 35 35, auto;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bw-events-container {
    margin-right: -3rem;
  }
}

@media (min-width: 1200px) {
  .bw-events-container {
    margin-right: -5rem;
  }
}

footer {
  background-image: url(2c00e1e8767b5e3d228f.svg);
  background-size: auto 100%;
  -webkit-background-size: auto 100%;
  -moz-background-size: auto 100%;
  -ms-background-size: auto 100%;
  -o-background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right top;
  cursor: auto !important;
}

.footerScrollTopClickArea {
  cursor: pointer;
}

.newsletter {
  font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
}

.newsletter .btn-nl:disabled {
  opacity: 0.25;
}

/** Headline / Text / C2A **/

.bw-main-content .bw-headline-text-c2a {
  font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
}

.bw-main-content .bw-headline-text-c2a h2 {
  font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
  --tw-text-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-text-opacity));
  font-size: 1.5rem;
  line-height: 2rem;
  line-height: 1;
}

.bw-main-content .bw-headline-text-c2a strong, .bw-main-content .bw-headline-text-c2a b{
  font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
}

.bw-main-content .bw-headline-text-c2a p {
  padding-bottom: 1rem;
}

.bw-main-content .bw-button {
  margin-top: 0.75rem;
}

.bw-main-content .bw-main-content-dark {
  color: white !important;
}

.bw-main-content .bw-main-content-dark p, .bw-main-content .bw-main-content-dark h2 {
  color: white !important;
}

.bw-main-content .bw-main-content-dark .bw-button {
  --tw-bg-opacity: 1;
  background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-text-opacity));
}

.bw-main-content .bw-3-columns img {
  margin-bottom: 0.5rem;
  cursor: url(65e35f0209e6b1eeb424.png) 35 35, auto;
}

.bw-main-content .bw-3-columns strong, .bw-main-content .bw-3-columns b {
  font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
}

.bw-main-content .bw-accordion strong, .bw-main-content .bw-accordion b {
  font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
}

.bw-main-content p.caption {
  position: absolute;
  bottom: 0px;
  left: 0px;
  margin-left: 1rem;
  margin-bottom: 1rem;
  font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  display: none;
}

.bw-main-content p.caption strong, .bw-main-content p.caption b {
  font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
}

.bw-main-content a:not(.bw-button) {
  text-decoration: underline;
  font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
}

/** Full page image **/

.bw-full-page-image img {
  width: 100vw;
}

/** Half page images **/

.bw-half-page-images img {
  width: 100vw;
}

@media (max-width: 767px) {
  .bw-main-content .bw-headline-text-c2a > div:first-child {
    padding-bottom: 0px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bw-main-content .bw-headline-text-c2a h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .bw-main-content .bw-button {
    margin-top: 1.5rem;
  }

  .bw-main-content p.caption {
    display: block;
  }
}

@media (min-width: 1200px) {
  .bw-main-content .bw-headline-text-c2a h2 {
    font-size: 3.75rem;
    line-height: 1;
  }

  .bw-main-content .bw-button {
    margin-top: 2.5rem;
  }

  .bw-main-content p.caption {
    display: block;
  }
}

/** Logo **/

.bw-header-logo {
  width: 78px;
  height: 85px;
  background-image: url(73b3e148c329fe0ef9a0.svg);
  background-repeat: no-repeat;
  filter: drop-shadow(0px 2px 20px #3d2706);
  -webkit-filter: drop-shadow(0px 2px 20px #3d2706);
  -moz-filter: drop-shadow(0px 2px 20px #3d2706);
  -ms-filter: drop-shadow(0px 2px 20px #3d2706);
  -o-filter: drop-shadow(0px 2px 20px #3d2706);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bw-header-logo {
    width: 136px;
    height: 150px;
  }
}

@media (min-width: 1200px) {
  .bw-header-logo {
    margin-top: 3rem;
    width: 163px;
    height: 180px;
  }
}

/** Subpage **/

.bw-header-subpage {
  height: 70vh !important;
}

.bw-header-subpage img {
  height: 70vh !important;
}

@media (min-width: 1200px) {
  .bw-header-subpage .bw-header-logo {
    width: 136px;
    height: 150px;
  }
}

/** Arrow **/

header .header-arrow {
  animation: header-arrow-scroll 1.2s infinite ease;
  -webkit-animation: header-arrow-scroll 1.2s infinite ease;
  -moz-animation: header-arrow-scroll 1.2s infinite ease;
  -ms-animation: header-arrow-scroll 1.2s infinite ease;
  -o-animation: header-arrow-scroll 1.2s infinite ease;
}

@keyframes header-arrow-scroll {
  0% {
    opacity: 1;
    transform: translateY(-10px) translateX(-50%);
  }

  50% {
    opacity: 0.3;
    transform: translateY(0px) translateX(-50%);
  }

  100% {
    opacity: 1;
    transform: translateY(-10px) translateX(-50%);
  }
}

@-webkit-keyframes header-arrow-scroll {
  0% {
    opacity: 1;
    transform: translateY(-10px) translateX(-50%);
  }

  50% {
    opacity: 0.3;
    transform: translateY(0px) translateX(-50%);
  }

  100% {
    opacity: 1;
    transform: translateY(-10px) translateX(-50%);
  }
}

/** Bulge **/

#navBulgeContainer {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 0px;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
  margin-right: -2px;
}

#navBulgeContainer #navBulge {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 0px;
  width: 0px;
}

#navBulgeContainer #navBulgeBurger {
  position: absolute;
  top: 46.5%;
  right: 22%;
  width: 50%;
}

.navBulgeClickArea {
  cursor: pointer;
}

/** Burger **/

#navBurger svg {
  filter: drop-shadow(0px 2px 20px #3d2706);
  -webkit-filter: drop-shadow(0px 2px 20px #3d2706);
  -moz-filter: drop-shadow(0px 2px 20px #3d2706);
  -ms-filter: drop-shadow(0px 2px 20px #3d2706);
  -o-filter: drop-shadow(0px 2px 20px #3d2706);
}

/** Close button **/

#navClose svg path {
  --tw-text-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-text-opacity));
  stroke: currentColor;
}

/** Menu animation **/

@media (min-width: 1200px) {
  ul.bw-nav li {
    position: relative;
  }

  ul.bw-nav li a:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0px;
    left: 0px;
    width: 0px;
    height: 3px;
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
    transition: width 0.5s ease;
    -webkit-transition: width 0.5s ease;
    -moz-transition: width 0.5s ease;
    -ms-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
  }

  ul.bw-nav li a:hover:after {
    width: 20%;
  }

  #navClose svg path {
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
    stroke: currentColor;
  }
}

#overlay .bw-overlay-close, #registration .bw-overlay-close, #drawing .bw-overlay-close {
  width: 31px;
  height: 31px;
  background-image: url(c1570e01012dbbc225bb.svg);
  background-repeat: no-repeat;
}

#overlay #overlayContent, #registration #overlayContent, #drawing #overlayContent {
  width: 100%;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

#overlay #overlayContent object, #registration #overlayContent object, #drawing #overlayContent object {
  height: 100%;
  width: 100%;
}

#overlay .bw-overlay-logo, #registration .bw-overlay-logo, #drawing .bw-overlay-logo {
  width: 100%;
  height: 20%;
  background-image: url(73b3e148c329fe0ef9a0.svg);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-position: center center;
  -moz-background-position: center center;
  -ms-background-position: center center;
  -o-background-position: center center;
  background-size: auto 60%;
  -webkit-background-size: auto 60%;
  -moz-background-size: auto 60%;
  -ms-background-size: auto 60%;
  -o-background-size: auto 60%;
}

#overlay.bw-overlay-light .bw-overlay-logo, #registration.bw-overlay-light .bw-overlay-logo, #drawing.bw-overlay-light .bw-overlay-logo {
  background-image: url(cf8230758227d9c2e4e0.svg);
}

#overlay.bw-overlay-light .bw-overlay-close, #registration.bw-overlay-light .bw-overlay-close, #drawing.bw-overlay-light .bw-overlay-close {
  background-image: url(04f829efc1d49549b0ef.svg);
}

@media (min-width: 768px) and (max-width: 1199px) {
  #overlay #overlayContent, #registration #overlayContent, #drawing #overlayContent {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 1200px) {
  #overlay #overlayContent, #registration #overlayContent, #drawing #overlayContent {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.bw-form {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.bw-form h2 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
  --tw-text-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-text-opacity));
  width: 100%;
}

.bw-form .bw-form-group {
  width: 100%;
  position: relative;
}

.bw-form .bw-form-group.date-picker {
  text-align: left;
}

.bw-form .bw-form-group .bw-input-group {
  width: 100%;
  position: relative;
  height: 3rem;
}

.bw-form .bw-form-group .bw-input-group label {
  position: absolute;
  --tw-text-opacity: 1;
  color: rgba(123, 108, 92, var(--tw-text-opacity));
  cursor: text;
  top: 10px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 200ms;
  font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
}

.bw-form .bw-form-group .bw-input-group input, .bw-form .bw-form-group .bw-input-group textarea {
  position: absolute;
  width: 100%;
  top: 0;
  --tw-border-opacity: 1;
  border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  border-bottom-width: 2px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-text-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  background-color: transparent;
  font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
}

.bw-form .bw-form-group .bw-input-group.active label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  top: -16px;
}

.bw-form .bw-form-group .bw-input-group.disabled input, .bw-form .bw-form-group .bw-input-group.disabled textarea, .bw-form .bw-form-group .bw-input-group.disabled button {
  opacity: 0.25;
}

.bw-form .bw-form-group .bw-input-group-error {
  font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
  position: absolute;
}

.bw-form .bw-form-group.bw-dropdown {
  text-align: left;
}

.bw-form .bw-form-group.bw-dropdown .bw-input-group input[disabled] {
  opacity: 0.25;
}

.bw-form .bw-form-group.bw-dropdown .bw-dropdown-btn {
  background-image: url(11962e61ef2479e76a18.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -ms-background-size: 100%;
  -o-background-size: 100%;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  right: 0px;
}

.bw-form .bw-form-group.bw-dropdown .bw-dropdown-list {
  position: absolute;
  top: 46px;
  z-index: 40;
  width: 100%;
  max-height: 318px;
  overflow-y: scroll;
}

.bw-form .bw-form-group.bw-dropdown .bw-dropdown-list li {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(147, 197, 253, var(--tw-text-opacity));
  font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
  border-bottom: 1px solid;
  --tw-border-opacity: 1;
  border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  /*&.selected {
    @apply bg-blue-700;
    @apply text-blue-200;
  }*/
}

.bw-form .bw-form-group.bw-dropdown .bw-dropdown-list li:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-text-opacity));
}

.bw-form .bw-form-group .mx-datepicker {
  width: 100%;
  position: absolute;
}

.bw-form .bw-form-group .mx-datepicker .mx-icon-calendar, .bw-form .bw-form-group .mx-datepicker .mx-icon-clear {
  position: absolute;
  right: 0px;
  top: 1.25rem;
  right: 0.75rem;
}

.bw-form .bw-btn {
  display: inline-block;
  font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
  border-radius: 9999px;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.bw-form .bw-btn.bw-btn-primary {
  --tw-bg-opacity: 1;
  background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-text-opacity));
}

.bw-form .bw-btn.bw-btn-secondary {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-text-opacity));
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 300ms;
}

.bw-form .bw-btn.bw-btn-secondary:hover {
  --tw-text-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-text-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  --tw-border-opacity: 1;
  border-color: rgba(61, 39, 6, var(--tw-border-opacity));
}

.bw-form .bw-btn:disabled {
  opacity: 0.25;
}

@media (min-width: 1200px) {
  .bw-form .bw-form-tab {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .bw-form .bw-form-group.third-left {
    width: 33.333333%;
    padding-right: 1.5rem;
  }

  .bw-form .bw-form-group.third-right {
    width: 66.666667%;
  }

  .bw-form .bw-form-group.half-left {
    width: 50%;
    padding-right: 1.5rem;
  }

  .bw-form .bw-form-group.half-right {
    width: 50%;
  }

  .bw-form .bw-btn {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

.bw-registration .bankett-info-box {
  font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-text-opacity));
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  width: 100%;
}

.bw-registration .bankett-info-box a {
  font-weight: 700;
}

.bw-registration .catering-info-box {
  font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-text-opacity));
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  width: 100%;
}

.bw-registration .mobile-info-box {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
}

.bw-drawing {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.bw-drawing .mobile-info-box {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
}

.bw-drawing .wheel {
  margin-bottom: 2rem;
}

.bw-drawing .wheel .wheel-container {
  margin-top: 2rem;
  position: relative;
}

.bw-drawing .wheel .wheel-container .pointer {
  position: absolute;
  top: 0px;
  margin-top: -0.75rem;
  left: 50%;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-translate-x: -50%;
  background-image: url(962e38a06d0a8b29798a.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  z-index: 50;
}

.bw-drawing .wheel .wheel-container .spinner-table {
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}

.bw-drawing .wheel .wheel-container .spinner-table .dial {
  transition: all 12s ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.bw-drawing .wheel .wheel-container .spinner-table .dial.spinning {
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-timing-function: cubic-bezier(0.44, -0.205, 0, 1.13);
          animation-timing-function: cubic-bezier(0.44, -0.205, 0, 1.13);
}

.bw-drawing .wheel .wheel-container .spinner-table .dial.spinning-1 {
  -webkit-animation-name: spinning-1;
          animation-name: spinning-1;
}

.bw-drawing .wheel .wheel-container .spinner-table .dial.spinning-2 {
  -webkit-animation-name: spinning-2;
          animation-name: spinning-2;
}

.bw-drawing .wheel .wheel-container .spinner-table .dial.spinning-3 {
  -webkit-animation-name: spinning-3;
          animation-name: spinning-3;
}

.bw-drawing .wheel .wheel-container .spinner-table .dial.spinning-4 {
  -webkit-animation-name: spinning-4;
          animation-name: spinning-4;
}

.bw-drawing .wheel .wheel-container .spinner-table .dial.spinning-5 {
  -webkit-animation-name: spinning-5;
          animation-name: spinning-5;
}

.bw-drawing .wheel .wheel-container .spinner-table .dial.spinning-6 {
  -webkit-animation-name: spinning-6;
          animation-name: spinning-6;
}

@media (min-width: 1200px) {
  .bw-drawing .wheel {
    margin-bottom: 2.5rem;
  }

  .bw-drawing .wheel .wheel-container {
    margin-top: 2.5rem;
  }

  .bw-drawing .wheel .wheel-container .pointer {
    width: 50px;
    height: 50px;
  }
}

@-webkit-keyframes spinning-1 {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(1050deg);
  }
}

@keyframes spinning-1 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1050deg);
  }
}

@-webkit-keyframes spinning-2 {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(1110deg);
  }
}

@keyframes spinning-2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1110deg);
  }
}

@-webkit-keyframes spinning-3 {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(1170deg);
  }
}

@keyframes spinning-3 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1170deg);
  }
}

@-webkit-keyframes spinning-4 {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(1230deg);
  }
}

@keyframes spinning-4 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1230deg);
  }
}

@-webkit-keyframes spinning-5 {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(1290deg);
  }
}

@keyframes spinning-5 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1290deg);
  }
}

@-webkit-keyframes spinning-6 {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(1350deg);
  }
}

@keyframes spinning-6 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1350deg);
  }
}

.bw-main-content .bw-slider .bw-slider-container .bw-slide {
  flex: 1 0 100vw;
  -webkit-flex: 1 0 100vw;
  -moz-flex: 1 0 100vw;
  -ms-flex: 1 0 100vw;
  -o-flex: 1 0 100vw;
  position: relative;
}

.bw-main-content .bw-slider .bw-slider-container .bw-slide img {
  width: 100vw;
}

.bw-main-content .bw-slider .bw-slider-navigation {
  padding-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.bw-main-content .bw-slider .bw-slider-navigation .bw-slider-navigation-item {
  width: 8.333333%;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  border-bottom-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgba(240, 233, 222, var(--tw-border-opacity));
}

.bw-main-content .bw-slider .bw-slider-navigation .bw-slider-navigation-item.active {
  --tw-border-opacity: 1;
  border-color: rgba(61, 39, 6, var(--tw-border-opacity));
}

#snackbar {
  left: 50%;
  bottom: -100px;
  transform: translateX(-50%);
  transition: transform 0.5s ease;
}

#snackbar.snackbar-visible {
  transform: translate(-50%, -130px);
}

/* Registration Button */

.bw-teaser-button {
  position: relative;
  right: 0px;
  margin-right: 1rem;
  width: 100px;
  height: 100px;
  transform: translateY(-75%);
  -moz-transform: translateY(-75%);
  -ms-transform: translateY(-75%);
  -webkit-transform: translateY(-75%);
  -o-transform: translateY(-75%);
  z-index: 9;
}

.bw-teaser-button svg {
  position: absolute;
  top: 0px;
  width: 100px;
  height: 100px;
}

.bw-teaser-button .bw-teaser-button-title {
  position: absolute;
  top: 0px;
  margin-top: 2rem;
  width: 100%;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
}

.bw-teaser-button .bw-teaser-button-subtitle {
  position: absolute;
  top: 0px;
  margin-top: 3rem;
  width: 100%;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bw-teaser-button {
    margin-right: 2.5rem;
    width: 130px;
    height: 130px;
  }

  .bw-teaser-button svg {
    width: 130px;
    height: 130px;
  }

  .bw-teaser-button .bw-teaser-button-title {
    margin-top: 2.5rem;
  }

  .bw-teaser-button .bw-teaser-button-subtitle {
    margin-top: 4rem;
  }
}

@media (min-width: 1200px) {
  .bw-teaser-button {
    margin-right: 8rem;
    width: 200px;
    height: 200px;
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .bw-teaser-button svg {
    width: 200px;
    height: 200px;
  }

  .bw-teaser-button .bw-teaser-button-title {
    margin-top: 4rem;
  }

  .bw-teaser-button .bw-teaser-button-subtitle {
    margin-top: 6rem;
  }
}

/** IE **/

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #navBurger {
    width: 50px !important;
    height: 50px !important;
  }

  #navBurger svg {
    width: 50px !important;
    height: 50px !important;
  }

  header {
    overflow-y: hidden;
  }

  header #headerVideo, header img {
    height: auto !important;
  }

  header .bw-header-logo {
    -ms-transform: translateX(-50%);
  }

  header .header-arrow {
    -ms-transform: translateX(-50%);
    width: 40px !important;
    height: 40px !important;
  }

  .bw-accordion-item-icon {
    width: 100px !important;
    height: 80px !important;
  }
}

/** Old Edge **/

@supports (-ms-ime-align: auto) {
  #navBurger {
    width: 50px !important;
    height: 50px !important;
  }

  #navBurger svg {
    width: 50px !important;
    height: 50px !important;
  }

  header {
    overflow-y: hidden;
  }

  header #headerVideo,
header img {
    height: auto !important;
  }

  header .bw-header-logo {
    -ms-transform: translateX(-50%);
  }

  header .header-arrow {
    -ms-transform: translateX(-50%);
    width: 40px !important;
    height: 40px !important;
  }

  .bw-accordion-item-icon {
    width: 100px !important;
    height: 80px !important;
  }
}

.container{
  width: 100%;
}

@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}

@media (min-width: 1200px){
  .container{
    max-width: 1200px;
  }
}

.bw-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.bw-hover-animation, .bw-hover-menu > li > a{
  opacity: 1;
}

.bw-hover-animation, .bw-hover-menu > li > a{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.bw-hover-animation, .bw-hover-menu > li > a{
  transition-duration: 300ms;
}

.bw-hover-animation:hover, .bw-hover-menu > li > a:hover{
  opacity: 0.5;
}

.bw-hover-animation:hover, .bw-hover-menu > li > a:hover{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.bw-hover-animation:hover, .bw-hover-menu > li > a:hover{
  transition-duration: 300ms;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.not-sr-only{
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.focus-within\:sr-only:focus-within{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.focus-within\:not-sr-only:focus-within{
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.focus\:sr-only:focus{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.focus\:not-sr-only:focus{
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.pointer-events-none{
  pointer-events: none;
}

.pointer-events-auto{
  pointer-events: auto;
}

.visible{
  visibility: visible;
}

.invisible{
  visibility: hidden;
}

.static{
  position: static;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.sticky{
  position: -webkit-sticky;
  position: sticky;
}

.inset-0{
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.inset-1{
  top: 0.25rem;
  right: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
}

.inset-2{
  top: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  left: 0.5rem;
}

.inset-3{
  top: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
}

.inset-4{
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
}

.inset-5{
  top: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
}

.inset-6{
  top: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
}

.inset-7{
  top: 1.75rem;
  right: 1.75rem;
  bottom: 1.75rem;
  left: 1.75rem;
}

.inset-8{
  top: 2rem;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
}

.inset-9{
  top: 2.25rem;
  right: 2.25rem;
  bottom: 2.25rem;
  left: 2.25rem;
}

.inset-10{
  top: 2.5rem;
  right: 2.5rem;
  bottom: 2.5rem;
  left: 2.5rem;
}

.inset-11{
  top: 2.75rem;
  right: 2.75rem;
  bottom: 2.75rem;
  left: 2.75rem;
}

.inset-12{
  top: 3rem;
  right: 3rem;
  bottom: 3rem;
  left: 3rem;
}

.inset-14{
  top: 3.5rem;
  right: 3.5rem;
  bottom: 3.5rem;
  left: 3.5rem;
}

.inset-16{
  top: 4rem;
  right: 4rem;
  bottom: 4rem;
  left: 4rem;
}

.inset-20{
  top: 5rem;
  right: 5rem;
  bottom: 5rem;
  left: 5rem;
}

.inset-24{
  top: 6rem;
  right: 6rem;
  bottom: 6rem;
  left: 6rem;
}

.inset-28{
  top: 7rem;
  right: 7rem;
  bottom: 7rem;
  left: 7rem;
}

.inset-32{
  top: 8rem;
  right: 8rem;
  bottom: 8rem;
  left: 8rem;
}

.inset-36{
  top: 9rem;
  right: 9rem;
  bottom: 9rem;
  left: 9rem;
}

.inset-40{
  top: 10rem;
  right: 10rem;
  bottom: 10rem;
  left: 10rem;
}

.inset-44{
  top: 11rem;
  right: 11rem;
  bottom: 11rem;
  left: 11rem;
}

.inset-48{
  top: 12rem;
  right: 12rem;
  bottom: 12rem;
  left: 12rem;
}

.inset-52{
  top: 13rem;
  right: 13rem;
  bottom: 13rem;
  left: 13rem;
}

.inset-56{
  top: 14rem;
  right: 14rem;
  bottom: 14rem;
  left: 14rem;
}

.inset-60{
  top: 15rem;
  right: 15rem;
  bottom: 15rem;
  left: 15rem;
}

.inset-64{
  top: 16rem;
  right: 16rem;
  bottom: 16rem;
  left: 16rem;
}

.inset-72{
  top: 18rem;
  right: 18rem;
  bottom: 18rem;
  left: 18rem;
}

.inset-80{
  top: 20rem;
  right: 20rem;
  bottom: 20rem;
  left: 20rem;
}

.inset-96{
  top: 24rem;
  right: 24rem;
  bottom: 24rem;
  left: 24rem;
}

.inset-auto{
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
}

.inset-px{
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
}

.inset-0\.5{
  top: 0.125rem;
  right: 0.125rem;
  bottom: 0.125rem;
  left: 0.125rem;
}

.inset-1\.5{
  top: 0.375rem;
  right: 0.375rem;
  bottom: 0.375rem;
  left: 0.375rem;
}

.inset-2\.5{
  top: 0.625rem;
  right: 0.625rem;
  bottom: 0.625rem;
  left: 0.625rem;
}

.inset-3\.5{
  top: 0.875rem;
  right: 0.875rem;
  bottom: 0.875rem;
  left: 0.875rem;
}

.-inset-0{
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.-inset-1{
  top: -0.25rem;
  right: -0.25rem;
  bottom: -0.25rem;
  left: -0.25rem;
}

.-inset-2{
  top: -0.5rem;
  right: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem;
}

.-inset-3{
  top: -0.75rem;
  right: -0.75rem;
  bottom: -0.75rem;
  left: -0.75rem;
}

.-inset-4{
  top: -1rem;
  right: -1rem;
  bottom: -1rem;
  left: -1rem;
}

.-inset-5{
  top: -1.25rem;
  right: -1.25rem;
  bottom: -1.25rem;
  left: -1.25rem;
}

.-inset-6{
  top: -1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  left: -1.5rem;
}

.-inset-7{
  top: -1.75rem;
  right: -1.75rem;
  bottom: -1.75rem;
  left: -1.75rem;
}

.-inset-8{
  top: -2rem;
  right: -2rem;
  bottom: -2rem;
  left: -2rem;
}

.-inset-9{
  top: -2.25rem;
  right: -2.25rem;
  bottom: -2.25rem;
  left: -2.25rem;
}

.-inset-10{
  top: -2.5rem;
  right: -2.5rem;
  bottom: -2.5rem;
  left: -2.5rem;
}

.-inset-11{
  top: -2.75rem;
  right: -2.75rem;
  bottom: -2.75rem;
  left: -2.75rem;
}

.-inset-12{
  top: -3rem;
  right: -3rem;
  bottom: -3rem;
  left: -3rem;
}

.-inset-14{
  top: -3.5rem;
  right: -3.5rem;
  bottom: -3.5rem;
  left: -3.5rem;
}

.-inset-16{
  top: -4rem;
  right: -4rem;
  bottom: -4rem;
  left: -4rem;
}

.-inset-20{
  top: -5rem;
  right: -5rem;
  bottom: -5rem;
  left: -5rem;
}

.-inset-24{
  top: -6rem;
  right: -6rem;
  bottom: -6rem;
  left: -6rem;
}

.-inset-28{
  top: -7rem;
  right: -7rem;
  bottom: -7rem;
  left: -7rem;
}

.-inset-32{
  top: -8rem;
  right: -8rem;
  bottom: -8rem;
  left: -8rem;
}

.-inset-36{
  top: -9rem;
  right: -9rem;
  bottom: -9rem;
  left: -9rem;
}

.-inset-40{
  top: -10rem;
  right: -10rem;
  bottom: -10rem;
  left: -10rem;
}

.-inset-44{
  top: -11rem;
  right: -11rem;
  bottom: -11rem;
  left: -11rem;
}

.-inset-48{
  top: -12rem;
  right: -12rem;
  bottom: -12rem;
  left: -12rem;
}

.-inset-52{
  top: -13rem;
  right: -13rem;
  bottom: -13rem;
  left: -13rem;
}

.-inset-56{
  top: -14rem;
  right: -14rem;
  bottom: -14rem;
  left: -14rem;
}

.-inset-60{
  top: -15rem;
  right: -15rem;
  bottom: -15rem;
  left: -15rem;
}

.-inset-64{
  top: -16rem;
  right: -16rem;
  bottom: -16rem;
  left: -16rem;
}

.-inset-72{
  top: -18rem;
  right: -18rem;
  bottom: -18rem;
  left: -18rem;
}

.-inset-80{
  top: -20rem;
  right: -20rem;
  bottom: -20rem;
  left: -20rem;
}

.-inset-96{
  top: -24rem;
  right: -24rem;
  bottom: -24rem;
  left: -24rem;
}

.-inset-px{
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}

.-inset-0\.5{
  top: -0.125rem;
  right: -0.125rem;
  bottom: -0.125rem;
  left: -0.125rem;
}

.-inset-1\.5{
  top: -0.375rem;
  right: -0.375rem;
  bottom: -0.375rem;
  left: -0.375rem;
}

.-inset-2\.5{
  top: -0.625rem;
  right: -0.625rem;
  bottom: -0.625rem;
  left: -0.625rem;
}

.-inset-3\.5{
  top: -0.875rem;
  right: -0.875rem;
  bottom: -0.875rem;
  left: -0.875rem;
}

.inset-1\/2{
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
}

.inset-1\/3{
  top: 33.333333%;
  right: 33.333333%;
  bottom: 33.333333%;
  left: 33.333333%;
}

.inset-2\/3{
  top: 66.666667%;
  right: 66.666667%;
  bottom: 66.666667%;
  left: 66.666667%;
}

.inset-1\/4{
  top: 25%;
  right: 25%;
  bottom: 25%;
  left: 25%;
}

.inset-2\/4{
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%;
}

.inset-3\/4{
  top: 75%;
  right: 75%;
  bottom: 75%;
  left: 75%;
}

.inset-full{
  top: 100%;
  right: 100%;
  bottom: 100%;
  left: 100%;
}

.-inset-1\/2{
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
}

.-inset-1\/3{
  top: -33.333333%;
  right: -33.333333%;
  bottom: -33.333333%;
  left: -33.333333%;
}

.-inset-2\/3{
  top: -66.666667%;
  right: -66.666667%;
  bottom: -66.666667%;
  left: -66.666667%;
}

.-inset-1\/4{
  top: -25%;
  right: -25%;
  bottom: -25%;
  left: -25%;
}

.-inset-2\/4{
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
}

.-inset-3\/4{
  top: -75%;
  right: -75%;
  bottom: -75%;
  left: -75%;
}

.-inset-full{
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
}

.inset-x-0{
  left: 0px;
  right: 0px;
}

.inset-x-1{
  left: 0.25rem;
  right: 0.25rem;
}

.inset-x-2{
  left: 0.5rem;
  right: 0.5rem;
}

.inset-x-3{
  left: 0.75rem;
  right: 0.75rem;
}

.inset-x-4{
  left: 1rem;
  right: 1rem;
}

.inset-x-5{
  left: 1.25rem;
  right: 1.25rem;
}

.inset-x-6{
  left: 1.5rem;
  right: 1.5rem;
}

.inset-x-7{
  left: 1.75rem;
  right: 1.75rem;
}

.inset-x-8{
  left: 2rem;
  right: 2rem;
}

.inset-x-9{
  left: 2.25rem;
  right: 2.25rem;
}

.inset-x-10{
  left: 2.5rem;
  right: 2.5rem;
}

.inset-x-11{
  left: 2.75rem;
  right: 2.75rem;
}

.inset-x-12{
  left: 3rem;
  right: 3rem;
}

.inset-x-14{
  left: 3.5rem;
  right: 3.5rem;
}

.inset-x-16{
  left: 4rem;
  right: 4rem;
}

.inset-x-20{
  left: 5rem;
  right: 5rem;
}

.inset-x-24{
  left: 6rem;
  right: 6rem;
}

.inset-x-28{
  left: 7rem;
  right: 7rem;
}

.inset-x-32{
  left: 8rem;
  right: 8rem;
}

.inset-x-36{
  left: 9rem;
  right: 9rem;
}

.inset-x-40{
  left: 10rem;
  right: 10rem;
}

.inset-x-44{
  left: 11rem;
  right: 11rem;
}

.inset-x-48{
  left: 12rem;
  right: 12rem;
}

.inset-x-52{
  left: 13rem;
  right: 13rem;
}

.inset-x-56{
  left: 14rem;
  right: 14rem;
}

.inset-x-60{
  left: 15rem;
  right: 15rem;
}

.inset-x-64{
  left: 16rem;
  right: 16rem;
}

.inset-x-72{
  left: 18rem;
  right: 18rem;
}

.inset-x-80{
  left: 20rem;
  right: 20rem;
}

.inset-x-96{
  left: 24rem;
  right: 24rem;
}

.inset-x-auto{
  left: auto;
  right: auto;
}

.inset-x-px{
  left: 1px;
  right: 1px;
}

.inset-x-0\.5{
  left: 0.125rem;
  right: 0.125rem;
}

.inset-x-1\.5{
  left: 0.375rem;
  right: 0.375rem;
}

.inset-x-2\.5{
  left: 0.625rem;
  right: 0.625rem;
}

.inset-x-3\.5{
  left: 0.875rem;
  right: 0.875rem;
}

.-inset-x-0{
  left: 0px;
  right: 0px;
}

.-inset-x-1{
  left: -0.25rem;
  right: -0.25rem;
}

.-inset-x-2{
  left: -0.5rem;
  right: -0.5rem;
}

.-inset-x-3{
  left: -0.75rem;
  right: -0.75rem;
}

.-inset-x-4{
  left: -1rem;
  right: -1rem;
}

.-inset-x-5{
  left: -1.25rem;
  right: -1.25rem;
}

.-inset-x-6{
  left: -1.5rem;
  right: -1.5rem;
}

.-inset-x-7{
  left: -1.75rem;
  right: -1.75rem;
}

.-inset-x-8{
  left: -2rem;
  right: -2rem;
}

.-inset-x-9{
  left: -2.25rem;
  right: -2.25rem;
}

.-inset-x-10{
  left: -2.5rem;
  right: -2.5rem;
}

.-inset-x-11{
  left: -2.75rem;
  right: -2.75rem;
}

.-inset-x-12{
  left: -3rem;
  right: -3rem;
}

.-inset-x-14{
  left: -3.5rem;
  right: -3.5rem;
}

.-inset-x-16{
  left: -4rem;
  right: -4rem;
}

.-inset-x-20{
  left: -5rem;
  right: -5rem;
}

.-inset-x-24{
  left: -6rem;
  right: -6rem;
}

.-inset-x-28{
  left: -7rem;
  right: -7rem;
}

.-inset-x-32{
  left: -8rem;
  right: -8rem;
}

.-inset-x-36{
  left: -9rem;
  right: -9rem;
}

.-inset-x-40{
  left: -10rem;
  right: -10rem;
}

.-inset-x-44{
  left: -11rem;
  right: -11rem;
}

.-inset-x-48{
  left: -12rem;
  right: -12rem;
}

.-inset-x-52{
  left: -13rem;
  right: -13rem;
}

.-inset-x-56{
  left: -14rem;
  right: -14rem;
}

.-inset-x-60{
  left: -15rem;
  right: -15rem;
}

.-inset-x-64{
  left: -16rem;
  right: -16rem;
}

.-inset-x-72{
  left: -18rem;
  right: -18rem;
}

.-inset-x-80{
  left: -20rem;
  right: -20rem;
}

.-inset-x-96{
  left: -24rem;
  right: -24rem;
}

.-inset-x-px{
  left: -1px;
  right: -1px;
}

.-inset-x-0\.5{
  left: -0.125rem;
  right: -0.125rem;
}

.-inset-x-1\.5{
  left: -0.375rem;
  right: -0.375rem;
}

.-inset-x-2\.5{
  left: -0.625rem;
  right: -0.625rem;
}

.-inset-x-3\.5{
  left: -0.875rem;
  right: -0.875rem;
}

.inset-x-1\/2{
  left: 50%;
  right: 50%;
}

.inset-x-1\/3{
  left: 33.333333%;
  right: 33.333333%;
}

.inset-x-2\/3{
  left: 66.666667%;
  right: 66.666667%;
}

.inset-x-1\/4{
  left: 25%;
  right: 25%;
}

.inset-x-2\/4{
  left: 50%;
  right: 50%;
}

.inset-x-3\/4{
  left: 75%;
  right: 75%;
}

.inset-x-full{
  left: 100%;
  right: 100%;
}

.-inset-x-1\/2{
  left: -50%;
  right: -50%;
}

.-inset-x-1\/3{
  left: -33.333333%;
  right: -33.333333%;
}

.-inset-x-2\/3{
  left: -66.666667%;
  right: -66.666667%;
}

.-inset-x-1\/4{
  left: -25%;
  right: -25%;
}

.-inset-x-2\/4{
  left: -50%;
  right: -50%;
}

.-inset-x-3\/4{
  left: -75%;
  right: -75%;
}

.-inset-x-full{
  left: -100%;
  right: -100%;
}

.inset-y-0{
  top: 0px;
  bottom: 0px;
}

.inset-y-1{
  top: 0.25rem;
  bottom: 0.25rem;
}

.inset-y-2{
  top: 0.5rem;
  bottom: 0.5rem;
}

.inset-y-3{
  top: 0.75rem;
  bottom: 0.75rem;
}

.inset-y-4{
  top: 1rem;
  bottom: 1rem;
}

.inset-y-5{
  top: 1.25rem;
  bottom: 1.25rem;
}

.inset-y-6{
  top: 1.5rem;
  bottom: 1.5rem;
}

.inset-y-7{
  top: 1.75rem;
  bottom: 1.75rem;
}

.inset-y-8{
  top: 2rem;
  bottom: 2rem;
}

.inset-y-9{
  top: 2.25rem;
  bottom: 2.25rem;
}

.inset-y-10{
  top: 2.5rem;
  bottom: 2.5rem;
}

.inset-y-11{
  top: 2.75rem;
  bottom: 2.75rem;
}

.inset-y-12{
  top: 3rem;
  bottom: 3rem;
}

.inset-y-14{
  top: 3.5rem;
  bottom: 3.5rem;
}

.inset-y-16{
  top: 4rem;
  bottom: 4rem;
}

.inset-y-20{
  top: 5rem;
  bottom: 5rem;
}

.inset-y-24{
  top: 6rem;
  bottom: 6rem;
}

.inset-y-28{
  top: 7rem;
  bottom: 7rem;
}

.inset-y-32{
  top: 8rem;
  bottom: 8rem;
}

.inset-y-36{
  top: 9rem;
  bottom: 9rem;
}

.inset-y-40{
  top: 10rem;
  bottom: 10rem;
}

.inset-y-44{
  top: 11rem;
  bottom: 11rem;
}

.inset-y-48{
  top: 12rem;
  bottom: 12rem;
}

.inset-y-52{
  top: 13rem;
  bottom: 13rem;
}

.inset-y-56{
  top: 14rem;
  bottom: 14rem;
}

.inset-y-60{
  top: 15rem;
  bottom: 15rem;
}

.inset-y-64{
  top: 16rem;
  bottom: 16rem;
}

.inset-y-72{
  top: 18rem;
  bottom: 18rem;
}

.inset-y-80{
  top: 20rem;
  bottom: 20rem;
}

.inset-y-96{
  top: 24rem;
  bottom: 24rem;
}

.inset-y-auto{
  top: auto;
  bottom: auto;
}

.inset-y-px{
  top: 1px;
  bottom: 1px;
}

.inset-y-0\.5{
  top: 0.125rem;
  bottom: 0.125rem;
}

.inset-y-1\.5{
  top: 0.375rem;
  bottom: 0.375rem;
}

.inset-y-2\.5{
  top: 0.625rem;
  bottom: 0.625rem;
}

.inset-y-3\.5{
  top: 0.875rem;
  bottom: 0.875rem;
}

.-inset-y-0{
  top: 0px;
  bottom: 0px;
}

.-inset-y-1{
  top: -0.25rem;
  bottom: -0.25rem;
}

.-inset-y-2{
  top: -0.5rem;
  bottom: -0.5rem;
}

.-inset-y-3{
  top: -0.75rem;
  bottom: -0.75rem;
}

.-inset-y-4{
  top: -1rem;
  bottom: -1rem;
}

.-inset-y-5{
  top: -1.25rem;
  bottom: -1.25rem;
}

.-inset-y-6{
  top: -1.5rem;
  bottom: -1.5rem;
}

.-inset-y-7{
  top: -1.75rem;
  bottom: -1.75rem;
}

.-inset-y-8{
  top: -2rem;
  bottom: -2rem;
}

.-inset-y-9{
  top: -2.25rem;
  bottom: -2.25rem;
}

.-inset-y-10{
  top: -2.5rem;
  bottom: -2.5rem;
}

.-inset-y-11{
  top: -2.75rem;
  bottom: -2.75rem;
}

.-inset-y-12{
  top: -3rem;
  bottom: -3rem;
}

.-inset-y-14{
  top: -3.5rem;
  bottom: -3.5rem;
}

.-inset-y-16{
  top: -4rem;
  bottom: -4rem;
}

.-inset-y-20{
  top: -5rem;
  bottom: -5rem;
}

.-inset-y-24{
  top: -6rem;
  bottom: -6rem;
}

.-inset-y-28{
  top: -7rem;
  bottom: -7rem;
}

.-inset-y-32{
  top: -8rem;
  bottom: -8rem;
}

.-inset-y-36{
  top: -9rem;
  bottom: -9rem;
}

.-inset-y-40{
  top: -10rem;
  bottom: -10rem;
}

.-inset-y-44{
  top: -11rem;
  bottom: -11rem;
}

.-inset-y-48{
  top: -12rem;
  bottom: -12rem;
}

.-inset-y-52{
  top: -13rem;
  bottom: -13rem;
}

.-inset-y-56{
  top: -14rem;
  bottom: -14rem;
}

.-inset-y-60{
  top: -15rem;
  bottom: -15rem;
}

.-inset-y-64{
  top: -16rem;
  bottom: -16rem;
}

.-inset-y-72{
  top: -18rem;
  bottom: -18rem;
}

.-inset-y-80{
  top: -20rem;
  bottom: -20rem;
}

.-inset-y-96{
  top: -24rem;
  bottom: -24rem;
}

.-inset-y-px{
  top: -1px;
  bottom: -1px;
}

.-inset-y-0\.5{
  top: -0.125rem;
  bottom: -0.125rem;
}

.-inset-y-1\.5{
  top: -0.375rem;
  bottom: -0.375rem;
}

.-inset-y-2\.5{
  top: -0.625rem;
  bottom: -0.625rem;
}

.-inset-y-3\.5{
  top: -0.875rem;
  bottom: -0.875rem;
}

.inset-y-1\/2{
  top: 50%;
  bottom: 50%;
}

.inset-y-1\/3{
  top: 33.333333%;
  bottom: 33.333333%;
}

.inset-y-2\/3{
  top: 66.666667%;
  bottom: 66.666667%;
}

.inset-y-1\/4{
  top: 25%;
  bottom: 25%;
}

.inset-y-2\/4{
  top: 50%;
  bottom: 50%;
}

.inset-y-3\/4{
  top: 75%;
  bottom: 75%;
}

.inset-y-full{
  top: 100%;
  bottom: 100%;
}

.-inset-y-1\/2{
  top: -50%;
  bottom: -50%;
}

.-inset-y-1\/3{
  top: -33.333333%;
  bottom: -33.333333%;
}

.-inset-y-2\/3{
  top: -66.666667%;
  bottom: -66.666667%;
}

.-inset-y-1\/4{
  top: -25%;
  bottom: -25%;
}

.-inset-y-2\/4{
  top: -50%;
  bottom: -50%;
}

.-inset-y-3\/4{
  top: -75%;
  bottom: -75%;
}

.-inset-y-full{
  top: -100%;
  bottom: -100%;
}

.top-0{
  top: 0px;
}

.top-1{
  top: 0.25rem;
}

.top-2{
  top: 0.5rem;
}

.top-3{
  top: 0.75rem;
}

.top-4{
  top: 1rem;
}

.top-5{
  top: 1.25rem;
}

.top-6{
  top: 1.5rem;
}

.top-7{
  top: 1.75rem;
}

.top-8{
  top: 2rem;
}

.top-9{
  top: 2.25rem;
}

.top-10{
  top: 2.5rem;
}

.top-11{
  top: 2.75rem;
}

.top-12{
  top: 3rem;
}

.top-14{
  top: 3.5rem;
}

.top-16{
  top: 4rem;
}

.top-20{
  top: 5rem;
}

.top-24{
  top: 6rem;
}

.top-28{
  top: 7rem;
}

.top-32{
  top: 8rem;
}

.top-36{
  top: 9rem;
}

.top-40{
  top: 10rem;
}

.top-44{
  top: 11rem;
}

.top-48{
  top: 12rem;
}

.top-52{
  top: 13rem;
}

.top-56{
  top: 14rem;
}

.top-60{
  top: 15rem;
}

.top-64{
  top: 16rem;
}

.top-72{
  top: 18rem;
}

.top-80{
  top: 20rem;
}

.top-96{
  top: 24rem;
}

.top-auto{
  top: auto;
}

.top-px{
  top: 1px;
}

.top-0\.5{
  top: 0.125rem;
}

.top-1\.5{
  top: 0.375rem;
}

.top-2\.5{
  top: 0.625rem;
}

.top-3\.5{
  top: 0.875rem;
}

.-top-0{
  top: 0px;
}

.-top-1{
  top: -0.25rem;
}

.-top-2{
  top: -0.5rem;
}

.-top-3{
  top: -0.75rem;
}

.-top-4{
  top: -1rem;
}

.-top-5{
  top: -1.25rem;
}

.-top-6{
  top: -1.5rem;
}

.-top-7{
  top: -1.75rem;
}

.-top-8{
  top: -2rem;
}

.-top-9{
  top: -2.25rem;
}

.-top-10{
  top: -2.5rem;
}

.-top-11{
  top: -2.75rem;
}

.-top-12{
  top: -3rem;
}

.-top-14{
  top: -3.5rem;
}

.-top-16{
  top: -4rem;
}

.-top-20{
  top: -5rem;
}

.-top-24{
  top: -6rem;
}

.-top-28{
  top: -7rem;
}

.-top-32{
  top: -8rem;
}

.-top-36{
  top: -9rem;
}

.-top-40{
  top: -10rem;
}

.-top-44{
  top: -11rem;
}

.-top-48{
  top: -12rem;
}

.-top-52{
  top: -13rem;
}

.-top-56{
  top: -14rem;
}

.-top-60{
  top: -15rem;
}

.-top-64{
  top: -16rem;
}

.-top-72{
  top: -18rem;
}

.-top-80{
  top: -20rem;
}

.-top-96{
  top: -24rem;
}

.-top-px{
  top: -1px;
}

.-top-0\.5{
  top: -0.125rem;
}

.-top-1\.5{
  top: -0.375rem;
}

.-top-2\.5{
  top: -0.625rem;
}

.-top-3\.5{
  top: -0.875rem;
}

.top-1\/2{
  top: 50%;
}

.top-1\/3{
  top: 33.333333%;
}

.top-2\/3{
  top: 66.666667%;
}

.top-1\/4{
  top: 25%;
}

.top-2\/4{
  top: 50%;
}

.top-3\/4{
  top: 75%;
}

.top-full{
  top: 100%;
}

.-top-1\/2{
  top: -50%;
}

.-top-1\/3{
  top: -33.333333%;
}

.-top-2\/3{
  top: -66.666667%;
}

.-top-1\/4{
  top: -25%;
}

.-top-2\/4{
  top: -50%;
}

.-top-3\/4{
  top: -75%;
}

.-top-full{
  top: -100%;
}

.right-0{
  right: 0px;
}

.right-1{
  right: 0.25rem;
}

.right-2{
  right: 0.5rem;
}

.right-3{
  right: 0.75rem;
}

.right-4{
  right: 1rem;
}

.right-5{
  right: 1.25rem;
}

.right-6{
  right: 1.5rem;
}

.right-7{
  right: 1.75rem;
}

.right-8{
  right: 2rem;
}

.right-9{
  right: 2.25rem;
}

.right-10{
  right: 2.5rem;
}

.right-11{
  right: 2.75rem;
}

.right-12{
  right: 3rem;
}

.right-14{
  right: 3.5rem;
}

.right-16{
  right: 4rem;
}

.right-20{
  right: 5rem;
}

.right-24{
  right: 6rem;
}

.right-28{
  right: 7rem;
}

.right-32{
  right: 8rem;
}

.right-36{
  right: 9rem;
}

.right-40{
  right: 10rem;
}

.right-44{
  right: 11rem;
}

.right-48{
  right: 12rem;
}

.right-52{
  right: 13rem;
}

.right-56{
  right: 14rem;
}

.right-60{
  right: 15rem;
}

.right-64{
  right: 16rem;
}

.right-72{
  right: 18rem;
}

.right-80{
  right: 20rem;
}

.right-96{
  right: 24rem;
}

.right-auto{
  right: auto;
}

.right-px{
  right: 1px;
}

.right-0\.5{
  right: 0.125rem;
}

.right-1\.5{
  right: 0.375rem;
}

.right-2\.5{
  right: 0.625rem;
}

.right-3\.5{
  right: 0.875rem;
}

.-right-0{
  right: 0px;
}

.-right-1{
  right: -0.25rem;
}

.-right-2{
  right: -0.5rem;
}

.-right-3{
  right: -0.75rem;
}

.-right-4{
  right: -1rem;
}

.-right-5{
  right: -1.25rem;
}

.-right-6{
  right: -1.5rem;
}

.-right-7{
  right: -1.75rem;
}

.-right-8{
  right: -2rem;
}

.-right-9{
  right: -2.25rem;
}

.-right-10{
  right: -2.5rem;
}

.-right-11{
  right: -2.75rem;
}

.-right-12{
  right: -3rem;
}

.-right-14{
  right: -3.5rem;
}

.-right-16{
  right: -4rem;
}

.-right-20{
  right: -5rem;
}

.-right-24{
  right: -6rem;
}

.-right-28{
  right: -7rem;
}

.-right-32{
  right: -8rem;
}

.-right-36{
  right: -9rem;
}

.-right-40{
  right: -10rem;
}

.-right-44{
  right: -11rem;
}

.-right-48{
  right: -12rem;
}

.-right-52{
  right: -13rem;
}

.-right-56{
  right: -14rem;
}

.-right-60{
  right: -15rem;
}

.-right-64{
  right: -16rem;
}

.-right-72{
  right: -18rem;
}

.-right-80{
  right: -20rem;
}

.-right-96{
  right: -24rem;
}

.-right-px{
  right: -1px;
}

.-right-0\.5{
  right: -0.125rem;
}

.-right-1\.5{
  right: -0.375rem;
}

.-right-2\.5{
  right: -0.625rem;
}

.-right-3\.5{
  right: -0.875rem;
}

.right-1\/2{
  right: 50%;
}

.right-1\/3{
  right: 33.333333%;
}

.right-2\/3{
  right: 66.666667%;
}

.right-1\/4{
  right: 25%;
}

.right-2\/4{
  right: 50%;
}

.right-3\/4{
  right: 75%;
}

.right-full{
  right: 100%;
}

.-right-1\/2{
  right: -50%;
}

.-right-1\/3{
  right: -33.333333%;
}

.-right-2\/3{
  right: -66.666667%;
}

.-right-1\/4{
  right: -25%;
}

.-right-2\/4{
  right: -50%;
}

.-right-3\/4{
  right: -75%;
}

.-right-full{
  right: -100%;
}

.bottom-0{
  bottom: 0px;
}

.bottom-1{
  bottom: 0.25rem;
}

.bottom-2{
  bottom: 0.5rem;
}

.bottom-3{
  bottom: 0.75rem;
}

.bottom-4{
  bottom: 1rem;
}

.bottom-5{
  bottom: 1.25rem;
}

.bottom-6{
  bottom: 1.5rem;
}

.bottom-7{
  bottom: 1.75rem;
}

.bottom-8{
  bottom: 2rem;
}

.bottom-9{
  bottom: 2.25rem;
}

.bottom-10{
  bottom: 2.5rem;
}

.bottom-11{
  bottom: 2.75rem;
}

.bottom-12{
  bottom: 3rem;
}

.bottom-14{
  bottom: 3.5rem;
}

.bottom-16{
  bottom: 4rem;
}

.bottom-20{
  bottom: 5rem;
}

.bottom-24{
  bottom: 6rem;
}

.bottom-28{
  bottom: 7rem;
}

.bottom-32{
  bottom: 8rem;
}

.bottom-36{
  bottom: 9rem;
}

.bottom-40{
  bottom: 10rem;
}

.bottom-44{
  bottom: 11rem;
}

.bottom-48{
  bottom: 12rem;
}

.bottom-52{
  bottom: 13rem;
}

.bottom-56{
  bottom: 14rem;
}

.bottom-60{
  bottom: 15rem;
}

.bottom-64{
  bottom: 16rem;
}

.bottom-72{
  bottom: 18rem;
}

.bottom-80{
  bottom: 20rem;
}

.bottom-96{
  bottom: 24rem;
}

.bottom-auto{
  bottom: auto;
}

.bottom-px{
  bottom: 1px;
}

.bottom-0\.5{
  bottom: 0.125rem;
}

.bottom-1\.5{
  bottom: 0.375rem;
}

.bottom-2\.5{
  bottom: 0.625rem;
}

.bottom-3\.5{
  bottom: 0.875rem;
}

.-bottom-0{
  bottom: 0px;
}

.-bottom-1{
  bottom: -0.25rem;
}

.-bottom-2{
  bottom: -0.5rem;
}

.-bottom-3{
  bottom: -0.75rem;
}

.-bottom-4{
  bottom: -1rem;
}

.-bottom-5{
  bottom: -1.25rem;
}

.-bottom-6{
  bottom: -1.5rem;
}

.-bottom-7{
  bottom: -1.75rem;
}

.-bottom-8{
  bottom: -2rem;
}

.-bottom-9{
  bottom: -2.25rem;
}

.-bottom-10{
  bottom: -2.5rem;
}

.-bottom-11{
  bottom: -2.75rem;
}

.-bottom-12{
  bottom: -3rem;
}

.-bottom-14{
  bottom: -3.5rem;
}

.-bottom-16{
  bottom: -4rem;
}

.-bottom-20{
  bottom: -5rem;
}

.-bottom-24{
  bottom: -6rem;
}

.-bottom-28{
  bottom: -7rem;
}

.-bottom-32{
  bottom: -8rem;
}

.-bottom-36{
  bottom: -9rem;
}

.-bottom-40{
  bottom: -10rem;
}

.-bottom-44{
  bottom: -11rem;
}

.-bottom-48{
  bottom: -12rem;
}

.-bottom-52{
  bottom: -13rem;
}

.-bottom-56{
  bottom: -14rem;
}

.-bottom-60{
  bottom: -15rem;
}

.-bottom-64{
  bottom: -16rem;
}

.-bottom-72{
  bottom: -18rem;
}

.-bottom-80{
  bottom: -20rem;
}

.-bottom-96{
  bottom: -24rem;
}

.-bottom-px{
  bottom: -1px;
}

.-bottom-0\.5{
  bottom: -0.125rem;
}

.-bottom-1\.5{
  bottom: -0.375rem;
}

.-bottom-2\.5{
  bottom: -0.625rem;
}

.-bottom-3\.5{
  bottom: -0.875rem;
}

.bottom-1\/2{
  bottom: 50%;
}

.bottom-1\/3{
  bottom: 33.333333%;
}

.bottom-2\/3{
  bottom: 66.666667%;
}

.bottom-1\/4{
  bottom: 25%;
}

.bottom-2\/4{
  bottom: 50%;
}

.bottom-3\/4{
  bottom: 75%;
}

.bottom-full{
  bottom: 100%;
}

.-bottom-1\/2{
  bottom: -50%;
}

.-bottom-1\/3{
  bottom: -33.333333%;
}

.-bottom-2\/3{
  bottom: -66.666667%;
}

.-bottom-1\/4{
  bottom: -25%;
}

.-bottom-2\/4{
  bottom: -50%;
}

.-bottom-3\/4{
  bottom: -75%;
}

.-bottom-full{
  bottom: -100%;
}

.left-0{
  left: 0px;
}

.left-1{
  left: 0.25rem;
}

.left-2{
  left: 0.5rem;
}

.left-3{
  left: 0.75rem;
}

.left-4{
  left: 1rem;
}

.left-5{
  left: 1.25rem;
}

.left-6{
  left: 1.5rem;
}

.left-7{
  left: 1.75rem;
}

.left-8{
  left: 2rem;
}

.left-9{
  left: 2.25rem;
}

.left-10{
  left: 2.5rem;
}

.left-11{
  left: 2.75rem;
}

.left-12{
  left: 3rem;
}

.left-14{
  left: 3.5rem;
}

.left-16{
  left: 4rem;
}

.left-20{
  left: 5rem;
}

.left-24{
  left: 6rem;
}

.left-28{
  left: 7rem;
}

.left-32{
  left: 8rem;
}

.left-36{
  left: 9rem;
}

.left-40{
  left: 10rem;
}

.left-44{
  left: 11rem;
}

.left-48{
  left: 12rem;
}

.left-52{
  left: 13rem;
}

.left-56{
  left: 14rem;
}

.left-60{
  left: 15rem;
}

.left-64{
  left: 16rem;
}

.left-72{
  left: 18rem;
}

.left-80{
  left: 20rem;
}

.left-96{
  left: 24rem;
}

.left-auto{
  left: auto;
}

.left-px{
  left: 1px;
}

.left-0\.5{
  left: 0.125rem;
}

.left-1\.5{
  left: 0.375rem;
}

.left-2\.5{
  left: 0.625rem;
}

.left-3\.5{
  left: 0.875rem;
}

.-left-0{
  left: 0px;
}

.-left-1{
  left: -0.25rem;
}

.-left-2{
  left: -0.5rem;
}

.-left-3{
  left: -0.75rem;
}

.-left-4{
  left: -1rem;
}

.-left-5{
  left: -1.25rem;
}

.-left-6{
  left: -1.5rem;
}

.-left-7{
  left: -1.75rem;
}

.-left-8{
  left: -2rem;
}

.-left-9{
  left: -2.25rem;
}

.-left-10{
  left: -2.5rem;
}

.-left-11{
  left: -2.75rem;
}

.-left-12{
  left: -3rem;
}

.-left-14{
  left: -3.5rem;
}

.-left-16{
  left: -4rem;
}

.-left-20{
  left: -5rem;
}

.-left-24{
  left: -6rem;
}

.-left-28{
  left: -7rem;
}

.-left-32{
  left: -8rem;
}

.-left-36{
  left: -9rem;
}

.-left-40{
  left: -10rem;
}

.-left-44{
  left: -11rem;
}

.-left-48{
  left: -12rem;
}

.-left-52{
  left: -13rem;
}

.-left-56{
  left: -14rem;
}

.-left-60{
  left: -15rem;
}

.-left-64{
  left: -16rem;
}

.-left-72{
  left: -18rem;
}

.-left-80{
  left: -20rem;
}

.-left-96{
  left: -24rem;
}

.-left-px{
  left: -1px;
}

.-left-0\.5{
  left: -0.125rem;
}

.-left-1\.5{
  left: -0.375rem;
}

.-left-2\.5{
  left: -0.625rem;
}

.-left-3\.5{
  left: -0.875rem;
}

.left-1\/2{
  left: 50%;
}

.left-1\/3{
  left: 33.333333%;
}

.left-2\/3{
  left: 66.666667%;
}

.left-1\/4{
  left: 25%;
}

.left-2\/4{
  left: 50%;
}

.left-3\/4{
  left: 75%;
}

.left-full{
  left: 100%;
}

.-left-1\/2{
  left: -50%;
}

.-left-1\/3{
  left: -33.333333%;
}

.-left-2\/3{
  left: -66.666667%;
}

.-left-1\/4{
  left: -25%;
}

.-left-2\/4{
  left: -50%;
}

.-left-3\/4{
  left: -75%;
}

.-left-full{
  left: -100%;
}

.isolate{
  isolation: isolate;
}

.isolation-auto{
  isolation: auto;
}

.z-0{
  z-index: 0;
}

.z-10{
  z-index: 10;
}

.z-20{
  z-index: 20;
}

.z-30{
  z-index: 30;
}

.z-40{
  z-index: 40;
}

.z-50{
  z-index: 50;
}

.z-60{
  z-index: 60;
}

.z-70{
  z-index: 70;
}

.z-80{
  z-index: 80;
}

.z-90{
  z-index: 90;
}

.z-100{
  z-index: 100;
}

.z-auto{
  z-index: auto;
}

.focus-within\:z-0:focus-within{
  z-index: 0;
}

.focus-within\:z-10:focus-within{
  z-index: 10;
}

.focus-within\:z-20:focus-within{
  z-index: 20;
}

.focus-within\:z-30:focus-within{
  z-index: 30;
}

.focus-within\:z-40:focus-within{
  z-index: 40;
}

.focus-within\:z-50:focus-within{
  z-index: 50;
}

.focus-within\:z-60:focus-within{
  z-index: 60;
}

.focus-within\:z-70:focus-within{
  z-index: 70;
}

.focus-within\:z-80:focus-within{
  z-index: 80;
}

.focus-within\:z-90:focus-within{
  z-index: 90;
}

.focus-within\:z-100:focus-within{
  z-index: 100;
}

.focus-within\:z-auto:focus-within{
  z-index: auto;
}

.focus\:z-0:focus{
  z-index: 0;
}

.focus\:z-10:focus{
  z-index: 10;
}

.focus\:z-20:focus{
  z-index: 20;
}

.focus\:z-30:focus{
  z-index: 30;
}

.focus\:z-40:focus{
  z-index: 40;
}

.focus\:z-50:focus{
  z-index: 50;
}

.focus\:z-60:focus{
  z-index: 60;
}

.focus\:z-70:focus{
  z-index: 70;
}

.focus\:z-80:focus{
  z-index: 80;
}

.focus\:z-90:focus{
  z-index: 90;
}

.focus\:z-100:focus{
  z-index: 100;
}

.focus\:z-auto:focus{
  z-index: auto;
}

.order-1{
  order: 1;
}

.order-2{
  order: 2;
}

.order-3{
  order: 3;
}

.order-4{
  order: 4;
}

.order-5{
  order: 5;
}

.order-6{
  order: 6;
}

.order-7{
  order: 7;
}

.order-8{
  order: 8;
}

.order-9{
  order: 9;
}

.order-10{
  order: 10;
}

.order-11{
  order: 11;
}

.order-12{
  order: 12;
}

.order-first{
  order: -9999;
}

.order-last{
  order: 9999;
}

.order-none{
  order: 0;
}

.col-auto{
  grid-column: auto;
}

.col-span-1{
  grid-column: span 1 / span 1;
}

.col-span-2{
  grid-column: span 2 / span 2;
}

.col-span-3{
  grid-column: span 3 / span 3;
}

.col-span-4{
  grid-column: span 4 / span 4;
}

.col-span-5{
  grid-column: span 5 / span 5;
}

.col-span-6{
  grid-column: span 6 / span 6;
}

.col-span-7{
  grid-column: span 7 / span 7;
}

.col-span-8{
  grid-column: span 8 / span 8;
}

.col-span-9{
  grid-column: span 9 / span 9;
}

.col-span-10{
  grid-column: span 10 / span 10;
}

.col-span-11{
  grid-column: span 11 / span 11;
}

.col-span-12{
  grid-column: span 12 / span 12;
}

.col-span-full{
  grid-column: 1 / -1;
}

.col-start-1{
  grid-column-start: 1;
}

.col-start-2{
  grid-column-start: 2;
}

.col-start-3{
  grid-column-start: 3;
}

.col-start-4{
  grid-column-start: 4;
}

.col-start-5{
  grid-column-start: 5;
}

.col-start-6{
  grid-column-start: 6;
}

.col-start-7{
  grid-column-start: 7;
}

.col-start-8{
  grid-column-start: 8;
}

.col-start-9{
  grid-column-start: 9;
}

.col-start-10{
  grid-column-start: 10;
}

.col-start-11{
  grid-column-start: 11;
}

.col-start-12{
  grid-column-start: 12;
}

.col-start-13{
  grid-column-start: 13;
}

.col-start-auto{
  grid-column-start: auto;
}

.col-end-1{
  grid-column-end: 1;
}

.col-end-2{
  grid-column-end: 2;
}

.col-end-3{
  grid-column-end: 3;
}

.col-end-4{
  grid-column-end: 4;
}

.col-end-5{
  grid-column-end: 5;
}

.col-end-6{
  grid-column-end: 6;
}

.col-end-7{
  grid-column-end: 7;
}

.col-end-8{
  grid-column-end: 8;
}

.col-end-9{
  grid-column-end: 9;
}

.col-end-10{
  grid-column-end: 10;
}

.col-end-11{
  grid-column-end: 11;
}

.col-end-12{
  grid-column-end: 12;
}

.col-end-13{
  grid-column-end: 13;
}

.col-end-auto{
  grid-column-end: auto;
}

.row-auto{
  grid-row: auto;
}

.row-span-1{
  grid-row: span 1 / span 1;
}

.row-span-2{
  grid-row: span 2 / span 2;
}

.row-span-3{
  grid-row: span 3 / span 3;
}

.row-span-4{
  grid-row: span 4 / span 4;
}

.row-span-5{
  grid-row: span 5 / span 5;
}

.row-span-6{
  grid-row: span 6 / span 6;
}

.row-span-full{
  grid-row: 1 / -1;
}

.row-start-1{
  grid-row-start: 1;
}

.row-start-2{
  grid-row-start: 2;
}

.row-start-3{
  grid-row-start: 3;
}

.row-start-4{
  grid-row-start: 4;
}

.row-start-5{
  grid-row-start: 5;
}

.row-start-6{
  grid-row-start: 6;
}

.row-start-7{
  grid-row-start: 7;
}

.row-start-auto{
  grid-row-start: auto;
}

.row-end-1{
  grid-row-end: 1;
}

.row-end-2{
  grid-row-end: 2;
}

.row-end-3{
  grid-row-end: 3;
}

.row-end-4{
  grid-row-end: 4;
}

.row-end-5{
  grid-row-end: 5;
}

.row-end-6{
  grid-row-end: 6;
}

.row-end-7{
  grid-row-end: 7;
}

.row-end-auto{
  grid-row-end: auto;
}

.float-right{
  float: right;
}

.float-left{
  float: left;
}

.float-none{
  float: none;
}

.clear-left{
  clear: left;
}

.clear-right{
  clear: right;
}

.clear-both{
  clear: both;
}

.clear-none{
  clear: none;
}

.m-0{
  margin: 0px;
}

.m-1{
  margin: 0.25rem;
}

.m-2{
  margin: 0.5rem;
}

.m-3{
  margin: 0.75rem;
}

.m-4{
  margin: 1rem;
}

.m-5{
  margin: 1.25rem;
}

.m-6{
  margin: 1.5rem;
}

.m-7{
  margin: 1.75rem;
}

.m-8{
  margin: 2rem;
}

.m-9{
  margin: 2.25rem;
}

.m-10{
  margin: 2.5rem;
}

.m-11{
  margin: 2.75rem;
}

.m-12{
  margin: 3rem;
}

.m-14{
  margin: 3.5rem;
}

.m-16{
  margin: 4rem;
}

.m-20{
  margin: 5rem;
}

.m-24{
  margin: 6rem;
}

.m-28{
  margin: 7rem;
}

.m-32{
  margin: 8rem;
}

.m-36{
  margin: 9rem;
}

.m-40{
  margin: 10rem;
}

.m-44{
  margin: 11rem;
}

.m-48{
  margin: 12rem;
}

.m-52{
  margin: 13rem;
}

.m-56{
  margin: 14rem;
}

.m-60{
  margin: 15rem;
}

.m-64{
  margin: 16rem;
}

.m-72{
  margin: 18rem;
}

.m-80{
  margin: 20rem;
}

.m-96{
  margin: 24rem;
}

.m-auto{
  margin: auto;
}

.m-px{
  margin: 1px;
}

.m-0\.5{
  margin: 0.125rem;
}

.m-1\.5{
  margin: 0.375rem;
}

.m-2\.5{
  margin: 0.625rem;
}

.m-3\.5{
  margin: 0.875rem;
}

.-m-0{
  margin: 0px;
}

.-m-1{
  margin: -0.25rem;
}

.-m-2{
  margin: -0.5rem;
}

.-m-3{
  margin: -0.75rem;
}

.-m-4{
  margin: -1rem;
}

.-m-5{
  margin: -1.25rem;
}

.-m-6{
  margin: -1.5rem;
}

.-m-7{
  margin: -1.75rem;
}

.-m-8{
  margin: -2rem;
}

.-m-9{
  margin: -2.25rem;
}

.-m-10{
  margin: -2.5rem;
}

.-m-11{
  margin: -2.75rem;
}

.-m-12{
  margin: -3rem;
}

.-m-14{
  margin: -3.5rem;
}

.-m-16{
  margin: -4rem;
}

.-m-20{
  margin: -5rem;
}

.-m-24{
  margin: -6rem;
}

.-m-28{
  margin: -7rem;
}

.-m-32{
  margin: -8rem;
}

.-m-36{
  margin: -9rem;
}

.-m-40{
  margin: -10rem;
}

.-m-44{
  margin: -11rem;
}

.-m-48{
  margin: -12rem;
}

.-m-52{
  margin: -13rem;
}

.-m-56{
  margin: -14rem;
}

.-m-60{
  margin: -15rem;
}

.-m-64{
  margin: -16rem;
}

.-m-72{
  margin: -18rem;
}

.-m-80{
  margin: -20rem;
}

.-m-96{
  margin: -24rem;
}

.-m-px{
  margin: -1px;
}

.-m-0\.5{
  margin: -0.125rem;
}

.-m-1\.5{
  margin: -0.375rem;
}

.-m-2\.5{
  margin: -0.625rem;
}

.-m-3\.5{
  margin: -0.875rem;
}

.m-neg1{
  margin: -.25rem;
}

.m-neg2{
  margin: -.5rem;
}

.m-neg4{
  margin: -1.0rem;
}

.m-neg6{
  margin: -1.5rem;
}

.m-neg12{
  margin: -3rem;
}

.m-neg20{
  margin: -5rem;
}

.last\:m-0:last-child{
  margin: 0px;
}

.last\:m-1:last-child{
  margin: 0.25rem;
}

.last\:m-2:last-child{
  margin: 0.5rem;
}

.last\:m-3:last-child{
  margin: 0.75rem;
}

.last\:m-4:last-child{
  margin: 1rem;
}

.last\:m-5:last-child{
  margin: 1.25rem;
}

.last\:m-6:last-child{
  margin: 1.5rem;
}

.last\:m-7:last-child{
  margin: 1.75rem;
}

.last\:m-8:last-child{
  margin: 2rem;
}

.last\:m-9:last-child{
  margin: 2.25rem;
}

.last\:m-10:last-child{
  margin: 2.5rem;
}

.last\:m-11:last-child{
  margin: 2.75rem;
}

.last\:m-12:last-child{
  margin: 3rem;
}

.last\:m-14:last-child{
  margin: 3.5rem;
}

.last\:m-16:last-child{
  margin: 4rem;
}

.last\:m-20:last-child{
  margin: 5rem;
}

.last\:m-24:last-child{
  margin: 6rem;
}

.last\:m-28:last-child{
  margin: 7rem;
}

.last\:m-32:last-child{
  margin: 8rem;
}

.last\:m-36:last-child{
  margin: 9rem;
}

.last\:m-40:last-child{
  margin: 10rem;
}

.last\:m-44:last-child{
  margin: 11rem;
}

.last\:m-48:last-child{
  margin: 12rem;
}

.last\:m-52:last-child{
  margin: 13rem;
}

.last\:m-56:last-child{
  margin: 14rem;
}

.last\:m-60:last-child{
  margin: 15rem;
}

.last\:m-64:last-child{
  margin: 16rem;
}

.last\:m-72:last-child{
  margin: 18rem;
}

.last\:m-80:last-child{
  margin: 20rem;
}

.last\:m-96:last-child{
  margin: 24rem;
}

.last\:m-auto:last-child{
  margin: auto;
}

.last\:m-px:last-child{
  margin: 1px;
}

.last\:m-0\.5:last-child{
  margin: 0.125rem;
}

.last\:m-1\.5:last-child{
  margin: 0.375rem;
}

.last\:m-2\.5:last-child{
  margin: 0.625rem;
}

.last\:m-3\.5:last-child{
  margin: 0.875rem;
}

.last\:-m-0:last-child{
  margin: 0px;
}

.last\:-m-1:last-child{
  margin: -0.25rem;
}

.last\:-m-2:last-child{
  margin: -0.5rem;
}

.last\:-m-3:last-child{
  margin: -0.75rem;
}

.last\:-m-4:last-child{
  margin: -1rem;
}

.last\:-m-5:last-child{
  margin: -1.25rem;
}

.last\:-m-6:last-child{
  margin: -1.5rem;
}

.last\:-m-7:last-child{
  margin: -1.75rem;
}

.last\:-m-8:last-child{
  margin: -2rem;
}

.last\:-m-9:last-child{
  margin: -2.25rem;
}

.last\:-m-10:last-child{
  margin: -2.5rem;
}

.last\:-m-11:last-child{
  margin: -2.75rem;
}

.last\:-m-12:last-child{
  margin: -3rem;
}

.last\:-m-14:last-child{
  margin: -3.5rem;
}

.last\:-m-16:last-child{
  margin: -4rem;
}

.last\:-m-20:last-child{
  margin: -5rem;
}

.last\:-m-24:last-child{
  margin: -6rem;
}

.last\:-m-28:last-child{
  margin: -7rem;
}

.last\:-m-32:last-child{
  margin: -8rem;
}

.last\:-m-36:last-child{
  margin: -9rem;
}

.last\:-m-40:last-child{
  margin: -10rem;
}

.last\:-m-44:last-child{
  margin: -11rem;
}

.last\:-m-48:last-child{
  margin: -12rem;
}

.last\:-m-52:last-child{
  margin: -13rem;
}

.last\:-m-56:last-child{
  margin: -14rem;
}

.last\:-m-60:last-child{
  margin: -15rem;
}

.last\:-m-64:last-child{
  margin: -16rem;
}

.last\:-m-72:last-child{
  margin: -18rem;
}

.last\:-m-80:last-child{
  margin: -20rem;
}

.last\:-m-96:last-child{
  margin: -24rem;
}

.last\:-m-px:last-child{
  margin: -1px;
}

.last\:-m-0\.5:last-child{
  margin: -0.125rem;
}

.last\:-m-1\.5:last-child{
  margin: -0.375rem;
}

.last\:-m-2\.5:last-child{
  margin: -0.625rem;
}

.last\:-m-3\.5:last-child{
  margin: -0.875rem;
}

.last\:m-neg1:last-child{
  margin: -.25rem;
}

.last\:m-neg2:last-child{
  margin: -.5rem;
}

.last\:m-neg4:last-child{
  margin: -1.0rem;
}

.last\:m-neg6:last-child{
  margin: -1.5rem;
}

.last\:m-neg12:last-child{
  margin: -3rem;
}

.last\:m-neg20:last-child{
  margin: -5rem;
}

.hover\:m-0:hover{
  margin: 0px;
}

.hover\:m-1:hover{
  margin: 0.25rem;
}

.hover\:m-2:hover{
  margin: 0.5rem;
}

.hover\:m-3:hover{
  margin: 0.75rem;
}

.hover\:m-4:hover{
  margin: 1rem;
}

.hover\:m-5:hover{
  margin: 1.25rem;
}

.hover\:m-6:hover{
  margin: 1.5rem;
}

.hover\:m-7:hover{
  margin: 1.75rem;
}

.hover\:m-8:hover{
  margin: 2rem;
}

.hover\:m-9:hover{
  margin: 2.25rem;
}

.hover\:m-10:hover{
  margin: 2.5rem;
}

.hover\:m-11:hover{
  margin: 2.75rem;
}

.hover\:m-12:hover{
  margin: 3rem;
}

.hover\:m-14:hover{
  margin: 3.5rem;
}

.hover\:m-16:hover{
  margin: 4rem;
}

.hover\:m-20:hover{
  margin: 5rem;
}

.hover\:m-24:hover{
  margin: 6rem;
}

.hover\:m-28:hover{
  margin: 7rem;
}

.hover\:m-32:hover{
  margin: 8rem;
}

.hover\:m-36:hover{
  margin: 9rem;
}

.hover\:m-40:hover{
  margin: 10rem;
}

.hover\:m-44:hover{
  margin: 11rem;
}

.hover\:m-48:hover{
  margin: 12rem;
}

.hover\:m-52:hover{
  margin: 13rem;
}

.hover\:m-56:hover{
  margin: 14rem;
}

.hover\:m-60:hover{
  margin: 15rem;
}

.hover\:m-64:hover{
  margin: 16rem;
}

.hover\:m-72:hover{
  margin: 18rem;
}

.hover\:m-80:hover{
  margin: 20rem;
}

.hover\:m-96:hover{
  margin: 24rem;
}

.hover\:m-auto:hover{
  margin: auto;
}

.hover\:m-px:hover{
  margin: 1px;
}

.hover\:m-0\.5:hover{
  margin: 0.125rem;
}

.hover\:m-1\.5:hover{
  margin: 0.375rem;
}

.hover\:m-2\.5:hover{
  margin: 0.625rem;
}

.hover\:m-3\.5:hover{
  margin: 0.875rem;
}

.hover\:-m-0:hover{
  margin: 0px;
}

.hover\:-m-1:hover{
  margin: -0.25rem;
}

.hover\:-m-2:hover{
  margin: -0.5rem;
}

.hover\:-m-3:hover{
  margin: -0.75rem;
}

.hover\:-m-4:hover{
  margin: -1rem;
}

.hover\:-m-5:hover{
  margin: -1.25rem;
}

.hover\:-m-6:hover{
  margin: -1.5rem;
}

.hover\:-m-7:hover{
  margin: -1.75rem;
}

.hover\:-m-8:hover{
  margin: -2rem;
}

.hover\:-m-9:hover{
  margin: -2.25rem;
}

.hover\:-m-10:hover{
  margin: -2.5rem;
}

.hover\:-m-11:hover{
  margin: -2.75rem;
}

.hover\:-m-12:hover{
  margin: -3rem;
}

.hover\:-m-14:hover{
  margin: -3.5rem;
}

.hover\:-m-16:hover{
  margin: -4rem;
}

.hover\:-m-20:hover{
  margin: -5rem;
}

.hover\:-m-24:hover{
  margin: -6rem;
}

.hover\:-m-28:hover{
  margin: -7rem;
}

.hover\:-m-32:hover{
  margin: -8rem;
}

.hover\:-m-36:hover{
  margin: -9rem;
}

.hover\:-m-40:hover{
  margin: -10rem;
}

.hover\:-m-44:hover{
  margin: -11rem;
}

.hover\:-m-48:hover{
  margin: -12rem;
}

.hover\:-m-52:hover{
  margin: -13rem;
}

.hover\:-m-56:hover{
  margin: -14rem;
}

.hover\:-m-60:hover{
  margin: -15rem;
}

.hover\:-m-64:hover{
  margin: -16rem;
}

.hover\:-m-72:hover{
  margin: -18rem;
}

.hover\:-m-80:hover{
  margin: -20rem;
}

.hover\:-m-96:hover{
  margin: -24rem;
}

.hover\:-m-px:hover{
  margin: -1px;
}

.hover\:-m-0\.5:hover{
  margin: -0.125rem;
}

.hover\:-m-1\.5:hover{
  margin: -0.375rem;
}

.hover\:-m-2\.5:hover{
  margin: -0.625rem;
}

.hover\:-m-3\.5:hover{
  margin: -0.875rem;
}

.hover\:m-neg1:hover{
  margin: -.25rem;
}

.hover\:m-neg2:hover{
  margin: -.5rem;
}

.hover\:m-neg4:hover{
  margin: -1.0rem;
}

.hover\:m-neg6:hover{
  margin: -1.5rem;
}

.hover\:m-neg12:hover{
  margin: -3rem;
}

.hover\:m-neg20:hover{
  margin: -5rem;
}

.focus\:m-0:focus{
  margin: 0px;
}

.focus\:m-1:focus{
  margin: 0.25rem;
}

.focus\:m-2:focus{
  margin: 0.5rem;
}

.focus\:m-3:focus{
  margin: 0.75rem;
}

.focus\:m-4:focus{
  margin: 1rem;
}

.focus\:m-5:focus{
  margin: 1.25rem;
}

.focus\:m-6:focus{
  margin: 1.5rem;
}

.focus\:m-7:focus{
  margin: 1.75rem;
}

.focus\:m-8:focus{
  margin: 2rem;
}

.focus\:m-9:focus{
  margin: 2.25rem;
}

.focus\:m-10:focus{
  margin: 2.5rem;
}

.focus\:m-11:focus{
  margin: 2.75rem;
}

.focus\:m-12:focus{
  margin: 3rem;
}

.focus\:m-14:focus{
  margin: 3.5rem;
}

.focus\:m-16:focus{
  margin: 4rem;
}

.focus\:m-20:focus{
  margin: 5rem;
}

.focus\:m-24:focus{
  margin: 6rem;
}

.focus\:m-28:focus{
  margin: 7rem;
}

.focus\:m-32:focus{
  margin: 8rem;
}

.focus\:m-36:focus{
  margin: 9rem;
}

.focus\:m-40:focus{
  margin: 10rem;
}

.focus\:m-44:focus{
  margin: 11rem;
}

.focus\:m-48:focus{
  margin: 12rem;
}

.focus\:m-52:focus{
  margin: 13rem;
}

.focus\:m-56:focus{
  margin: 14rem;
}

.focus\:m-60:focus{
  margin: 15rem;
}

.focus\:m-64:focus{
  margin: 16rem;
}

.focus\:m-72:focus{
  margin: 18rem;
}

.focus\:m-80:focus{
  margin: 20rem;
}

.focus\:m-96:focus{
  margin: 24rem;
}

.focus\:m-auto:focus{
  margin: auto;
}

.focus\:m-px:focus{
  margin: 1px;
}

.focus\:m-0\.5:focus{
  margin: 0.125rem;
}

.focus\:m-1\.5:focus{
  margin: 0.375rem;
}

.focus\:m-2\.5:focus{
  margin: 0.625rem;
}

.focus\:m-3\.5:focus{
  margin: 0.875rem;
}

.focus\:-m-0:focus{
  margin: 0px;
}

.focus\:-m-1:focus{
  margin: -0.25rem;
}

.focus\:-m-2:focus{
  margin: -0.5rem;
}

.focus\:-m-3:focus{
  margin: -0.75rem;
}

.focus\:-m-4:focus{
  margin: -1rem;
}

.focus\:-m-5:focus{
  margin: -1.25rem;
}

.focus\:-m-6:focus{
  margin: -1.5rem;
}

.focus\:-m-7:focus{
  margin: -1.75rem;
}

.focus\:-m-8:focus{
  margin: -2rem;
}

.focus\:-m-9:focus{
  margin: -2.25rem;
}

.focus\:-m-10:focus{
  margin: -2.5rem;
}

.focus\:-m-11:focus{
  margin: -2.75rem;
}

.focus\:-m-12:focus{
  margin: -3rem;
}

.focus\:-m-14:focus{
  margin: -3.5rem;
}

.focus\:-m-16:focus{
  margin: -4rem;
}

.focus\:-m-20:focus{
  margin: -5rem;
}

.focus\:-m-24:focus{
  margin: -6rem;
}

.focus\:-m-28:focus{
  margin: -7rem;
}

.focus\:-m-32:focus{
  margin: -8rem;
}

.focus\:-m-36:focus{
  margin: -9rem;
}

.focus\:-m-40:focus{
  margin: -10rem;
}

.focus\:-m-44:focus{
  margin: -11rem;
}

.focus\:-m-48:focus{
  margin: -12rem;
}

.focus\:-m-52:focus{
  margin: -13rem;
}

.focus\:-m-56:focus{
  margin: -14rem;
}

.focus\:-m-60:focus{
  margin: -15rem;
}

.focus\:-m-64:focus{
  margin: -16rem;
}

.focus\:-m-72:focus{
  margin: -18rem;
}

.focus\:-m-80:focus{
  margin: -20rem;
}

.focus\:-m-96:focus{
  margin: -24rem;
}

.focus\:-m-px:focus{
  margin: -1px;
}

.focus\:-m-0\.5:focus{
  margin: -0.125rem;
}

.focus\:-m-1\.5:focus{
  margin: -0.375rem;
}

.focus\:-m-2\.5:focus{
  margin: -0.625rem;
}

.focus\:-m-3\.5:focus{
  margin: -0.875rem;
}

.focus\:m-neg1:focus{
  margin: -.25rem;
}

.focus\:m-neg2:focus{
  margin: -.5rem;
}

.focus\:m-neg4:focus{
  margin: -1.0rem;
}

.focus\:m-neg6:focus{
  margin: -1.5rem;
}

.focus\:m-neg12:focus{
  margin: -3rem;
}

.focus\:m-neg20:focus{
  margin: -5rem;
}

.first\:m-0:first-child{
  margin: 0px;
}

.first\:m-1:first-child{
  margin: 0.25rem;
}

.first\:m-2:first-child{
  margin: 0.5rem;
}

.first\:m-3:first-child{
  margin: 0.75rem;
}

.first\:m-4:first-child{
  margin: 1rem;
}

.first\:m-5:first-child{
  margin: 1.25rem;
}

.first\:m-6:first-child{
  margin: 1.5rem;
}

.first\:m-7:first-child{
  margin: 1.75rem;
}

.first\:m-8:first-child{
  margin: 2rem;
}

.first\:m-9:first-child{
  margin: 2.25rem;
}

.first\:m-10:first-child{
  margin: 2.5rem;
}

.first\:m-11:first-child{
  margin: 2.75rem;
}

.first\:m-12:first-child{
  margin: 3rem;
}

.first\:m-14:first-child{
  margin: 3.5rem;
}

.first\:m-16:first-child{
  margin: 4rem;
}

.first\:m-20:first-child{
  margin: 5rem;
}

.first\:m-24:first-child{
  margin: 6rem;
}

.first\:m-28:first-child{
  margin: 7rem;
}

.first\:m-32:first-child{
  margin: 8rem;
}

.first\:m-36:first-child{
  margin: 9rem;
}

.first\:m-40:first-child{
  margin: 10rem;
}

.first\:m-44:first-child{
  margin: 11rem;
}

.first\:m-48:first-child{
  margin: 12rem;
}

.first\:m-52:first-child{
  margin: 13rem;
}

.first\:m-56:first-child{
  margin: 14rem;
}

.first\:m-60:first-child{
  margin: 15rem;
}

.first\:m-64:first-child{
  margin: 16rem;
}

.first\:m-72:first-child{
  margin: 18rem;
}

.first\:m-80:first-child{
  margin: 20rem;
}

.first\:m-96:first-child{
  margin: 24rem;
}

.first\:m-auto:first-child{
  margin: auto;
}

.first\:m-px:first-child{
  margin: 1px;
}

.first\:m-0\.5:first-child{
  margin: 0.125rem;
}

.first\:m-1\.5:first-child{
  margin: 0.375rem;
}

.first\:m-2\.5:first-child{
  margin: 0.625rem;
}

.first\:m-3\.5:first-child{
  margin: 0.875rem;
}

.first\:-m-0:first-child{
  margin: 0px;
}

.first\:-m-1:first-child{
  margin: -0.25rem;
}

.first\:-m-2:first-child{
  margin: -0.5rem;
}

.first\:-m-3:first-child{
  margin: -0.75rem;
}

.first\:-m-4:first-child{
  margin: -1rem;
}

.first\:-m-5:first-child{
  margin: -1.25rem;
}

.first\:-m-6:first-child{
  margin: -1.5rem;
}

.first\:-m-7:first-child{
  margin: -1.75rem;
}

.first\:-m-8:first-child{
  margin: -2rem;
}

.first\:-m-9:first-child{
  margin: -2.25rem;
}

.first\:-m-10:first-child{
  margin: -2.5rem;
}

.first\:-m-11:first-child{
  margin: -2.75rem;
}

.first\:-m-12:first-child{
  margin: -3rem;
}

.first\:-m-14:first-child{
  margin: -3.5rem;
}

.first\:-m-16:first-child{
  margin: -4rem;
}

.first\:-m-20:first-child{
  margin: -5rem;
}

.first\:-m-24:first-child{
  margin: -6rem;
}

.first\:-m-28:first-child{
  margin: -7rem;
}

.first\:-m-32:first-child{
  margin: -8rem;
}

.first\:-m-36:first-child{
  margin: -9rem;
}

.first\:-m-40:first-child{
  margin: -10rem;
}

.first\:-m-44:first-child{
  margin: -11rem;
}

.first\:-m-48:first-child{
  margin: -12rem;
}

.first\:-m-52:first-child{
  margin: -13rem;
}

.first\:-m-56:first-child{
  margin: -14rem;
}

.first\:-m-60:first-child{
  margin: -15rem;
}

.first\:-m-64:first-child{
  margin: -16rem;
}

.first\:-m-72:first-child{
  margin: -18rem;
}

.first\:-m-80:first-child{
  margin: -20rem;
}

.first\:-m-96:first-child{
  margin: -24rem;
}

.first\:-m-px:first-child{
  margin: -1px;
}

.first\:-m-0\.5:first-child{
  margin: -0.125rem;
}

.first\:-m-1\.5:first-child{
  margin: -0.375rem;
}

.first\:-m-2\.5:first-child{
  margin: -0.625rem;
}

.first\:-m-3\.5:first-child{
  margin: -0.875rem;
}

.first\:m-neg1:first-child{
  margin: -.25rem;
}

.first\:m-neg2:first-child{
  margin: -.5rem;
}

.first\:m-neg4:first-child{
  margin: -1.0rem;
}

.first\:m-neg6:first-child{
  margin: -1.5rem;
}

.first\:m-neg12:first-child{
  margin: -3rem;
}

.first\:m-neg20:first-child{
  margin: -5rem;
}

.last\:m-0:last-child{
  margin: 0px;
}

.last\:m-1:last-child{
  margin: 0.25rem;
}

.last\:m-2:last-child{
  margin: 0.5rem;
}

.last\:m-3:last-child{
  margin: 0.75rem;
}

.last\:m-4:last-child{
  margin: 1rem;
}

.last\:m-5:last-child{
  margin: 1.25rem;
}

.last\:m-6:last-child{
  margin: 1.5rem;
}

.last\:m-7:last-child{
  margin: 1.75rem;
}

.last\:m-8:last-child{
  margin: 2rem;
}

.last\:m-9:last-child{
  margin: 2.25rem;
}

.last\:m-10:last-child{
  margin: 2.5rem;
}

.last\:m-11:last-child{
  margin: 2.75rem;
}

.last\:m-12:last-child{
  margin: 3rem;
}

.last\:m-14:last-child{
  margin: 3.5rem;
}

.last\:m-16:last-child{
  margin: 4rem;
}

.last\:m-20:last-child{
  margin: 5rem;
}

.last\:m-24:last-child{
  margin: 6rem;
}

.last\:m-28:last-child{
  margin: 7rem;
}

.last\:m-32:last-child{
  margin: 8rem;
}

.last\:m-36:last-child{
  margin: 9rem;
}

.last\:m-40:last-child{
  margin: 10rem;
}

.last\:m-44:last-child{
  margin: 11rem;
}

.last\:m-48:last-child{
  margin: 12rem;
}

.last\:m-52:last-child{
  margin: 13rem;
}

.last\:m-56:last-child{
  margin: 14rem;
}

.last\:m-60:last-child{
  margin: 15rem;
}

.last\:m-64:last-child{
  margin: 16rem;
}

.last\:m-72:last-child{
  margin: 18rem;
}

.last\:m-80:last-child{
  margin: 20rem;
}

.last\:m-96:last-child{
  margin: 24rem;
}

.last\:m-auto:last-child{
  margin: auto;
}

.last\:m-px:last-child{
  margin: 1px;
}

.last\:m-0\.5:last-child{
  margin: 0.125rem;
}

.last\:m-1\.5:last-child{
  margin: 0.375rem;
}

.last\:m-2\.5:last-child{
  margin: 0.625rem;
}

.last\:m-3\.5:last-child{
  margin: 0.875rem;
}

.last\:-m-0:last-child{
  margin: 0px;
}

.last\:-m-1:last-child{
  margin: -0.25rem;
}

.last\:-m-2:last-child{
  margin: -0.5rem;
}

.last\:-m-3:last-child{
  margin: -0.75rem;
}

.last\:-m-4:last-child{
  margin: -1rem;
}

.last\:-m-5:last-child{
  margin: -1.25rem;
}

.last\:-m-6:last-child{
  margin: -1.5rem;
}

.last\:-m-7:last-child{
  margin: -1.75rem;
}

.last\:-m-8:last-child{
  margin: -2rem;
}

.last\:-m-9:last-child{
  margin: -2.25rem;
}

.last\:-m-10:last-child{
  margin: -2.5rem;
}

.last\:-m-11:last-child{
  margin: -2.75rem;
}

.last\:-m-12:last-child{
  margin: -3rem;
}

.last\:-m-14:last-child{
  margin: -3.5rem;
}

.last\:-m-16:last-child{
  margin: -4rem;
}

.last\:-m-20:last-child{
  margin: -5rem;
}

.last\:-m-24:last-child{
  margin: -6rem;
}

.last\:-m-28:last-child{
  margin: -7rem;
}

.last\:-m-32:last-child{
  margin: -8rem;
}

.last\:-m-36:last-child{
  margin: -9rem;
}

.last\:-m-40:last-child{
  margin: -10rem;
}

.last\:-m-44:last-child{
  margin: -11rem;
}

.last\:-m-48:last-child{
  margin: -12rem;
}

.last\:-m-52:last-child{
  margin: -13rem;
}

.last\:-m-56:last-child{
  margin: -14rem;
}

.last\:-m-60:last-child{
  margin: -15rem;
}

.last\:-m-64:last-child{
  margin: -16rem;
}

.last\:-m-72:last-child{
  margin: -18rem;
}

.last\:-m-80:last-child{
  margin: -20rem;
}

.last\:-m-96:last-child{
  margin: -24rem;
}

.last\:-m-px:last-child{
  margin: -1px;
}

.last\:-m-0\.5:last-child{
  margin: -0.125rem;
}

.last\:-m-1\.5:last-child{
  margin: -0.375rem;
}

.last\:-m-2\.5:last-child{
  margin: -0.625rem;
}

.last\:-m-3\.5:last-child{
  margin: -0.875rem;
}

.last\:m-neg1:last-child{
  margin: -.25rem;
}

.last\:m-neg2:last-child{
  margin: -.5rem;
}

.last\:m-neg4:last-child{
  margin: -1.0rem;
}

.last\:m-neg6:last-child{
  margin: -1.5rem;
}

.last\:m-neg12:last-child{
  margin: -3rem;
}

.last\:m-neg20:last-child{
  margin: -5rem;
}

.mx-0{
  margin-left: 0px;
  margin-right: 0px;
}

.mx-1{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-3{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-5{
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.mx-6{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-7{
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.mx-8{
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-9{
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.mx-10{
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.mx-11{
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}

.mx-12{
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-14{
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.mx-16{
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-20{
  margin-left: 5rem;
  margin-right: 5rem;
}

.mx-24{
  margin-left: 6rem;
  margin-right: 6rem;
}

.mx-28{
  margin-left: 7rem;
  margin-right: 7rem;
}

.mx-32{
  margin-left: 8rem;
  margin-right: 8rem;
}

.mx-36{
  margin-left: 9rem;
  margin-right: 9rem;
}

.mx-40{
  margin-left: 10rem;
  margin-right: 10rem;
}

.mx-44{
  margin-left: 11rem;
  margin-right: 11rem;
}

.mx-48{
  margin-left: 12rem;
  margin-right: 12rem;
}

.mx-52{
  margin-left: 13rem;
  margin-right: 13rem;
}

.mx-56{
  margin-left: 14rem;
  margin-right: 14rem;
}

.mx-60{
  margin-left: 15rem;
  margin-right: 15rem;
}

.mx-64{
  margin-left: 16rem;
  margin-right: 16rem;
}

.mx-72{
  margin-left: 18rem;
  margin-right: 18rem;
}

.mx-80{
  margin-left: 20rem;
  margin-right: 20rem;
}

.mx-96{
  margin-left: 24rem;
  margin-right: 24rem;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.mx-px{
  margin-left: 1px;
  margin-right: 1px;
}

.mx-0\.5{
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.mx-1\.5{
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}

.mx-2\.5{
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.mx-3\.5{
  margin-left: 0.875rem;
  margin-right: 0.875rem;
}

.-mx-0{
  margin-left: 0px;
  margin-right: 0px;
}

.-mx-1{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.-mx-2{
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.-mx-3{
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.-mx-4{
  margin-left: -1rem;
  margin-right: -1rem;
}

.-mx-5{
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.-mx-6{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.-mx-7{
  margin-left: -1.75rem;
  margin-right: -1.75rem;
}

.-mx-8{
  margin-left: -2rem;
  margin-right: -2rem;
}

.-mx-9{
  margin-left: -2.25rem;
  margin-right: -2.25rem;
}

.-mx-10{
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

.-mx-11{
  margin-left: -2.75rem;
  margin-right: -2.75rem;
}

.-mx-12{
  margin-left: -3rem;
  margin-right: -3rem;
}

.-mx-14{
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}

.-mx-16{
  margin-left: -4rem;
  margin-right: -4rem;
}

.-mx-20{
  margin-left: -5rem;
  margin-right: -5rem;
}

.-mx-24{
  margin-left: -6rem;
  margin-right: -6rem;
}

.-mx-28{
  margin-left: -7rem;
  margin-right: -7rem;
}

.-mx-32{
  margin-left: -8rem;
  margin-right: -8rem;
}

.-mx-36{
  margin-left: -9rem;
  margin-right: -9rem;
}

.-mx-40{
  margin-left: -10rem;
  margin-right: -10rem;
}

.-mx-44{
  margin-left: -11rem;
  margin-right: -11rem;
}

.-mx-48{
  margin-left: -12rem;
  margin-right: -12rem;
}

.-mx-52{
  margin-left: -13rem;
  margin-right: -13rem;
}

.-mx-56{
  margin-left: -14rem;
  margin-right: -14rem;
}

.-mx-60{
  margin-left: -15rem;
  margin-right: -15rem;
}

.-mx-64{
  margin-left: -16rem;
  margin-right: -16rem;
}

.-mx-72{
  margin-left: -18rem;
  margin-right: -18rem;
}

.-mx-80{
  margin-left: -20rem;
  margin-right: -20rem;
}

.-mx-96{
  margin-left: -24rem;
  margin-right: -24rem;
}

.-mx-px{
  margin-left: -1px;
  margin-right: -1px;
}

.-mx-0\.5{
  margin-left: -0.125rem;
  margin-right: -0.125rem;
}

.-mx-1\.5{
  margin-left: -0.375rem;
  margin-right: -0.375rem;
}

.-mx-2\.5{
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

.-mx-3\.5{
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}

.mx-neg1{
  margin-left: -.25rem;
  margin-right: -.25rem;
}

.mx-neg2{
  margin-left: -.5rem;
  margin-right: -.5rem;
}

.mx-neg4{
  margin-left: -1.0rem;
  margin-right: -1.0rem;
}

.mx-neg6{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.mx-neg12{
  margin-left: -3rem;
  margin-right: -3rem;
}

.mx-neg20{
  margin-left: -5rem;
  margin-right: -5rem;
}

.my-0{
  margin-top: 0px;
  margin-bottom: 0px;
}

.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-5{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-7{
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.my-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-9{
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.my-10{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-11{
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

.my-12{
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-14{
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.my-16{
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.my-20{
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-24{
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.my-28{
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.my-32{
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.my-36{
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.my-40{
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.my-44{
  margin-top: 11rem;
  margin-bottom: 11rem;
}

.my-48{
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.my-52{
  margin-top: 13rem;
  margin-bottom: 13rem;
}

.my-56{
  margin-top: 14rem;
  margin-bottom: 14rem;
}

.my-60{
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.my-64{
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.my-72{
  margin-top: 18rem;
  margin-bottom: 18rem;
}

.my-80{
  margin-top: 20rem;
  margin-bottom: 20rem;
}

.my-96{
  margin-top: 24rem;
  margin-bottom: 24rem;
}

.my-auto{
  margin-top: auto;
  margin-bottom: auto;
}

.my-px{
  margin-top: 1px;
  margin-bottom: 1px;
}

.my-0\.5{
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}

.my-1\.5{
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
}

.my-2\.5{
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

.my-3\.5{
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
}

.-my-0{
  margin-top: 0px;
  margin-bottom: 0px;
}

.-my-1{
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.-my-2{
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.-my-3{
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

.-my-4{
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.-my-5{
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.-my-6{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.-my-7{
  margin-top: -1.75rem;
  margin-bottom: -1.75rem;
}

.-my-8{
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.-my-9{
  margin-top: -2.25rem;
  margin-bottom: -2.25rem;
}

.-my-10{
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}

.-my-11{
  margin-top: -2.75rem;
  margin-bottom: -2.75rem;
}

.-my-12{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.-my-14{
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}

.-my-16{
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.-my-20{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.-my-24{
  margin-top: -6rem;
  margin-bottom: -6rem;
}

.-my-28{
  margin-top: -7rem;
  margin-bottom: -7rem;
}

.-my-32{
  margin-top: -8rem;
  margin-bottom: -8rem;
}

.-my-36{
  margin-top: -9rem;
  margin-bottom: -9rem;
}

.-my-40{
  margin-top: -10rem;
  margin-bottom: -10rem;
}

.-my-44{
  margin-top: -11rem;
  margin-bottom: -11rem;
}

.-my-48{
  margin-top: -12rem;
  margin-bottom: -12rem;
}

.-my-52{
  margin-top: -13rem;
  margin-bottom: -13rem;
}

.-my-56{
  margin-top: -14rem;
  margin-bottom: -14rem;
}

.-my-60{
  margin-top: -15rem;
  margin-bottom: -15rem;
}

.-my-64{
  margin-top: -16rem;
  margin-bottom: -16rem;
}

.-my-72{
  margin-top: -18rem;
  margin-bottom: -18rem;
}

.-my-80{
  margin-top: -20rem;
  margin-bottom: -20rem;
}

.-my-96{
  margin-top: -24rem;
  margin-bottom: -24rem;
}

.-my-px{
  margin-top: -1px;
  margin-bottom: -1px;
}

.-my-0\.5{
  margin-top: -0.125rem;
  margin-bottom: -0.125rem;
}

.-my-1\.5{
  margin-top: -0.375rem;
  margin-bottom: -0.375rem;
}

.-my-2\.5{
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

.-my-3\.5{
  margin-top: -0.875rem;
  margin-bottom: -0.875rem;
}

.my-neg1{
  margin-top: -.25rem;
  margin-bottom: -.25rem;
}

.my-neg2{
  margin-top: -.5rem;
  margin-bottom: -.5rem;
}

.my-neg4{
  margin-top: -1.0rem;
  margin-bottom: -1.0rem;
}

.my-neg6{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.my-neg12{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.my-neg20{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.last\:mx-0:last-child{
  margin-left: 0px;
  margin-right: 0px;
}

.last\:mx-1:last-child{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.last\:mx-2:last-child{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.last\:mx-3:last-child{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.last\:mx-4:last-child{
  margin-left: 1rem;
  margin-right: 1rem;
}

.last\:mx-5:last-child{
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.last\:mx-6:last-child{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.last\:mx-7:last-child{
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.last\:mx-8:last-child{
  margin-left: 2rem;
  margin-right: 2rem;
}

.last\:mx-9:last-child{
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.last\:mx-10:last-child{
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.last\:mx-11:last-child{
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}

.last\:mx-12:last-child{
  margin-left: 3rem;
  margin-right: 3rem;
}

.last\:mx-14:last-child{
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.last\:mx-16:last-child{
  margin-left: 4rem;
  margin-right: 4rem;
}

.last\:mx-20:last-child{
  margin-left: 5rem;
  margin-right: 5rem;
}

.last\:mx-24:last-child{
  margin-left: 6rem;
  margin-right: 6rem;
}

.last\:mx-28:last-child{
  margin-left: 7rem;
  margin-right: 7rem;
}

.last\:mx-32:last-child{
  margin-left: 8rem;
  margin-right: 8rem;
}

.last\:mx-36:last-child{
  margin-left: 9rem;
  margin-right: 9rem;
}

.last\:mx-40:last-child{
  margin-left: 10rem;
  margin-right: 10rem;
}

.last\:mx-44:last-child{
  margin-left: 11rem;
  margin-right: 11rem;
}

.last\:mx-48:last-child{
  margin-left: 12rem;
  margin-right: 12rem;
}

.last\:mx-52:last-child{
  margin-left: 13rem;
  margin-right: 13rem;
}

.last\:mx-56:last-child{
  margin-left: 14rem;
  margin-right: 14rem;
}

.last\:mx-60:last-child{
  margin-left: 15rem;
  margin-right: 15rem;
}

.last\:mx-64:last-child{
  margin-left: 16rem;
  margin-right: 16rem;
}

.last\:mx-72:last-child{
  margin-left: 18rem;
  margin-right: 18rem;
}

.last\:mx-80:last-child{
  margin-left: 20rem;
  margin-right: 20rem;
}

.last\:mx-96:last-child{
  margin-left: 24rem;
  margin-right: 24rem;
}

.last\:mx-auto:last-child{
  margin-left: auto;
  margin-right: auto;
}

.last\:mx-px:last-child{
  margin-left: 1px;
  margin-right: 1px;
}

.last\:mx-0\.5:last-child{
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.last\:mx-1\.5:last-child{
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}

.last\:mx-2\.5:last-child{
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.last\:mx-3\.5:last-child{
  margin-left: 0.875rem;
  margin-right: 0.875rem;
}

.last\:-mx-0:last-child{
  margin-left: 0px;
  margin-right: 0px;
}

.last\:-mx-1:last-child{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.last\:-mx-2:last-child{
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.last\:-mx-3:last-child{
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.last\:-mx-4:last-child{
  margin-left: -1rem;
  margin-right: -1rem;
}

.last\:-mx-5:last-child{
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.last\:-mx-6:last-child{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.last\:-mx-7:last-child{
  margin-left: -1.75rem;
  margin-right: -1.75rem;
}

.last\:-mx-8:last-child{
  margin-left: -2rem;
  margin-right: -2rem;
}

.last\:-mx-9:last-child{
  margin-left: -2.25rem;
  margin-right: -2.25rem;
}

.last\:-mx-10:last-child{
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

.last\:-mx-11:last-child{
  margin-left: -2.75rem;
  margin-right: -2.75rem;
}

.last\:-mx-12:last-child{
  margin-left: -3rem;
  margin-right: -3rem;
}

.last\:-mx-14:last-child{
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}

.last\:-mx-16:last-child{
  margin-left: -4rem;
  margin-right: -4rem;
}

.last\:-mx-20:last-child{
  margin-left: -5rem;
  margin-right: -5rem;
}

.last\:-mx-24:last-child{
  margin-left: -6rem;
  margin-right: -6rem;
}

.last\:-mx-28:last-child{
  margin-left: -7rem;
  margin-right: -7rem;
}

.last\:-mx-32:last-child{
  margin-left: -8rem;
  margin-right: -8rem;
}

.last\:-mx-36:last-child{
  margin-left: -9rem;
  margin-right: -9rem;
}

.last\:-mx-40:last-child{
  margin-left: -10rem;
  margin-right: -10rem;
}

.last\:-mx-44:last-child{
  margin-left: -11rem;
  margin-right: -11rem;
}

.last\:-mx-48:last-child{
  margin-left: -12rem;
  margin-right: -12rem;
}

.last\:-mx-52:last-child{
  margin-left: -13rem;
  margin-right: -13rem;
}

.last\:-mx-56:last-child{
  margin-left: -14rem;
  margin-right: -14rem;
}

.last\:-mx-60:last-child{
  margin-left: -15rem;
  margin-right: -15rem;
}

.last\:-mx-64:last-child{
  margin-left: -16rem;
  margin-right: -16rem;
}

.last\:-mx-72:last-child{
  margin-left: -18rem;
  margin-right: -18rem;
}

.last\:-mx-80:last-child{
  margin-left: -20rem;
  margin-right: -20rem;
}

.last\:-mx-96:last-child{
  margin-left: -24rem;
  margin-right: -24rem;
}

.last\:-mx-px:last-child{
  margin-left: -1px;
  margin-right: -1px;
}

.last\:-mx-0\.5:last-child{
  margin-left: -0.125rem;
  margin-right: -0.125rem;
}

.last\:-mx-1\.5:last-child{
  margin-left: -0.375rem;
  margin-right: -0.375rem;
}

.last\:-mx-2\.5:last-child{
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

.last\:-mx-3\.5:last-child{
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}

.last\:mx-neg1:last-child{
  margin-left: -.25rem;
  margin-right: -.25rem;
}

.last\:mx-neg2:last-child{
  margin-left: -.5rem;
  margin-right: -.5rem;
}

.last\:mx-neg4:last-child{
  margin-left: -1.0rem;
  margin-right: -1.0rem;
}

.last\:mx-neg6:last-child{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.last\:mx-neg12:last-child{
  margin-left: -3rem;
  margin-right: -3rem;
}

.last\:mx-neg20:last-child{
  margin-left: -5rem;
  margin-right: -5rem;
}

.last\:my-0:last-child{
  margin-top: 0px;
  margin-bottom: 0px;
}

.last\:my-1:last-child{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.last\:my-2:last-child{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.last\:my-3:last-child{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.last\:my-4:last-child{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.last\:my-5:last-child{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.last\:my-6:last-child{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.last\:my-7:last-child{
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.last\:my-8:last-child{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.last\:my-9:last-child{
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.last\:my-10:last-child{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.last\:my-11:last-child{
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

.last\:my-12:last-child{
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.last\:my-14:last-child{
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.last\:my-16:last-child{
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.last\:my-20:last-child{
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.last\:my-24:last-child{
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.last\:my-28:last-child{
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.last\:my-32:last-child{
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.last\:my-36:last-child{
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.last\:my-40:last-child{
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.last\:my-44:last-child{
  margin-top: 11rem;
  margin-bottom: 11rem;
}

.last\:my-48:last-child{
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.last\:my-52:last-child{
  margin-top: 13rem;
  margin-bottom: 13rem;
}

.last\:my-56:last-child{
  margin-top: 14rem;
  margin-bottom: 14rem;
}

.last\:my-60:last-child{
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.last\:my-64:last-child{
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.last\:my-72:last-child{
  margin-top: 18rem;
  margin-bottom: 18rem;
}

.last\:my-80:last-child{
  margin-top: 20rem;
  margin-bottom: 20rem;
}

.last\:my-96:last-child{
  margin-top: 24rem;
  margin-bottom: 24rem;
}

.last\:my-auto:last-child{
  margin-top: auto;
  margin-bottom: auto;
}

.last\:my-px:last-child{
  margin-top: 1px;
  margin-bottom: 1px;
}

.last\:my-0\.5:last-child{
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}

.last\:my-1\.5:last-child{
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
}

.last\:my-2\.5:last-child{
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

.last\:my-3\.5:last-child{
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
}

.last\:-my-0:last-child{
  margin-top: 0px;
  margin-bottom: 0px;
}

.last\:-my-1:last-child{
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.last\:-my-2:last-child{
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.last\:-my-3:last-child{
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

.last\:-my-4:last-child{
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.last\:-my-5:last-child{
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.last\:-my-6:last-child{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.last\:-my-7:last-child{
  margin-top: -1.75rem;
  margin-bottom: -1.75rem;
}

.last\:-my-8:last-child{
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.last\:-my-9:last-child{
  margin-top: -2.25rem;
  margin-bottom: -2.25rem;
}

.last\:-my-10:last-child{
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}

.last\:-my-11:last-child{
  margin-top: -2.75rem;
  margin-bottom: -2.75rem;
}

.last\:-my-12:last-child{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.last\:-my-14:last-child{
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}

.last\:-my-16:last-child{
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.last\:-my-20:last-child{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.last\:-my-24:last-child{
  margin-top: -6rem;
  margin-bottom: -6rem;
}

.last\:-my-28:last-child{
  margin-top: -7rem;
  margin-bottom: -7rem;
}

.last\:-my-32:last-child{
  margin-top: -8rem;
  margin-bottom: -8rem;
}

.last\:-my-36:last-child{
  margin-top: -9rem;
  margin-bottom: -9rem;
}

.last\:-my-40:last-child{
  margin-top: -10rem;
  margin-bottom: -10rem;
}

.last\:-my-44:last-child{
  margin-top: -11rem;
  margin-bottom: -11rem;
}

.last\:-my-48:last-child{
  margin-top: -12rem;
  margin-bottom: -12rem;
}

.last\:-my-52:last-child{
  margin-top: -13rem;
  margin-bottom: -13rem;
}

.last\:-my-56:last-child{
  margin-top: -14rem;
  margin-bottom: -14rem;
}

.last\:-my-60:last-child{
  margin-top: -15rem;
  margin-bottom: -15rem;
}

.last\:-my-64:last-child{
  margin-top: -16rem;
  margin-bottom: -16rem;
}

.last\:-my-72:last-child{
  margin-top: -18rem;
  margin-bottom: -18rem;
}

.last\:-my-80:last-child{
  margin-top: -20rem;
  margin-bottom: -20rem;
}

.last\:-my-96:last-child{
  margin-top: -24rem;
  margin-bottom: -24rem;
}

.last\:-my-px:last-child{
  margin-top: -1px;
  margin-bottom: -1px;
}

.last\:-my-0\.5:last-child{
  margin-top: -0.125rem;
  margin-bottom: -0.125rem;
}

.last\:-my-1\.5:last-child{
  margin-top: -0.375rem;
  margin-bottom: -0.375rem;
}

.last\:-my-2\.5:last-child{
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

.last\:-my-3\.5:last-child{
  margin-top: -0.875rem;
  margin-bottom: -0.875rem;
}

.last\:my-neg1:last-child{
  margin-top: -.25rem;
  margin-bottom: -.25rem;
}

.last\:my-neg2:last-child{
  margin-top: -.5rem;
  margin-bottom: -.5rem;
}

.last\:my-neg4:last-child{
  margin-top: -1.0rem;
  margin-bottom: -1.0rem;
}

.last\:my-neg6:last-child{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.last\:my-neg12:last-child{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.last\:my-neg20:last-child{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.hover\:mx-0:hover{
  margin-left: 0px;
  margin-right: 0px;
}

.hover\:mx-1:hover{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.hover\:mx-2:hover{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.hover\:mx-3:hover{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.hover\:mx-4:hover{
  margin-left: 1rem;
  margin-right: 1rem;
}

.hover\:mx-5:hover{
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.hover\:mx-6:hover{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.hover\:mx-7:hover{
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.hover\:mx-8:hover{
  margin-left: 2rem;
  margin-right: 2rem;
}

.hover\:mx-9:hover{
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.hover\:mx-10:hover{
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.hover\:mx-11:hover{
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}

.hover\:mx-12:hover{
  margin-left: 3rem;
  margin-right: 3rem;
}

.hover\:mx-14:hover{
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.hover\:mx-16:hover{
  margin-left: 4rem;
  margin-right: 4rem;
}

.hover\:mx-20:hover{
  margin-left: 5rem;
  margin-right: 5rem;
}

.hover\:mx-24:hover{
  margin-left: 6rem;
  margin-right: 6rem;
}

.hover\:mx-28:hover{
  margin-left: 7rem;
  margin-right: 7rem;
}

.hover\:mx-32:hover{
  margin-left: 8rem;
  margin-right: 8rem;
}

.hover\:mx-36:hover{
  margin-left: 9rem;
  margin-right: 9rem;
}

.hover\:mx-40:hover{
  margin-left: 10rem;
  margin-right: 10rem;
}

.hover\:mx-44:hover{
  margin-left: 11rem;
  margin-right: 11rem;
}

.hover\:mx-48:hover{
  margin-left: 12rem;
  margin-right: 12rem;
}

.hover\:mx-52:hover{
  margin-left: 13rem;
  margin-right: 13rem;
}

.hover\:mx-56:hover{
  margin-left: 14rem;
  margin-right: 14rem;
}

.hover\:mx-60:hover{
  margin-left: 15rem;
  margin-right: 15rem;
}

.hover\:mx-64:hover{
  margin-left: 16rem;
  margin-right: 16rem;
}

.hover\:mx-72:hover{
  margin-left: 18rem;
  margin-right: 18rem;
}

.hover\:mx-80:hover{
  margin-left: 20rem;
  margin-right: 20rem;
}

.hover\:mx-96:hover{
  margin-left: 24rem;
  margin-right: 24rem;
}

.hover\:mx-auto:hover{
  margin-left: auto;
  margin-right: auto;
}

.hover\:mx-px:hover{
  margin-left: 1px;
  margin-right: 1px;
}

.hover\:mx-0\.5:hover{
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.hover\:mx-1\.5:hover{
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}

.hover\:mx-2\.5:hover{
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.hover\:mx-3\.5:hover{
  margin-left: 0.875rem;
  margin-right: 0.875rem;
}

.hover\:-mx-0:hover{
  margin-left: 0px;
  margin-right: 0px;
}

.hover\:-mx-1:hover{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.hover\:-mx-2:hover{
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.hover\:-mx-3:hover{
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.hover\:-mx-4:hover{
  margin-left: -1rem;
  margin-right: -1rem;
}

.hover\:-mx-5:hover{
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.hover\:-mx-6:hover{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.hover\:-mx-7:hover{
  margin-left: -1.75rem;
  margin-right: -1.75rem;
}

.hover\:-mx-8:hover{
  margin-left: -2rem;
  margin-right: -2rem;
}

.hover\:-mx-9:hover{
  margin-left: -2.25rem;
  margin-right: -2.25rem;
}

.hover\:-mx-10:hover{
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

.hover\:-mx-11:hover{
  margin-left: -2.75rem;
  margin-right: -2.75rem;
}

.hover\:-mx-12:hover{
  margin-left: -3rem;
  margin-right: -3rem;
}

.hover\:-mx-14:hover{
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}

.hover\:-mx-16:hover{
  margin-left: -4rem;
  margin-right: -4rem;
}

.hover\:-mx-20:hover{
  margin-left: -5rem;
  margin-right: -5rem;
}

.hover\:-mx-24:hover{
  margin-left: -6rem;
  margin-right: -6rem;
}

.hover\:-mx-28:hover{
  margin-left: -7rem;
  margin-right: -7rem;
}

.hover\:-mx-32:hover{
  margin-left: -8rem;
  margin-right: -8rem;
}

.hover\:-mx-36:hover{
  margin-left: -9rem;
  margin-right: -9rem;
}

.hover\:-mx-40:hover{
  margin-left: -10rem;
  margin-right: -10rem;
}

.hover\:-mx-44:hover{
  margin-left: -11rem;
  margin-right: -11rem;
}

.hover\:-mx-48:hover{
  margin-left: -12rem;
  margin-right: -12rem;
}

.hover\:-mx-52:hover{
  margin-left: -13rem;
  margin-right: -13rem;
}

.hover\:-mx-56:hover{
  margin-left: -14rem;
  margin-right: -14rem;
}

.hover\:-mx-60:hover{
  margin-left: -15rem;
  margin-right: -15rem;
}

.hover\:-mx-64:hover{
  margin-left: -16rem;
  margin-right: -16rem;
}

.hover\:-mx-72:hover{
  margin-left: -18rem;
  margin-right: -18rem;
}

.hover\:-mx-80:hover{
  margin-left: -20rem;
  margin-right: -20rem;
}

.hover\:-mx-96:hover{
  margin-left: -24rem;
  margin-right: -24rem;
}

.hover\:-mx-px:hover{
  margin-left: -1px;
  margin-right: -1px;
}

.hover\:-mx-0\.5:hover{
  margin-left: -0.125rem;
  margin-right: -0.125rem;
}

.hover\:-mx-1\.5:hover{
  margin-left: -0.375rem;
  margin-right: -0.375rem;
}

.hover\:-mx-2\.5:hover{
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

.hover\:-mx-3\.5:hover{
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}

.hover\:mx-neg1:hover{
  margin-left: -.25rem;
  margin-right: -.25rem;
}

.hover\:mx-neg2:hover{
  margin-left: -.5rem;
  margin-right: -.5rem;
}

.hover\:mx-neg4:hover{
  margin-left: -1.0rem;
  margin-right: -1.0rem;
}

.hover\:mx-neg6:hover{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.hover\:mx-neg12:hover{
  margin-left: -3rem;
  margin-right: -3rem;
}

.hover\:mx-neg20:hover{
  margin-left: -5rem;
  margin-right: -5rem;
}

.hover\:my-0:hover{
  margin-top: 0px;
  margin-bottom: 0px;
}

.hover\:my-1:hover{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.hover\:my-2:hover{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.hover\:my-3:hover{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.hover\:my-4:hover{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.hover\:my-5:hover{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.hover\:my-6:hover{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.hover\:my-7:hover{
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.hover\:my-8:hover{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.hover\:my-9:hover{
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.hover\:my-10:hover{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.hover\:my-11:hover{
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

.hover\:my-12:hover{
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.hover\:my-14:hover{
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.hover\:my-16:hover{
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.hover\:my-20:hover{
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.hover\:my-24:hover{
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.hover\:my-28:hover{
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.hover\:my-32:hover{
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.hover\:my-36:hover{
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.hover\:my-40:hover{
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.hover\:my-44:hover{
  margin-top: 11rem;
  margin-bottom: 11rem;
}

.hover\:my-48:hover{
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.hover\:my-52:hover{
  margin-top: 13rem;
  margin-bottom: 13rem;
}

.hover\:my-56:hover{
  margin-top: 14rem;
  margin-bottom: 14rem;
}

.hover\:my-60:hover{
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.hover\:my-64:hover{
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.hover\:my-72:hover{
  margin-top: 18rem;
  margin-bottom: 18rem;
}

.hover\:my-80:hover{
  margin-top: 20rem;
  margin-bottom: 20rem;
}

.hover\:my-96:hover{
  margin-top: 24rem;
  margin-bottom: 24rem;
}

.hover\:my-auto:hover{
  margin-top: auto;
  margin-bottom: auto;
}

.hover\:my-px:hover{
  margin-top: 1px;
  margin-bottom: 1px;
}

.hover\:my-0\.5:hover{
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}

.hover\:my-1\.5:hover{
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
}

.hover\:my-2\.5:hover{
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

.hover\:my-3\.5:hover{
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
}

.hover\:-my-0:hover{
  margin-top: 0px;
  margin-bottom: 0px;
}

.hover\:-my-1:hover{
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.hover\:-my-2:hover{
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.hover\:-my-3:hover{
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

.hover\:-my-4:hover{
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.hover\:-my-5:hover{
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.hover\:-my-6:hover{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.hover\:-my-7:hover{
  margin-top: -1.75rem;
  margin-bottom: -1.75rem;
}

.hover\:-my-8:hover{
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.hover\:-my-9:hover{
  margin-top: -2.25rem;
  margin-bottom: -2.25rem;
}

.hover\:-my-10:hover{
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}

.hover\:-my-11:hover{
  margin-top: -2.75rem;
  margin-bottom: -2.75rem;
}

.hover\:-my-12:hover{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.hover\:-my-14:hover{
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}

.hover\:-my-16:hover{
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.hover\:-my-20:hover{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.hover\:-my-24:hover{
  margin-top: -6rem;
  margin-bottom: -6rem;
}

.hover\:-my-28:hover{
  margin-top: -7rem;
  margin-bottom: -7rem;
}

.hover\:-my-32:hover{
  margin-top: -8rem;
  margin-bottom: -8rem;
}

.hover\:-my-36:hover{
  margin-top: -9rem;
  margin-bottom: -9rem;
}

.hover\:-my-40:hover{
  margin-top: -10rem;
  margin-bottom: -10rem;
}

.hover\:-my-44:hover{
  margin-top: -11rem;
  margin-bottom: -11rem;
}

.hover\:-my-48:hover{
  margin-top: -12rem;
  margin-bottom: -12rem;
}

.hover\:-my-52:hover{
  margin-top: -13rem;
  margin-bottom: -13rem;
}

.hover\:-my-56:hover{
  margin-top: -14rem;
  margin-bottom: -14rem;
}

.hover\:-my-60:hover{
  margin-top: -15rem;
  margin-bottom: -15rem;
}

.hover\:-my-64:hover{
  margin-top: -16rem;
  margin-bottom: -16rem;
}

.hover\:-my-72:hover{
  margin-top: -18rem;
  margin-bottom: -18rem;
}

.hover\:-my-80:hover{
  margin-top: -20rem;
  margin-bottom: -20rem;
}

.hover\:-my-96:hover{
  margin-top: -24rem;
  margin-bottom: -24rem;
}

.hover\:-my-px:hover{
  margin-top: -1px;
  margin-bottom: -1px;
}

.hover\:-my-0\.5:hover{
  margin-top: -0.125rem;
  margin-bottom: -0.125rem;
}

.hover\:-my-1\.5:hover{
  margin-top: -0.375rem;
  margin-bottom: -0.375rem;
}

.hover\:-my-2\.5:hover{
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

.hover\:-my-3\.5:hover{
  margin-top: -0.875rem;
  margin-bottom: -0.875rem;
}

.hover\:my-neg1:hover{
  margin-top: -.25rem;
  margin-bottom: -.25rem;
}

.hover\:my-neg2:hover{
  margin-top: -.5rem;
  margin-bottom: -.5rem;
}

.hover\:my-neg4:hover{
  margin-top: -1.0rem;
  margin-bottom: -1.0rem;
}

.hover\:my-neg6:hover{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.hover\:my-neg12:hover{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.hover\:my-neg20:hover{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.focus\:mx-0:focus{
  margin-left: 0px;
  margin-right: 0px;
}

.focus\:mx-1:focus{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.focus\:mx-2:focus{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.focus\:mx-3:focus{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.focus\:mx-4:focus{
  margin-left: 1rem;
  margin-right: 1rem;
}

.focus\:mx-5:focus{
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.focus\:mx-6:focus{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.focus\:mx-7:focus{
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.focus\:mx-8:focus{
  margin-left: 2rem;
  margin-right: 2rem;
}

.focus\:mx-9:focus{
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.focus\:mx-10:focus{
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.focus\:mx-11:focus{
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}

.focus\:mx-12:focus{
  margin-left: 3rem;
  margin-right: 3rem;
}

.focus\:mx-14:focus{
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.focus\:mx-16:focus{
  margin-left: 4rem;
  margin-right: 4rem;
}

.focus\:mx-20:focus{
  margin-left: 5rem;
  margin-right: 5rem;
}

.focus\:mx-24:focus{
  margin-left: 6rem;
  margin-right: 6rem;
}

.focus\:mx-28:focus{
  margin-left: 7rem;
  margin-right: 7rem;
}

.focus\:mx-32:focus{
  margin-left: 8rem;
  margin-right: 8rem;
}

.focus\:mx-36:focus{
  margin-left: 9rem;
  margin-right: 9rem;
}

.focus\:mx-40:focus{
  margin-left: 10rem;
  margin-right: 10rem;
}

.focus\:mx-44:focus{
  margin-left: 11rem;
  margin-right: 11rem;
}

.focus\:mx-48:focus{
  margin-left: 12rem;
  margin-right: 12rem;
}

.focus\:mx-52:focus{
  margin-left: 13rem;
  margin-right: 13rem;
}

.focus\:mx-56:focus{
  margin-left: 14rem;
  margin-right: 14rem;
}

.focus\:mx-60:focus{
  margin-left: 15rem;
  margin-right: 15rem;
}

.focus\:mx-64:focus{
  margin-left: 16rem;
  margin-right: 16rem;
}

.focus\:mx-72:focus{
  margin-left: 18rem;
  margin-right: 18rem;
}

.focus\:mx-80:focus{
  margin-left: 20rem;
  margin-right: 20rem;
}

.focus\:mx-96:focus{
  margin-left: 24rem;
  margin-right: 24rem;
}

.focus\:mx-auto:focus{
  margin-left: auto;
  margin-right: auto;
}

.focus\:mx-px:focus{
  margin-left: 1px;
  margin-right: 1px;
}

.focus\:mx-0\.5:focus{
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.focus\:mx-1\.5:focus{
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}

.focus\:mx-2\.5:focus{
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.focus\:mx-3\.5:focus{
  margin-left: 0.875rem;
  margin-right: 0.875rem;
}

.focus\:-mx-0:focus{
  margin-left: 0px;
  margin-right: 0px;
}

.focus\:-mx-1:focus{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.focus\:-mx-2:focus{
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.focus\:-mx-3:focus{
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.focus\:-mx-4:focus{
  margin-left: -1rem;
  margin-right: -1rem;
}

.focus\:-mx-5:focus{
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.focus\:-mx-6:focus{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.focus\:-mx-7:focus{
  margin-left: -1.75rem;
  margin-right: -1.75rem;
}

.focus\:-mx-8:focus{
  margin-left: -2rem;
  margin-right: -2rem;
}

.focus\:-mx-9:focus{
  margin-left: -2.25rem;
  margin-right: -2.25rem;
}

.focus\:-mx-10:focus{
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

.focus\:-mx-11:focus{
  margin-left: -2.75rem;
  margin-right: -2.75rem;
}

.focus\:-mx-12:focus{
  margin-left: -3rem;
  margin-right: -3rem;
}

.focus\:-mx-14:focus{
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}

.focus\:-mx-16:focus{
  margin-left: -4rem;
  margin-right: -4rem;
}

.focus\:-mx-20:focus{
  margin-left: -5rem;
  margin-right: -5rem;
}

.focus\:-mx-24:focus{
  margin-left: -6rem;
  margin-right: -6rem;
}

.focus\:-mx-28:focus{
  margin-left: -7rem;
  margin-right: -7rem;
}

.focus\:-mx-32:focus{
  margin-left: -8rem;
  margin-right: -8rem;
}

.focus\:-mx-36:focus{
  margin-left: -9rem;
  margin-right: -9rem;
}

.focus\:-mx-40:focus{
  margin-left: -10rem;
  margin-right: -10rem;
}

.focus\:-mx-44:focus{
  margin-left: -11rem;
  margin-right: -11rem;
}

.focus\:-mx-48:focus{
  margin-left: -12rem;
  margin-right: -12rem;
}

.focus\:-mx-52:focus{
  margin-left: -13rem;
  margin-right: -13rem;
}

.focus\:-mx-56:focus{
  margin-left: -14rem;
  margin-right: -14rem;
}

.focus\:-mx-60:focus{
  margin-left: -15rem;
  margin-right: -15rem;
}

.focus\:-mx-64:focus{
  margin-left: -16rem;
  margin-right: -16rem;
}

.focus\:-mx-72:focus{
  margin-left: -18rem;
  margin-right: -18rem;
}

.focus\:-mx-80:focus{
  margin-left: -20rem;
  margin-right: -20rem;
}

.focus\:-mx-96:focus{
  margin-left: -24rem;
  margin-right: -24rem;
}

.focus\:-mx-px:focus{
  margin-left: -1px;
  margin-right: -1px;
}

.focus\:-mx-0\.5:focus{
  margin-left: -0.125rem;
  margin-right: -0.125rem;
}

.focus\:-mx-1\.5:focus{
  margin-left: -0.375rem;
  margin-right: -0.375rem;
}

.focus\:-mx-2\.5:focus{
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

.focus\:-mx-3\.5:focus{
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}

.focus\:mx-neg1:focus{
  margin-left: -.25rem;
  margin-right: -.25rem;
}

.focus\:mx-neg2:focus{
  margin-left: -.5rem;
  margin-right: -.5rem;
}

.focus\:mx-neg4:focus{
  margin-left: -1.0rem;
  margin-right: -1.0rem;
}

.focus\:mx-neg6:focus{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.focus\:mx-neg12:focus{
  margin-left: -3rem;
  margin-right: -3rem;
}

.focus\:mx-neg20:focus{
  margin-left: -5rem;
  margin-right: -5rem;
}

.focus\:my-0:focus{
  margin-top: 0px;
  margin-bottom: 0px;
}

.focus\:my-1:focus{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.focus\:my-2:focus{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.focus\:my-3:focus{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.focus\:my-4:focus{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.focus\:my-5:focus{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.focus\:my-6:focus{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.focus\:my-7:focus{
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.focus\:my-8:focus{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.focus\:my-9:focus{
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.focus\:my-10:focus{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.focus\:my-11:focus{
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

.focus\:my-12:focus{
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.focus\:my-14:focus{
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.focus\:my-16:focus{
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.focus\:my-20:focus{
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.focus\:my-24:focus{
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.focus\:my-28:focus{
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.focus\:my-32:focus{
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.focus\:my-36:focus{
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.focus\:my-40:focus{
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.focus\:my-44:focus{
  margin-top: 11rem;
  margin-bottom: 11rem;
}

.focus\:my-48:focus{
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.focus\:my-52:focus{
  margin-top: 13rem;
  margin-bottom: 13rem;
}

.focus\:my-56:focus{
  margin-top: 14rem;
  margin-bottom: 14rem;
}

.focus\:my-60:focus{
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.focus\:my-64:focus{
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.focus\:my-72:focus{
  margin-top: 18rem;
  margin-bottom: 18rem;
}

.focus\:my-80:focus{
  margin-top: 20rem;
  margin-bottom: 20rem;
}

.focus\:my-96:focus{
  margin-top: 24rem;
  margin-bottom: 24rem;
}

.focus\:my-auto:focus{
  margin-top: auto;
  margin-bottom: auto;
}

.focus\:my-px:focus{
  margin-top: 1px;
  margin-bottom: 1px;
}

.focus\:my-0\.5:focus{
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}

.focus\:my-1\.5:focus{
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
}

.focus\:my-2\.5:focus{
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

.focus\:my-3\.5:focus{
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
}

.focus\:-my-0:focus{
  margin-top: 0px;
  margin-bottom: 0px;
}

.focus\:-my-1:focus{
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.focus\:-my-2:focus{
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.focus\:-my-3:focus{
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

.focus\:-my-4:focus{
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.focus\:-my-5:focus{
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.focus\:-my-6:focus{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.focus\:-my-7:focus{
  margin-top: -1.75rem;
  margin-bottom: -1.75rem;
}

.focus\:-my-8:focus{
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.focus\:-my-9:focus{
  margin-top: -2.25rem;
  margin-bottom: -2.25rem;
}

.focus\:-my-10:focus{
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}

.focus\:-my-11:focus{
  margin-top: -2.75rem;
  margin-bottom: -2.75rem;
}

.focus\:-my-12:focus{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.focus\:-my-14:focus{
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}

.focus\:-my-16:focus{
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.focus\:-my-20:focus{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.focus\:-my-24:focus{
  margin-top: -6rem;
  margin-bottom: -6rem;
}

.focus\:-my-28:focus{
  margin-top: -7rem;
  margin-bottom: -7rem;
}

.focus\:-my-32:focus{
  margin-top: -8rem;
  margin-bottom: -8rem;
}

.focus\:-my-36:focus{
  margin-top: -9rem;
  margin-bottom: -9rem;
}

.focus\:-my-40:focus{
  margin-top: -10rem;
  margin-bottom: -10rem;
}

.focus\:-my-44:focus{
  margin-top: -11rem;
  margin-bottom: -11rem;
}

.focus\:-my-48:focus{
  margin-top: -12rem;
  margin-bottom: -12rem;
}

.focus\:-my-52:focus{
  margin-top: -13rem;
  margin-bottom: -13rem;
}

.focus\:-my-56:focus{
  margin-top: -14rem;
  margin-bottom: -14rem;
}

.focus\:-my-60:focus{
  margin-top: -15rem;
  margin-bottom: -15rem;
}

.focus\:-my-64:focus{
  margin-top: -16rem;
  margin-bottom: -16rem;
}

.focus\:-my-72:focus{
  margin-top: -18rem;
  margin-bottom: -18rem;
}

.focus\:-my-80:focus{
  margin-top: -20rem;
  margin-bottom: -20rem;
}

.focus\:-my-96:focus{
  margin-top: -24rem;
  margin-bottom: -24rem;
}

.focus\:-my-px:focus{
  margin-top: -1px;
  margin-bottom: -1px;
}

.focus\:-my-0\.5:focus{
  margin-top: -0.125rem;
  margin-bottom: -0.125rem;
}

.focus\:-my-1\.5:focus{
  margin-top: -0.375rem;
  margin-bottom: -0.375rem;
}

.focus\:-my-2\.5:focus{
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

.focus\:-my-3\.5:focus{
  margin-top: -0.875rem;
  margin-bottom: -0.875rem;
}

.focus\:my-neg1:focus{
  margin-top: -.25rem;
  margin-bottom: -.25rem;
}

.focus\:my-neg2:focus{
  margin-top: -.5rem;
  margin-bottom: -.5rem;
}

.focus\:my-neg4:focus{
  margin-top: -1.0rem;
  margin-bottom: -1.0rem;
}

.focus\:my-neg6:focus{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.focus\:my-neg12:focus{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.focus\:my-neg20:focus{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.first\:mx-0:first-child{
  margin-left: 0px;
  margin-right: 0px;
}

.first\:mx-1:first-child{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.first\:mx-2:first-child{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.first\:mx-3:first-child{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.first\:mx-4:first-child{
  margin-left: 1rem;
  margin-right: 1rem;
}

.first\:mx-5:first-child{
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.first\:mx-6:first-child{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.first\:mx-7:first-child{
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.first\:mx-8:first-child{
  margin-left: 2rem;
  margin-right: 2rem;
}

.first\:mx-9:first-child{
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.first\:mx-10:first-child{
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.first\:mx-11:first-child{
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}

.first\:mx-12:first-child{
  margin-left: 3rem;
  margin-right: 3rem;
}

.first\:mx-14:first-child{
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.first\:mx-16:first-child{
  margin-left: 4rem;
  margin-right: 4rem;
}

.first\:mx-20:first-child{
  margin-left: 5rem;
  margin-right: 5rem;
}

.first\:mx-24:first-child{
  margin-left: 6rem;
  margin-right: 6rem;
}

.first\:mx-28:first-child{
  margin-left: 7rem;
  margin-right: 7rem;
}

.first\:mx-32:first-child{
  margin-left: 8rem;
  margin-right: 8rem;
}

.first\:mx-36:first-child{
  margin-left: 9rem;
  margin-right: 9rem;
}

.first\:mx-40:first-child{
  margin-left: 10rem;
  margin-right: 10rem;
}

.first\:mx-44:first-child{
  margin-left: 11rem;
  margin-right: 11rem;
}

.first\:mx-48:first-child{
  margin-left: 12rem;
  margin-right: 12rem;
}

.first\:mx-52:first-child{
  margin-left: 13rem;
  margin-right: 13rem;
}

.first\:mx-56:first-child{
  margin-left: 14rem;
  margin-right: 14rem;
}

.first\:mx-60:first-child{
  margin-left: 15rem;
  margin-right: 15rem;
}

.first\:mx-64:first-child{
  margin-left: 16rem;
  margin-right: 16rem;
}

.first\:mx-72:first-child{
  margin-left: 18rem;
  margin-right: 18rem;
}

.first\:mx-80:first-child{
  margin-left: 20rem;
  margin-right: 20rem;
}

.first\:mx-96:first-child{
  margin-left: 24rem;
  margin-right: 24rem;
}

.first\:mx-auto:first-child{
  margin-left: auto;
  margin-right: auto;
}

.first\:mx-px:first-child{
  margin-left: 1px;
  margin-right: 1px;
}

.first\:mx-0\.5:first-child{
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.first\:mx-1\.5:first-child{
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}

.first\:mx-2\.5:first-child{
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.first\:mx-3\.5:first-child{
  margin-left: 0.875rem;
  margin-right: 0.875rem;
}

.first\:-mx-0:first-child{
  margin-left: 0px;
  margin-right: 0px;
}

.first\:-mx-1:first-child{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.first\:-mx-2:first-child{
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.first\:-mx-3:first-child{
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.first\:-mx-4:first-child{
  margin-left: -1rem;
  margin-right: -1rem;
}

.first\:-mx-5:first-child{
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.first\:-mx-6:first-child{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.first\:-mx-7:first-child{
  margin-left: -1.75rem;
  margin-right: -1.75rem;
}

.first\:-mx-8:first-child{
  margin-left: -2rem;
  margin-right: -2rem;
}

.first\:-mx-9:first-child{
  margin-left: -2.25rem;
  margin-right: -2.25rem;
}

.first\:-mx-10:first-child{
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

.first\:-mx-11:first-child{
  margin-left: -2.75rem;
  margin-right: -2.75rem;
}

.first\:-mx-12:first-child{
  margin-left: -3rem;
  margin-right: -3rem;
}

.first\:-mx-14:first-child{
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}

.first\:-mx-16:first-child{
  margin-left: -4rem;
  margin-right: -4rem;
}

.first\:-mx-20:first-child{
  margin-left: -5rem;
  margin-right: -5rem;
}

.first\:-mx-24:first-child{
  margin-left: -6rem;
  margin-right: -6rem;
}

.first\:-mx-28:first-child{
  margin-left: -7rem;
  margin-right: -7rem;
}

.first\:-mx-32:first-child{
  margin-left: -8rem;
  margin-right: -8rem;
}

.first\:-mx-36:first-child{
  margin-left: -9rem;
  margin-right: -9rem;
}

.first\:-mx-40:first-child{
  margin-left: -10rem;
  margin-right: -10rem;
}

.first\:-mx-44:first-child{
  margin-left: -11rem;
  margin-right: -11rem;
}

.first\:-mx-48:first-child{
  margin-left: -12rem;
  margin-right: -12rem;
}

.first\:-mx-52:first-child{
  margin-left: -13rem;
  margin-right: -13rem;
}

.first\:-mx-56:first-child{
  margin-left: -14rem;
  margin-right: -14rem;
}

.first\:-mx-60:first-child{
  margin-left: -15rem;
  margin-right: -15rem;
}

.first\:-mx-64:first-child{
  margin-left: -16rem;
  margin-right: -16rem;
}

.first\:-mx-72:first-child{
  margin-left: -18rem;
  margin-right: -18rem;
}

.first\:-mx-80:first-child{
  margin-left: -20rem;
  margin-right: -20rem;
}

.first\:-mx-96:first-child{
  margin-left: -24rem;
  margin-right: -24rem;
}

.first\:-mx-px:first-child{
  margin-left: -1px;
  margin-right: -1px;
}

.first\:-mx-0\.5:first-child{
  margin-left: -0.125rem;
  margin-right: -0.125rem;
}

.first\:-mx-1\.5:first-child{
  margin-left: -0.375rem;
  margin-right: -0.375rem;
}

.first\:-mx-2\.5:first-child{
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

.first\:-mx-3\.5:first-child{
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}

.first\:mx-neg1:first-child{
  margin-left: -.25rem;
  margin-right: -.25rem;
}

.first\:mx-neg2:first-child{
  margin-left: -.5rem;
  margin-right: -.5rem;
}

.first\:mx-neg4:first-child{
  margin-left: -1.0rem;
  margin-right: -1.0rem;
}

.first\:mx-neg6:first-child{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.first\:mx-neg12:first-child{
  margin-left: -3rem;
  margin-right: -3rem;
}

.first\:mx-neg20:first-child{
  margin-left: -5rem;
  margin-right: -5rem;
}

.first\:my-0:first-child{
  margin-top: 0px;
  margin-bottom: 0px;
}

.first\:my-1:first-child{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.first\:my-2:first-child{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.first\:my-3:first-child{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.first\:my-4:first-child{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.first\:my-5:first-child{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.first\:my-6:first-child{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.first\:my-7:first-child{
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.first\:my-8:first-child{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.first\:my-9:first-child{
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.first\:my-10:first-child{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.first\:my-11:first-child{
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

.first\:my-12:first-child{
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.first\:my-14:first-child{
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.first\:my-16:first-child{
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.first\:my-20:first-child{
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.first\:my-24:first-child{
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.first\:my-28:first-child{
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.first\:my-32:first-child{
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.first\:my-36:first-child{
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.first\:my-40:first-child{
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.first\:my-44:first-child{
  margin-top: 11rem;
  margin-bottom: 11rem;
}

.first\:my-48:first-child{
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.first\:my-52:first-child{
  margin-top: 13rem;
  margin-bottom: 13rem;
}

.first\:my-56:first-child{
  margin-top: 14rem;
  margin-bottom: 14rem;
}

.first\:my-60:first-child{
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.first\:my-64:first-child{
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.first\:my-72:first-child{
  margin-top: 18rem;
  margin-bottom: 18rem;
}

.first\:my-80:first-child{
  margin-top: 20rem;
  margin-bottom: 20rem;
}

.first\:my-96:first-child{
  margin-top: 24rem;
  margin-bottom: 24rem;
}

.first\:my-auto:first-child{
  margin-top: auto;
  margin-bottom: auto;
}

.first\:my-px:first-child{
  margin-top: 1px;
  margin-bottom: 1px;
}

.first\:my-0\.5:first-child{
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}

.first\:my-1\.5:first-child{
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
}

.first\:my-2\.5:first-child{
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

.first\:my-3\.5:first-child{
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
}

.first\:-my-0:first-child{
  margin-top: 0px;
  margin-bottom: 0px;
}

.first\:-my-1:first-child{
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.first\:-my-2:first-child{
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.first\:-my-3:first-child{
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

.first\:-my-4:first-child{
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.first\:-my-5:first-child{
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.first\:-my-6:first-child{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.first\:-my-7:first-child{
  margin-top: -1.75rem;
  margin-bottom: -1.75rem;
}

.first\:-my-8:first-child{
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.first\:-my-9:first-child{
  margin-top: -2.25rem;
  margin-bottom: -2.25rem;
}

.first\:-my-10:first-child{
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}

.first\:-my-11:first-child{
  margin-top: -2.75rem;
  margin-bottom: -2.75rem;
}

.first\:-my-12:first-child{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.first\:-my-14:first-child{
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}

.first\:-my-16:first-child{
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.first\:-my-20:first-child{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.first\:-my-24:first-child{
  margin-top: -6rem;
  margin-bottom: -6rem;
}

.first\:-my-28:first-child{
  margin-top: -7rem;
  margin-bottom: -7rem;
}

.first\:-my-32:first-child{
  margin-top: -8rem;
  margin-bottom: -8rem;
}

.first\:-my-36:first-child{
  margin-top: -9rem;
  margin-bottom: -9rem;
}

.first\:-my-40:first-child{
  margin-top: -10rem;
  margin-bottom: -10rem;
}

.first\:-my-44:first-child{
  margin-top: -11rem;
  margin-bottom: -11rem;
}

.first\:-my-48:first-child{
  margin-top: -12rem;
  margin-bottom: -12rem;
}

.first\:-my-52:first-child{
  margin-top: -13rem;
  margin-bottom: -13rem;
}

.first\:-my-56:first-child{
  margin-top: -14rem;
  margin-bottom: -14rem;
}

.first\:-my-60:first-child{
  margin-top: -15rem;
  margin-bottom: -15rem;
}

.first\:-my-64:first-child{
  margin-top: -16rem;
  margin-bottom: -16rem;
}

.first\:-my-72:first-child{
  margin-top: -18rem;
  margin-bottom: -18rem;
}

.first\:-my-80:first-child{
  margin-top: -20rem;
  margin-bottom: -20rem;
}

.first\:-my-96:first-child{
  margin-top: -24rem;
  margin-bottom: -24rem;
}

.first\:-my-px:first-child{
  margin-top: -1px;
  margin-bottom: -1px;
}

.first\:-my-0\.5:first-child{
  margin-top: -0.125rem;
  margin-bottom: -0.125rem;
}

.first\:-my-1\.5:first-child{
  margin-top: -0.375rem;
  margin-bottom: -0.375rem;
}

.first\:-my-2\.5:first-child{
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

.first\:-my-3\.5:first-child{
  margin-top: -0.875rem;
  margin-bottom: -0.875rem;
}

.first\:my-neg1:first-child{
  margin-top: -.25rem;
  margin-bottom: -.25rem;
}

.first\:my-neg2:first-child{
  margin-top: -.5rem;
  margin-bottom: -.5rem;
}

.first\:my-neg4:first-child{
  margin-top: -1.0rem;
  margin-bottom: -1.0rem;
}

.first\:my-neg6:first-child{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.first\:my-neg12:first-child{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.first\:my-neg20:first-child{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.last\:mx-0:last-child{
  margin-left: 0px;
  margin-right: 0px;
}

.last\:mx-1:last-child{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.last\:mx-2:last-child{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.last\:mx-3:last-child{
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.last\:mx-4:last-child{
  margin-left: 1rem;
  margin-right: 1rem;
}

.last\:mx-5:last-child{
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.last\:mx-6:last-child{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.last\:mx-7:last-child{
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.last\:mx-8:last-child{
  margin-left: 2rem;
  margin-right: 2rem;
}

.last\:mx-9:last-child{
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.last\:mx-10:last-child{
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.last\:mx-11:last-child{
  margin-left: 2.75rem;
  margin-right: 2.75rem;
}

.last\:mx-12:last-child{
  margin-left: 3rem;
  margin-right: 3rem;
}

.last\:mx-14:last-child{
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}

.last\:mx-16:last-child{
  margin-left: 4rem;
  margin-right: 4rem;
}

.last\:mx-20:last-child{
  margin-left: 5rem;
  margin-right: 5rem;
}

.last\:mx-24:last-child{
  margin-left: 6rem;
  margin-right: 6rem;
}

.last\:mx-28:last-child{
  margin-left: 7rem;
  margin-right: 7rem;
}

.last\:mx-32:last-child{
  margin-left: 8rem;
  margin-right: 8rem;
}

.last\:mx-36:last-child{
  margin-left: 9rem;
  margin-right: 9rem;
}

.last\:mx-40:last-child{
  margin-left: 10rem;
  margin-right: 10rem;
}

.last\:mx-44:last-child{
  margin-left: 11rem;
  margin-right: 11rem;
}

.last\:mx-48:last-child{
  margin-left: 12rem;
  margin-right: 12rem;
}

.last\:mx-52:last-child{
  margin-left: 13rem;
  margin-right: 13rem;
}

.last\:mx-56:last-child{
  margin-left: 14rem;
  margin-right: 14rem;
}

.last\:mx-60:last-child{
  margin-left: 15rem;
  margin-right: 15rem;
}

.last\:mx-64:last-child{
  margin-left: 16rem;
  margin-right: 16rem;
}

.last\:mx-72:last-child{
  margin-left: 18rem;
  margin-right: 18rem;
}

.last\:mx-80:last-child{
  margin-left: 20rem;
  margin-right: 20rem;
}

.last\:mx-96:last-child{
  margin-left: 24rem;
  margin-right: 24rem;
}

.last\:mx-auto:last-child{
  margin-left: auto;
  margin-right: auto;
}

.last\:mx-px:last-child{
  margin-left: 1px;
  margin-right: 1px;
}

.last\:mx-0\.5:last-child{
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.last\:mx-1\.5:last-child{
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}

.last\:mx-2\.5:last-child{
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.last\:mx-3\.5:last-child{
  margin-left: 0.875rem;
  margin-right: 0.875rem;
}

.last\:-mx-0:last-child{
  margin-left: 0px;
  margin-right: 0px;
}

.last\:-mx-1:last-child{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.last\:-mx-2:last-child{
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.last\:-mx-3:last-child{
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.last\:-mx-4:last-child{
  margin-left: -1rem;
  margin-right: -1rem;
}

.last\:-mx-5:last-child{
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.last\:-mx-6:last-child{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.last\:-mx-7:last-child{
  margin-left: -1.75rem;
  margin-right: -1.75rem;
}

.last\:-mx-8:last-child{
  margin-left: -2rem;
  margin-right: -2rem;
}

.last\:-mx-9:last-child{
  margin-left: -2.25rem;
  margin-right: -2.25rem;
}

.last\:-mx-10:last-child{
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

.last\:-mx-11:last-child{
  margin-left: -2.75rem;
  margin-right: -2.75rem;
}

.last\:-mx-12:last-child{
  margin-left: -3rem;
  margin-right: -3rem;
}

.last\:-mx-14:last-child{
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}

.last\:-mx-16:last-child{
  margin-left: -4rem;
  margin-right: -4rem;
}

.last\:-mx-20:last-child{
  margin-left: -5rem;
  margin-right: -5rem;
}

.last\:-mx-24:last-child{
  margin-left: -6rem;
  margin-right: -6rem;
}

.last\:-mx-28:last-child{
  margin-left: -7rem;
  margin-right: -7rem;
}

.last\:-mx-32:last-child{
  margin-left: -8rem;
  margin-right: -8rem;
}

.last\:-mx-36:last-child{
  margin-left: -9rem;
  margin-right: -9rem;
}

.last\:-mx-40:last-child{
  margin-left: -10rem;
  margin-right: -10rem;
}

.last\:-mx-44:last-child{
  margin-left: -11rem;
  margin-right: -11rem;
}

.last\:-mx-48:last-child{
  margin-left: -12rem;
  margin-right: -12rem;
}

.last\:-mx-52:last-child{
  margin-left: -13rem;
  margin-right: -13rem;
}

.last\:-mx-56:last-child{
  margin-left: -14rem;
  margin-right: -14rem;
}

.last\:-mx-60:last-child{
  margin-left: -15rem;
  margin-right: -15rem;
}

.last\:-mx-64:last-child{
  margin-left: -16rem;
  margin-right: -16rem;
}

.last\:-mx-72:last-child{
  margin-left: -18rem;
  margin-right: -18rem;
}

.last\:-mx-80:last-child{
  margin-left: -20rem;
  margin-right: -20rem;
}

.last\:-mx-96:last-child{
  margin-left: -24rem;
  margin-right: -24rem;
}

.last\:-mx-px:last-child{
  margin-left: -1px;
  margin-right: -1px;
}

.last\:-mx-0\.5:last-child{
  margin-left: -0.125rem;
  margin-right: -0.125rem;
}

.last\:-mx-1\.5:last-child{
  margin-left: -0.375rem;
  margin-right: -0.375rem;
}

.last\:-mx-2\.5:last-child{
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

.last\:-mx-3\.5:last-child{
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}

.last\:mx-neg1:last-child{
  margin-left: -.25rem;
  margin-right: -.25rem;
}

.last\:mx-neg2:last-child{
  margin-left: -.5rem;
  margin-right: -.5rem;
}

.last\:mx-neg4:last-child{
  margin-left: -1.0rem;
  margin-right: -1.0rem;
}

.last\:mx-neg6:last-child{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.last\:mx-neg12:last-child{
  margin-left: -3rem;
  margin-right: -3rem;
}

.last\:mx-neg20:last-child{
  margin-left: -5rem;
  margin-right: -5rem;
}

.last\:my-0:last-child{
  margin-top: 0px;
  margin-bottom: 0px;
}

.last\:my-1:last-child{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.last\:my-2:last-child{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.last\:my-3:last-child{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.last\:my-4:last-child{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.last\:my-5:last-child{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.last\:my-6:last-child{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.last\:my-7:last-child{
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.last\:my-8:last-child{
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.last\:my-9:last-child{
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.last\:my-10:last-child{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.last\:my-11:last-child{
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
}

.last\:my-12:last-child{
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.last\:my-14:last-child{
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.last\:my-16:last-child{
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.last\:my-20:last-child{
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.last\:my-24:last-child{
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.last\:my-28:last-child{
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.last\:my-32:last-child{
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.last\:my-36:last-child{
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.last\:my-40:last-child{
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.last\:my-44:last-child{
  margin-top: 11rem;
  margin-bottom: 11rem;
}

.last\:my-48:last-child{
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.last\:my-52:last-child{
  margin-top: 13rem;
  margin-bottom: 13rem;
}

.last\:my-56:last-child{
  margin-top: 14rem;
  margin-bottom: 14rem;
}

.last\:my-60:last-child{
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.last\:my-64:last-child{
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.last\:my-72:last-child{
  margin-top: 18rem;
  margin-bottom: 18rem;
}

.last\:my-80:last-child{
  margin-top: 20rem;
  margin-bottom: 20rem;
}

.last\:my-96:last-child{
  margin-top: 24rem;
  margin-bottom: 24rem;
}

.last\:my-auto:last-child{
  margin-top: auto;
  margin-bottom: auto;
}

.last\:my-px:last-child{
  margin-top: 1px;
  margin-bottom: 1px;
}

.last\:my-0\.5:last-child{
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}

.last\:my-1\.5:last-child{
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
}

.last\:my-2\.5:last-child{
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

.last\:my-3\.5:last-child{
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
}

.last\:-my-0:last-child{
  margin-top: 0px;
  margin-bottom: 0px;
}

.last\:-my-1:last-child{
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.last\:-my-2:last-child{
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.last\:-my-3:last-child{
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

.last\:-my-4:last-child{
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.last\:-my-5:last-child{
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.last\:-my-6:last-child{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.last\:-my-7:last-child{
  margin-top: -1.75rem;
  margin-bottom: -1.75rem;
}

.last\:-my-8:last-child{
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.last\:-my-9:last-child{
  margin-top: -2.25rem;
  margin-bottom: -2.25rem;
}

.last\:-my-10:last-child{
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}

.last\:-my-11:last-child{
  margin-top: -2.75rem;
  margin-bottom: -2.75rem;
}

.last\:-my-12:last-child{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.last\:-my-14:last-child{
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}

.last\:-my-16:last-child{
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.last\:-my-20:last-child{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.last\:-my-24:last-child{
  margin-top: -6rem;
  margin-bottom: -6rem;
}

.last\:-my-28:last-child{
  margin-top: -7rem;
  margin-bottom: -7rem;
}

.last\:-my-32:last-child{
  margin-top: -8rem;
  margin-bottom: -8rem;
}

.last\:-my-36:last-child{
  margin-top: -9rem;
  margin-bottom: -9rem;
}

.last\:-my-40:last-child{
  margin-top: -10rem;
  margin-bottom: -10rem;
}

.last\:-my-44:last-child{
  margin-top: -11rem;
  margin-bottom: -11rem;
}

.last\:-my-48:last-child{
  margin-top: -12rem;
  margin-bottom: -12rem;
}

.last\:-my-52:last-child{
  margin-top: -13rem;
  margin-bottom: -13rem;
}

.last\:-my-56:last-child{
  margin-top: -14rem;
  margin-bottom: -14rem;
}

.last\:-my-60:last-child{
  margin-top: -15rem;
  margin-bottom: -15rem;
}

.last\:-my-64:last-child{
  margin-top: -16rem;
  margin-bottom: -16rem;
}

.last\:-my-72:last-child{
  margin-top: -18rem;
  margin-bottom: -18rem;
}

.last\:-my-80:last-child{
  margin-top: -20rem;
  margin-bottom: -20rem;
}

.last\:-my-96:last-child{
  margin-top: -24rem;
  margin-bottom: -24rem;
}

.last\:-my-px:last-child{
  margin-top: -1px;
  margin-bottom: -1px;
}

.last\:-my-0\.5:last-child{
  margin-top: -0.125rem;
  margin-bottom: -0.125rem;
}

.last\:-my-1\.5:last-child{
  margin-top: -0.375rem;
  margin-bottom: -0.375rem;
}

.last\:-my-2\.5:last-child{
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

.last\:-my-3\.5:last-child{
  margin-top: -0.875rem;
  margin-bottom: -0.875rem;
}

.last\:my-neg1:last-child{
  margin-top: -.25rem;
  margin-bottom: -.25rem;
}

.last\:my-neg2:last-child{
  margin-top: -.5rem;
  margin-bottom: -.5rem;
}

.last\:my-neg4:last-child{
  margin-top: -1.0rem;
  margin-bottom: -1.0rem;
}

.last\:my-neg6:last-child{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.last\:my-neg12:last-child{
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.last\:my-neg20:last-child{
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.mt-0{
  margin-top: 0px;
}

.mt-1{
  margin-top: 0.25rem;
}

.mt-2{
  margin-top: 0.5rem;
}

.mt-3{
  margin-top: 0.75rem;
}

.mt-4{
  margin-top: 1rem;
}

.mt-5{
  margin-top: 1.25rem;
}

.mt-6{
  margin-top: 1.5rem;
}

.mt-7{
  margin-top: 1.75rem;
}

.mt-8{
  margin-top: 2rem;
}

.mt-9{
  margin-top: 2.25rem;
}

.mt-10{
  margin-top: 2.5rem;
}

.mt-11{
  margin-top: 2.75rem;
}

.mt-12{
  margin-top: 3rem;
}

.mt-14{
  margin-top: 3.5rem;
}

.mt-16{
  margin-top: 4rem;
}

.mt-20{
  margin-top: 5rem;
}

.mt-24{
  margin-top: 6rem;
}

.mt-28{
  margin-top: 7rem;
}

.mt-32{
  margin-top: 8rem;
}

.mt-36{
  margin-top: 9rem;
}

.mt-40{
  margin-top: 10rem;
}

.mt-44{
  margin-top: 11rem;
}

.mt-48{
  margin-top: 12rem;
}

.mt-52{
  margin-top: 13rem;
}

.mt-56{
  margin-top: 14rem;
}

.mt-60{
  margin-top: 15rem;
}

.mt-64{
  margin-top: 16rem;
}

.mt-72{
  margin-top: 18rem;
}

.mt-80{
  margin-top: 20rem;
}

.mt-96{
  margin-top: 24rem;
}

.mt-auto{
  margin-top: auto;
}

.mt-px{
  margin-top: 1px;
}

.mt-0\.5{
  margin-top: 0.125rem;
}

.mt-1\.5{
  margin-top: 0.375rem;
}

.mt-2\.5{
  margin-top: 0.625rem;
}

.mt-3\.5{
  margin-top: 0.875rem;
}

.-mt-0{
  margin-top: 0px;
}

.-mt-1{
  margin-top: -0.25rem;
}

.-mt-2{
  margin-top: -0.5rem;
}

.-mt-3{
  margin-top: -0.75rem;
}

.-mt-4{
  margin-top: -1rem;
}

.-mt-5{
  margin-top: -1.25rem;
}

.-mt-6{
  margin-top: -1.5rem;
}

.-mt-7{
  margin-top: -1.75rem;
}

.-mt-8{
  margin-top: -2rem;
}

.-mt-9{
  margin-top: -2.25rem;
}

.-mt-10{
  margin-top: -2.5rem;
}

.-mt-11{
  margin-top: -2.75rem;
}

.-mt-12{
  margin-top: -3rem;
}

.-mt-14{
  margin-top: -3.5rem;
}

.-mt-16{
  margin-top: -4rem;
}

.-mt-20{
  margin-top: -5rem;
}

.-mt-24{
  margin-top: -6rem;
}

.-mt-28{
  margin-top: -7rem;
}

.-mt-32{
  margin-top: -8rem;
}

.-mt-36{
  margin-top: -9rem;
}

.-mt-40{
  margin-top: -10rem;
}

.-mt-44{
  margin-top: -11rem;
}

.-mt-48{
  margin-top: -12rem;
}

.-mt-52{
  margin-top: -13rem;
}

.-mt-56{
  margin-top: -14rem;
}

.-mt-60{
  margin-top: -15rem;
}

.-mt-64{
  margin-top: -16rem;
}

.-mt-72{
  margin-top: -18rem;
}

.-mt-80{
  margin-top: -20rem;
}

.-mt-96{
  margin-top: -24rem;
}

.-mt-px{
  margin-top: -1px;
}

.-mt-0\.5{
  margin-top: -0.125rem;
}

.-mt-1\.5{
  margin-top: -0.375rem;
}

.-mt-2\.5{
  margin-top: -0.625rem;
}

.-mt-3\.5{
  margin-top: -0.875rem;
}

.mt-neg1{
  margin-top: -.25rem;
}

.mt-neg2{
  margin-top: -.5rem;
}

.mt-neg4{
  margin-top: -1.0rem;
}

.mt-neg6{
  margin-top: -1.5rem;
}

.mt-neg12{
  margin-top: -3rem;
}

.mt-neg20{
  margin-top: -5rem;
}

.mr-0{
  margin-right: 0px;
}

.mr-1{
  margin-right: 0.25rem;
}

.mr-2{
  margin-right: 0.5rem;
}

.mr-3{
  margin-right: 0.75rem;
}

.mr-4{
  margin-right: 1rem;
}

.mr-5{
  margin-right: 1.25rem;
}

.mr-6{
  margin-right: 1.5rem;
}

.mr-7{
  margin-right: 1.75rem;
}

.mr-8{
  margin-right: 2rem;
}

.mr-9{
  margin-right: 2.25rem;
}

.mr-10{
  margin-right: 2.5rem;
}

.mr-11{
  margin-right: 2.75rem;
}

.mr-12{
  margin-right: 3rem;
}

.mr-14{
  margin-right: 3.5rem;
}

.mr-16{
  margin-right: 4rem;
}

.mr-20{
  margin-right: 5rem;
}

.mr-24{
  margin-right: 6rem;
}

.mr-28{
  margin-right: 7rem;
}

.mr-32{
  margin-right: 8rem;
}

.mr-36{
  margin-right: 9rem;
}

.mr-40{
  margin-right: 10rem;
}

.mr-44{
  margin-right: 11rem;
}

.mr-48{
  margin-right: 12rem;
}

.mr-52{
  margin-right: 13rem;
}

.mr-56{
  margin-right: 14rem;
}

.mr-60{
  margin-right: 15rem;
}

.mr-64{
  margin-right: 16rem;
}

.mr-72{
  margin-right: 18rem;
}

.mr-80{
  margin-right: 20rem;
}

.mr-96{
  margin-right: 24rem;
}

.mr-auto{
  margin-right: auto;
}

.mr-px{
  margin-right: 1px;
}

.mr-0\.5{
  margin-right: 0.125rem;
}

.mr-1\.5{
  margin-right: 0.375rem;
}

.mr-2\.5{
  margin-right: 0.625rem;
}

.mr-3\.5{
  margin-right: 0.875rem;
}

.-mr-0{
  margin-right: 0px;
}

.-mr-1{
  margin-right: -0.25rem;
}

.-mr-2{
  margin-right: -0.5rem;
}

.-mr-3{
  margin-right: -0.75rem;
}

.-mr-4{
  margin-right: -1rem;
}

.-mr-5{
  margin-right: -1.25rem;
}

.-mr-6{
  margin-right: -1.5rem;
}

.-mr-7{
  margin-right: -1.75rem;
}

.-mr-8{
  margin-right: -2rem;
}

.-mr-9{
  margin-right: -2.25rem;
}

.-mr-10{
  margin-right: -2.5rem;
}

.-mr-11{
  margin-right: -2.75rem;
}

.-mr-12{
  margin-right: -3rem;
}

.-mr-14{
  margin-right: -3.5rem;
}

.-mr-16{
  margin-right: -4rem;
}

.-mr-20{
  margin-right: -5rem;
}

.-mr-24{
  margin-right: -6rem;
}

.-mr-28{
  margin-right: -7rem;
}

.-mr-32{
  margin-right: -8rem;
}

.-mr-36{
  margin-right: -9rem;
}

.-mr-40{
  margin-right: -10rem;
}

.-mr-44{
  margin-right: -11rem;
}

.-mr-48{
  margin-right: -12rem;
}

.-mr-52{
  margin-right: -13rem;
}

.-mr-56{
  margin-right: -14rem;
}

.-mr-60{
  margin-right: -15rem;
}

.-mr-64{
  margin-right: -16rem;
}

.-mr-72{
  margin-right: -18rem;
}

.-mr-80{
  margin-right: -20rem;
}

.-mr-96{
  margin-right: -24rem;
}

.-mr-px{
  margin-right: -1px;
}

.-mr-0\.5{
  margin-right: -0.125rem;
}

.-mr-1\.5{
  margin-right: -0.375rem;
}

.-mr-2\.5{
  margin-right: -0.625rem;
}

.-mr-3\.5{
  margin-right: -0.875rem;
}

.mr-neg1{
  margin-right: -.25rem;
}

.mr-neg2{
  margin-right: -.5rem;
}

.mr-neg4{
  margin-right: -1.0rem;
}

.mr-neg6{
  margin-right: -1.5rem;
}

.mr-neg12{
  margin-right: -3rem;
}

.mr-neg20{
  margin-right: -5rem;
}

.mb-0{
  margin-bottom: 0px;
}

.mb-1{
  margin-bottom: 0.25rem;
}

.mb-2{
  margin-bottom: 0.5rem;
}

.mb-3{
  margin-bottom: 0.75rem;
}

.mb-4{
  margin-bottom: 1rem;
}

.mb-5{
  margin-bottom: 1.25rem;
}

.mb-6{
  margin-bottom: 1.5rem;
}

.mb-7{
  margin-bottom: 1.75rem;
}

.mb-8{
  margin-bottom: 2rem;
}

.mb-9{
  margin-bottom: 2.25rem;
}

.mb-10{
  margin-bottom: 2.5rem;
}

.mb-11{
  margin-bottom: 2.75rem;
}

.mb-12{
  margin-bottom: 3rem;
}

.mb-14{
  margin-bottom: 3.5rem;
}

.mb-16{
  margin-bottom: 4rem;
}

.mb-20{
  margin-bottom: 5rem;
}

.mb-24{
  margin-bottom: 6rem;
}

.mb-28{
  margin-bottom: 7rem;
}

.mb-32{
  margin-bottom: 8rem;
}

.mb-36{
  margin-bottom: 9rem;
}

.mb-40{
  margin-bottom: 10rem;
}

.mb-44{
  margin-bottom: 11rem;
}

.mb-48{
  margin-bottom: 12rem;
}

.mb-52{
  margin-bottom: 13rem;
}

.mb-56{
  margin-bottom: 14rem;
}

.mb-60{
  margin-bottom: 15rem;
}

.mb-64{
  margin-bottom: 16rem;
}

.mb-72{
  margin-bottom: 18rem;
}

.mb-80{
  margin-bottom: 20rem;
}

.mb-96{
  margin-bottom: 24rem;
}

.mb-auto{
  margin-bottom: auto;
}

.mb-px{
  margin-bottom: 1px;
}

.mb-0\.5{
  margin-bottom: 0.125rem;
}

.mb-1\.5{
  margin-bottom: 0.375rem;
}

.mb-2\.5{
  margin-bottom: 0.625rem;
}

.mb-3\.5{
  margin-bottom: 0.875rem;
}

.-mb-0{
  margin-bottom: 0px;
}

.-mb-1{
  margin-bottom: -0.25rem;
}

.-mb-2{
  margin-bottom: -0.5rem;
}

.-mb-3{
  margin-bottom: -0.75rem;
}

.-mb-4{
  margin-bottom: -1rem;
}

.-mb-5{
  margin-bottom: -1.25rem;
}

.-mb-6{
  margin-bottom: -1.5rem;
}

.-mb-7{
  margin-bottom: -1.75rem;
}

.-mb-8{
  margin-bottom: -2rem;
}

.-mb-9{
  margin-bottom: -2.25rem;
}

.-mb-10{
  margin-bottom: -2.5rem;
}

.-mb-11{
  margin-bottom: -2.75rem;
}

.-mb-12{
  margin-bottom: -3rem;
}

.-mb-14{
  margin-bottom: -3.5rem;
}

.-mb-16{
  margin-bottom: -4rem;
}

.-mb-20{
  margin-bottom: -5rem;
}

.-mb-24{
  margin-bottom: -6rem;
}

.-mb-28{
  margin-bottom: -7rem;
}

.-mb-32{
  margin-bottom: -8rem;
}

.-mb-36{
  margin-bottom: -9rem;
}

.-mb-40{
  margin-bottom: -10rem;
}

.-mb-44{
  margin-bottom: -11rem;
}

.-mb-48{
  margin-bottom: -12rem;
}

.-mb-52{
  margin-bottom: -13rem;
}

.-mb-56{
  margin-bottom: -14rem;
}

.-mb-60{
  margin-bottom: -15rem;
}

.-mb-64{
  margin-bottom: -16rem;
}

.-mb-72{
  margin-bottom: -18rem;
}

.-mb-80{
  margin-bottom: -20rem;
}

.-mb-96{
  margin-bottom: -24rem;
}

.-mb-px{
  margin-bottom: -1px;
}

.-mb-0\.5{
  margin-bottom: -0.125rem;
}

.-mb-1\.5{
  margin-bottom: -0.375rem;
}

.-mb-2\.5{
  margin-bottom: -0.625rem;
}

.-mb-3\.5{
  margin-bottom: -0.875rem;
}

.mb-neg1{
  margin-bottom: -.25rem;
}

.mb-neg2{
  margin-bottom: -.5rem;
}

.mb-neg4{
  margin-bottom: -1.0rem;
}

.mb-neg6{
  margin-bottom: -1.5rem;
}

.mb-neg12{
  margin-bottom: -3rem;
}

.mb-neg20{
  margin-bottom: -5rem;
}

.ml-0{
  margin-left: 0px;
}

.ml-1{
  margin-left: 0.25rem;
}

.ml-2{
  margin-left: 0.5rem;
}

.ml-3{
  margin-left: 0.75rem;
}

.ml-4{
  margin-left: 1rem;
}

.ml-5{
  margin-left: 1.25rem;
}

.ml-6{
  margin-left: 1.5rem;
}

.ml-7{
  margin-left: 1.75rem;
}

.ml-8{
  margin-left: 2rem;
}

.ml-9{
  margin-left: 2.25rem;
}

.ml-10{
  margin-left: 2.5rem;
}

.ml-11{
  margin-left: 2.75rem;
}

.ml-12{
  margin-left: 3rem;
}

.ml-14{
  margin-left: 3.5rem;
}

.ml-16{
  margin-left: 4rem;
}

.ml-20{
  margin-left: 5rem;
}

.ml-24{
  margin-left: 6rem;
}

.ml-28{
  margin-left: 7rem;
}

.ml-32{
  margin-left: 8rem;
}

.ml-36{
  margin-left: 9rem;
}

.ml-40{
  margin-left: 10rem;
}

.ml-44{
  margin-left: 11rem;
}

.ml-48{
  margin-left: 12rem;
}

.ml-52{
  margin-left: 13rem;
}

.ml-56{
  margin-left: 14rem;
}

.ml-60{
  margin-left: 15rem;
}

.ml-64{
  margin-left: 16rem;
}

.ml-72{
  margin-left: 18rem;
}

.ml-80{
  margin-left: 20rem;
}

.ml-96{
  margin-left: 24rem;
}

.ml-auto{
  margin-left: auto;
}

.ml-px{
  margin-left: 1px;
}

.ml-0\.5{
  margin-left: 0.125rem;
}

.ml-1\.5{
  margin-left: 0.375rem;
}

.ml-2\.5{
  margin-left: 0.625rem;
}

.ml-3\.5{
  margin-left: 0.875rem;
}

.-ml-0{
  margin-left: 0px;
}

.-ml-1{
  margin-left: -0.25rem;
}

.-ml-2{
  margin-left: -0.5rem;
}

.-ml-3{
  margin-left: -0.75rem;
}

.-ml-4{
  margin-left: -1rem;
}

.-ml-5{
  margin-left: -1.25rem;
}

.-ml-6{
  margin-left: -1.5rem;
}

.-ml-7{
  margin-left: -1.75rem;
}

.-ml-8{
  margin-left: -2rem;
}

.-ml-9{
  margin-left: -2.25rem;
}

.-ml-10{
  margin-left: -2.5rem;
}

.-ml-11{
  margin-left: -2.75rem;
}

.-ml-12{
  margin-left: -3rem;
}

.-ml-14{
  margin-left: -3.5rem;
}

.-ml-16{
  margin-left: -4rem;
}

.-ml-20{
  margin-left: -5rem;
}

.-ml-24{
  margin-left: -6rem;
}

.-ml-28{
  margin-left: -7rem;
}

.-ml-32{
  margin-left: -8rem;
}

.-ml-36{
  margin-left: -9rem;
}

.-ml-40{
  margin-left: -10rem;
}

.-ml-44{
  margin-left: -11rem;
}

.-ml-48{
  margin-left: -12rem;
}

.-ml-52{
  margin-left: -13rem;
}

.-ml-56{
  margin-left: -14rem;
}

.-ml-60{
  margin-left: -15rem;
}

.-ml-64{
  margin-left: -16rem;
}

.-ml-72{
  margin-left: -18rem;
}

.-ml-80{
  margin-left: -20rem;
}

.-ml-96{
  margin-left: -24rem;
}

.-ml-px{
  margin-left: -1px;
}

.-ml-0\.5{
  margin-left: -0.125rem;
}

.-ml-1\.5{
  margin-left: -0.375rem;
}

.-ml-2\.5{
  margin-left: -0.625rem;
}

.-ml-3\.5{
  margin-left: -0.875rem;
}

.ml-neg1{
  margin-left: -.25rem;
}

.ml-neg2{
  margin-left: -.5rem;
}

.ml-neg4{
  margin-left: -1.0rem;
}

.ml-neg6{
  margin-left: -1.5rem;
}

.ml-neg12{
  margin-left: -3rem;
}

.ml-neg20{
  margin-left: -5rem;
}

.last\:mt-0:last-child{
  margin-top: 0px;
}

.last\:mt-1:last-child{
  margin-top: 0.25rem;
}

.last\:mt-2:last-child{
  margin-top: 0.5rem;
}

.last\:mt-3:last-child{
  margin-top: 0.75rem;
}

.last\:mt-4:last-child{
  margin-top: 1rem;
}

.last\:mt-5:last-child{
  margin-top: 1.25rem;
}

.last\:mt-6:last-child{
  margin-top: 1.5rem;
}

.last\:mt-7:last-child{
  margin-top: 1.75rem;
}

.last\:mt-8:last-child{
  margin-top: 2rem;
}

.last\:mt-9:last-child{
  margin-top: 2.25rem;
}

.last\:mt-10:last-child{
  margin-top: 2.5rem;
}

.last\:mt-11:last-child{
  margin-top: 2.75rem;
}

.last\:mt-12:last-child{
  margin-top: 3rem;
}

.last\:mt-14:last-child{
  margin-top: 3.5rem;
}

.last\:mt-16:last-child{
  margin-top: 4rem;
}

.last\:mt-20:last-child{
  margin-top: 5rem;
}

.last\:mt-24:last-child{
  margin-top: 6rem;
}

.last\:mt-28:last-child{
  margin-top: 7rem;
}

.last\:mt-32:last-child{
  margin-top: 8rem;
}

.last\:mt-36:last-child{
  margin-top: 9rem;
}

.last\:mt-40:last-child{
  margin-top: 10rem;
}

.last\:mt-44:last-child{
  margin-top: 11rem;
}

.last\:mt-48:last-child{
  margin-top: 12rem;
}

.last\:mt-52:last-child{
  margin-top: 13rem;
}

.last\:mt-56:last-child{
  margin-top: 14rem;
}

.last\:mt-60:last-child{
  margin-top: 15rem;
}

.last\:mt-64:last-child{
  margin-top: 16rem;
}

.last\:mt-72:last-child{
  margin-top: 18rem;
}

.last\:mt-80:last-child{
  margin-top: 20rem;
}

.last\:mt-96:last-child{
  margin-top: 24rem;
}

.last\:mt-auto:last-child{
  margin-top: auto;
}

.last\:mt-px:last-child{
  margin-top: 1px;
}

.last\:mt-0\.5:last-child{
  margin-top: 0.125rem;
}

.last\:mt-1\.5:last-child{
  margin-top: 0.375rem;
}

.last\:mt-2\.5:last-child{
  margin-top: 0.625rem;
}

.last\:mt-3\.5:last-child{
  margin-top: 0.875rem;
}

.last\:-mt-0:last-child{
  margin-top: 0px;
}

.last\:-mt-1:last-child{
  margin-top: -0.25rem;
}

.last\:-mt-2:last-child{
  margin-top: -0.5rem;
}

.last\:-mt-3:last-child{
  margin-top: -0.75rem;
}

.last\:-mt-4:last-child{
  margin-top: -1rem;
}

.last\:-mt-5:last-child{
  margin-top: -1.25rem;
}

.last\:-mt-6:last-child{
  margin-top: -1.5rem;
}

.last\:-mt-7:last-child{
  margin-top: -1.75rem;
}

.last\:-mt-8:last-child{
  margin-top: -2rem;
}

.last\:-mt-9:last-child{
  margin-top: -2.25rem;
}

.last\:-mt-10:last-child{
  margin-top: -2.5rem;
}

.last\:-mt-11:last-child{
  margin-top: -2.75rem;
}

.last\:-mt-12:last-child{
  margin-top: -3rem;
}

.last\:-mt-14:last-child{
  margin-top: -3.5rem;
}

.last\:-mt-16:last-child{
  margin-top: -4rem;
}

.last\:-mt-20:last-child{
  margin-top: -5rem;
}

.last\:-mt-24:last-child{
  margin-top: -6rem;
}

.last\:-mt-28:last-child{
  margin-top: -7rem;
}

.last\:-mt-32:last-child{
  margin-top: -8rem;
}

.last\:-mt-36:last-child{
  margin-top: -9rem;
}

.last\:-mt-40:last-child{
  margin-top: -10rem;
}

.last\:-mt-44:last-child{
  margin-top: -11rem;
}

.last\:-mt-48:last-child{
  margin-top: -12rem;
}

.last\:-mt-52:last-child{
  margin-top: -13rem;
}

.last\:-mt-56:last-child{
  margin-top: -14rem;
}

.last\:-mt-60:last-child{
  margin-top: -15rem;
}

.last\:-mt-64:last-child{
  margin-top: -16rem;
}

.last\:-mt-72:last-child{
  margin-top: -18rem;
}

.last\:-mt-80:last-child{
  margin-top: -20rem;
}

.last\:-mt-96:last-child{
  margin-top: -24rem;
}

.last\:-mt-px:last-child{
  margin-top: -1px;
}

.last\:-mt-0\.5:last-child{
  margin-top: -0.125rem;
}

.last\:-mt-1\.5:last-child{
  margin-top: -0.375rem;
}

.last\:-mt-2\.5:last-child{
  margin-top: -0.625rem;
}

.last\:-mt-3\.5:last-child{
  margin-top: -0.875rem;
}

.last\:mt-neg1:last-child{
  margin-top: -.25rem;
}

.last\:mt-neg2:last-child{
  margin-top: -.5rem;
}

.last\:mt-neg4:last-child{
  margin-top: -1.0rem;
}

.last\:mt-neg6:last-child{
  margin-top: -1.5rem;
}

.last\:mt-neg12:last-child{
  margin-top: -3rem;
}

.last\:mt-neg20:last-child{
  margin-top: -5rem;
}

.last\:mr-0:last-child{
  margin-right: 0px;
}

.last\:mr-1:last-child{
  margin-right: 0.25rem;
}

.last\:mr-2:last-child{
  margin-right: 0.5rem;
}

.last\:mr-3:last-child{
  margin-right: 0.75rem;
}

.last\:mr-4:last-child{
  margin-right: 1rem;
}

.last\:mr-5:last-child{
  margin-right: 1.25rem;
}

.last\:mr-6:last-child{
  margin-right: 1.5rem;
}

.last\:mr-7:last-child{
  margin-right: 1.75rem;
}

.last\:mr-8:last-child{
  margin-right: 2rem;
}

.last\:mr-9:last-child{
  margin-right: 2.25rem;
}

.last\:mr-10:last-child{
  margin-right: 2.5rem;
}

.last\:mr-11:last-child{
  margin-right: 2.75rem;
}

.last\:mr-12:last-child{
  margin-right: 3rem;
}

.last\:mr-14:last-child{
  margin-right: 3.5rem;
}

.last\:mr-16:last-child{
  margin-right: 4rem;
}

.last\:mr-20:last-child{
  margin-right: 5rem;
}

.last\:mr-24:last-child{
  margin-right: 6rem;
}

.last\:mr-28:last-child{
  margin-right: 7rem;
}

.last\:mr-32:last-child{
  margin-right: 8rem;
}

.last\:mr-36:last-child{
  margin-right: 9rem;
}

.last\:mr-40:last-child{
  margin-right: 10rem;
}

.last\:mr-44:last-child{
  margin-right: 11rem;
}

.last\:mr-48:last-child{
  margin-right: 12rem;
}

.last\:mr-52:last-child{
  margin-right: 13rem;
}

.last\:mr-56:last-child{
  margin-right: 14rem;
}

.last\:mr-60:last-child{
  margin-right: 15rem;
}

.last\:mr-64:last-child{
  margin-right: 16rem;
}

.last\:mr-72:last-child{
  margin-right: 18rem;
}

.last\:mr-80:last-child{
  margin-right: 20rem;
}

.last\:mr-96:last-child{
  margin-right: 24rem;
}

.last\:mr-auto:last-child{
  margin-right: auto;
}

.last\:mr-px:last-child{
  margin-right: 1px;
}

.last\:mr-0\.5:last-child{
  margin-right: 0.125rem;
}

.last\:mr-1\.5:last-child{
  margin-right: 0.375rem;
}

.last\:mr-2\.5:last-child{
  margin-right: 0.625rem;
}

.last\:mr-3\.5:last-child{
  margin-right: 0.875rem;
}

.last\:-mr-0:last-child{
  margin-right: 0px;
}

.last\:-mr-1:last-child{
  margin-right: -0.25rem;
}

.last\:-mr-2:last-child{
  margin-right: -0.5rem;
}

.last\:-mr-3:last-child{
  margin-right: -0.75rem;
}

.last\:-mr-4:last-child{
  margin-right: -1rem;
}

.last\:-mr-5:last-child{
  margin-right: -1.25rem;
}

.last\:-mr-6:last-child{
  margin-right: -1.5rem;
}

.last\:-mr-7:last-child{
  margin-right: -1.75rem;
}

.last\:-mr-8:last-child{
  margin-right: -2rem;
}

.last\:-mr-9:last-child{
  margin-right: -2.25rem;
}

.last\:-mr-10:last-child{
  margin-right: -2.5rem;
}

.last\:-mr-11:last-child{
  margin-right: -2.75rem;
}

.last\:-mr-12:last-child{
  margin-right: -3rem;
}

.last\:-mr-14:last-child{
  margin-right: -3.5rem;
}

.last\:-mr-16:last-child{
  margin-right: -4rem;
}

.last\:-mr-20:last-child{
  margin-right: -5rem;
}

.last\:-mr-24:last-child{
  margin-right: -6rem;
}

.last\:-mr-28:last-child{
  margin-right: -7rem;
}

.last\:-mr-32:last-child{
  margin-right: -8rem;
}

.last\:-mr-36:last-child{
  margin-right: -9rem;
}

.last\:-mr-40:last-child{
  margin-right: -10rem;
}

.last\:-mr-44:last-child{
  margin-right: -11rem;
}

.last\:-mr-48:last-child{
  margin-right: -12rem;
}

.last\:-mr-52:last-child{
  margin-right: -13rem;
}

.last\:-mr-56:last-child{
  margin-right: -14rem;
}

.last\:-mr-60:last-child{
  margin-right: -15rem;
}

.last\:-mr-64:last-child{
  margin-right: -16rem;
}

.last\:-mr-72:last-child{
  margin-right: -18rem;
}

.last\:-mr-80:last-child{
  margin-right: -20rem;
}

.last\:-mr-96:last-child{
  margin-right: -24rem;
}

.last\:-mr-px:last-child{
  margin-right: -1px;
}

.last\:-mr-0\.5:last-child{
  margin-right: -0.125rem;
}

.last\:-mr-1\.5:last-child{
  margin-right: -0.375rem;
}

.last\:-mr-2\.5:last-child{
  margin-right: -0.625rem;
}

.last\:-mr-3\.5:last-child{
  margin-right: -0.875rem;
}

.last\:mr-neg1:last-child{
  margin-right: -.25rem;
}

.last\:mr-neg2:last-child{
  margin-right: -.5rem;
}

.last\:mr-neg4:last-child{
  margin-right: -1.0rem;
}

.last\:mr-neg6:last-child{
  margin-right: -1.5rem;
}

.last\:mr-neg12:last-child{
  margin-right: -3rem;
}

.last\:mr-neg20:last-child{
  margin-right: -5rem;
}

.last\:mb-0:last-child{
  margin-bottom: 0px;
}

.last\:mb-1:last-child{
  margin-bottom: 0.25rem;
}

.last\:mb-2:last-child{
  margin-bottom: 0.5rem;
}

.last\:mb-3:last-child{
  margin-bottom: 0.75rem;
}

.last\:mb-4:last-child{
  margin-bottom: 1rem;
}

.last\:mb-5:last-child{
  margin-bottom: 1.25rem;
}

.last\:mb-6:last-child{
  margin-bottom: 1.5rem;
}

.last\:mb-7:last-child{
  margin-bottom: 1.75rem;
}

.last\:mb-8:last-child{
  margin-bottom: 2rem;
}

.last\:mb-9:last-child{
  margin-bottom: 2.25rem;
}

.last\:mb-10:last-child{
  margin-bottom: 2.5rem;
}

.last\:mb-11:last-child{
  margin-bottom: 2.75rem;
}

.last\:mb-12:last-child{
  margin-bottom: 3rem;
}

.last\:mb-14:last-child{
  margin-bottom: 3.5rem;
}

.last\:mb-16:last-child{
  margin-bottom: 4rem;
}

.last\:mb-20:last-child{
  margin-bottom: 5rem;
}

.last\:mb-24:last-child{
  margin-bottom: 6rem;
}

.last\:mb-28:last-child{
  margin-bottom: 7rem;
}

.last\:mb-32:last-child{
  margin-bottom: 8rem;
}

.last\:mb-36:last-child{
  margin-bottom: 9rem;
}

.last\:mb-40:last-child{
  margin-bottom: 10rem;
}

.last\:mb-44:last-child{
  margin-bottom: 11rem;
}

.last\:mb-48:last-child{
  margin-bottom: 12rem;
}

.last\:mb-52:last-child{
  margin-bottom: 13rem;
}

.last\:mb-56:last-child{
  margin-bottom: 14rem;
}

.last\:mb-60:last-child{
  margin-bottom: 15rem;
}

.last\:mb-64:last-child{
  margin-bottom: 16rem;
}

.last\:mb-72:last-child{
  margin-bottom: 18rem;
}

.last\:mb-80:last-child{
  margin-bottom: 20rem;
}

.last\:mb-96:last-child{
  margin-bottom: 24rem;
}

.last\:mb-auto:last-child{
  margin-bottom: auto;
}

.last\:mb-px:last-child{
  margin-bottom: 1px;
}

.last\:mb-0\.5:last-child{
  margin-bottom: 0.125rem;
}

.last\:mb-1\.5:last-child{
  margin-bottom: 0.375rem;
}

.last\:mb-2\.5:last-child{
  margin-bottom: 0.625rem;
}

.last\:mb-3\.5:last-child{
  margin-bottom: 0.875rem;
}

.last\:-mb-0:last-child{
  margin-bottom: 0px;
}

.last\:-mb-1:last-child{
  margin-bottom: -0.25rem;
}

.last\:-mb-2:last-child{
  margin-bottom: -0.5rem;
}

.last\:-mb-3:last-child{
  margin-bottom: -0.75rem;
}

.last\:-mb-4:last-child{
  margin-bottom: -1rem;
}

.last\:-mb-5:last-child{
  margin-bottom: -1.25rem;
}

.last\:-mb-6:last-child{
  margin-bottom: -1.5rem;
}

.last\:-mb-7:last-child{
  margin-bottom: -1.75rem;
}

.last\:-mb-8:last-child{
  margin-bottom: -2rem;
}

.last\:-mb-9:last-child{
  margin-bottom: -2.25rem;
}

.last\:-mb-10:last-child{
  margin-bottom: -2.5rem;
}

.last\:-mb-11:last-child{
  margin-bottom: -2.75rem;
}

.last\:-mb-12:last-child{
  margin-bottom: -3rem;
}

.last\:-mb-14:last-child{
  margin-bottom: -3.5rem;
}

.last\:-mb-16:last-child{
  margin-bottom: -4rem;
}

.last\:-mb-20:last-child{
  margin-bottom: -5rem;
}

.last\:-mb-24:last-child{
  margin-bottom: -6rem;
}

.last\:-mb-28:last-child{
  margin-bottom: -7rem;
}

.last\:-mb-32:last-child{
  margin-bottom: -8rem;
}

.last\:-mb-36:last-child{
  margin-bottom: -9rem;
}

.last\:-mb-40:last-child{
  margin-bottom: -10rem;
}

.last\:-mb-44:last-child{
  margin-bottom: -11rem;
}

.last\:-mb-48:last-child{
  margin-bottom: -12rem;
}

.last\:-mb-52:last-child{
  margin-bottom: -13rem;
}

.last\:-mb-56:last-child{
  margin-bottom: -14rem;
}

.last\:-mb-60:last-child{
  margin-bottom: -15rem;
}

.last\:-mb-64:last-child{
  margin-bottom: -16rem;
}

.last\:-mb-72:last-child{
  margin-bottom: -18rem;
}

.last\:-mb-80:last-child{
  margin-bottom: -20rem;
}

.last\:-mb-96:last-child{
  margin-bottom: -24rem;
}

.last\:-mb-px:last-child{
  margin-bottom: -1px;
}

.last\:-mb-0\.5:last-child{
  margin-bottom: -0.125rem;
}

.last\:-mb-1\.5:last-child{
  margin-bottom: -0.375rem;
}

.last\:-mb-2\.5:last-child{
  margin-bottom: -0.625rem;
}

.last\:-mb-3\.5:last-child{
  margin-bottom: -0.875rem;
}

.last\:mb-neg1:last-child{
  margin-bottom: -.25rem;
}

.last\:mb-neg2:last-child{
  margin-bottom: -.5rem;
}

.last\:mb-neg4:last-child{
  margin-bottom: -1.0rem;
}

.last\:mb-neg6:last-child{
  margin-bottom: -1.5rem;
}

.last\:mb-neg12:last-child{
  margin-bottom: -3rem;
}

.last\:mb-neg20:last-child{
  margin-bottom: -5rem;
}

.last\:ml-0:last-child{
  margin-left: 0px;
}

.last\:ml-1:last-child{
  margin-left: 0.25rem;
}

.last\:ml-2:last-child{
  margin-left: 0.5rem;
}

.last\:ml-3:last-child{
  margin-left: 0.75rem;
}

.last\:ml-4:last-child{
  margin-left: 1rem;
}

.last\:ml-5:last-child{
  margin-left: 1.25rem;
}

.last\:ml-6:last-child{
  margin-left: 1.5rem;
}

.last\:ml-7:last-child{
  margin-left: 1.75rem;
}

.last\:ml-8:last-child{
  margin-left: 2rem;
}

.last\:ml-9:last-child{
  margin-left: 2.25rem;
}

.last\:ml-10:last-child{
  margin-left: 2.5rem;
}

.last\:ml-11:last-child{
  margin-left: 2.75rem;
}

.last\:ml-12:last-child{
  margin-left: 3rem;
}

.last\:ml-14:last-child{
  margin-left: 3.5rem;
}

.last\:ml-16:last-child{
  margin-left: 4rem;
}

.last\:ml-20:last-child{
  margin-left: 5rem;
}

.last\:ml-24:last-child{
  margin-left: 6rem;
}

.last\:ml-28:last-child{
  margin-left: 7rem;
}

.last\:ml-32:last-child{
  margin-left: 8rem;
}

.last\:ml-36:last-child{
  margin-left: 9rem;
}

.last\:ml-40:last-child{
  margin-left: 10rem;
}

.last\:ml-44:last-child{
  margin-left: 11rem;
}

.last\:ml-48:last-child{
  margin-left: 12rem;
}

.last\:ml-52:last-child{
  margin-left: 13rem;
}

.last\:ml-56:last-child{
  margin-left: 14rem;
}

.last\:ml-60:last-child{
  margin-left: 15rem;
}

.last\:ml-64:last-child{
  margin-left: 16rem;
}

.last\:ml-72:last-child{
  margin-left: 18rem;
}

.last\:ml-80:last-child{
  margin-left: 20rem;
}

.last\:ml-96:last-child{
  margin-left: 24rem;
}

.last\:ml-auto:last-child{
  margin-left: auto;
}

.last\:ml-px:last-child{
  margin-left: 1px;
}

.last\:ml-0\.5:last-child{
  margin-left: 0.125rem;
}

.last\:ml-1\.5:last-child{
  margin-left: 0.375rem;
}

.last\:ml-2\.5:last-child{
  margin-left: 0.625rem;
}

.last\:ml-3\.5:last-child{
  margin-left: 0.875rem;
}

.last\:-ml-0:last-child{
  margin-left: 0px;
}

.last\:-ml-1:last-child{
  margin-left: -0.25rem;
}

.last\:-ml-2:last-child{
  margin-left: -0.5rem;
}

.last\:-ml-3:last-child{
  margin-left: -0.75rem;
}

.last\:-ml-4:last-child{
  margin-left: -1rem;
}

.last\:-ml-5:last-child{
  margin-left: -1.25rem;
}

.last\:-ml-6:last-child{
  margin-left: -1.5rem;
}

.last\:-ml-7:last-child{
  margin-left: -1.75rem;
}

.last\:-ml-8:last-child{
  margin-left: -2rem;
}

.last\:-ml-9:last-child{
  margin-left: -2.25rem;
}

.last\:-ml-10:last-child{
  margin-left: -2.5rem;
}

.last\:-ml-11:last-child{
  margin-left: -2.75rem;
}

.last\:-ml-12:last-child{
  margin-left: -3rem;
}

.last\:-ml-14:last-child{
  margin-left: -3.5rem;
}

.last\:-ml-16:last-child{
  margin-left: -4rem;
}

.last\:-ml-20:last-child{
  margin-left: -5rem;
}

.last\:-ml-24:last-child{
  margin-left: -6rem;
}

.last\:-ml-28:last-child{
  margin-left: -7rem;
}

.last\:-ml-32:last-child{
  margin-left: -8rem;
}

.last\:-ml-36:last-child{
  margin-left: -9rem;
}

.last\:-ml-40:last-child{
  margin-left: -10rem;
}

.last\:-ml-44:last-child{
  margin-left: -11rem;
}

.last\:-ml-48:last-child{
  margin-left: -12rem;
}

.last\:-ml-52:last-child{
  margin-left: -13rem;
}

.last\:-ml-56:last-child{
  margin-left: -14rem;
}

.last\:-ml-60:last-child{
  margin-left: -15rem;
}

.last\:-ml-64:last-child{
  margin-left: -16rem;
}

.last\:-ml-72:last-child{
  margin-left: -18rem;
}

.last\:-ml-80:last-child{
  margin-left: -20rem;
}

.last\:-ml-96:last-child{
  margin-left: -24rem;
}

.last\:-ml-px:last-child{
  margin-left: -1px;
}

.last\:-ml-0\.5:last-child{
  margin-left: -0.125rem;
}

.last\:-ml-1\.5:last-child{
  margin-left: -0.375rem;
}

.last\:-ml-2\.5:last-child{
  margin-left: -0.625rem;
}

.last\:-ml-3\.5:last-child{
  margin-left: -0.875rem;
}

.last\:ml-neg1:last-child{
  margin-left: -.25rem;
}

.last\:ml-neg2:last-child{
  margin-left: -.5rem;
}

.last\:ml-neg4:last-child{
  margin-left: -1.0rem;
}

.last\:ml-neg6:last-child{
  margin-left: -1.5rem;
}

.last\:ml-neg12:last-child{
  margin-left: -3rem;
}

.last\:ml-neg20:last-child{
  margin-left: -5rem;
}

.hover\:mt-0:hover{
  margin-top: 0px;
}

.hover\:mt-1:hover{
  margin-top: 0.25rem;
}

.hover\:mt-2:hover{
  margin-top: 0.5rem;
}

.hover\:mt-3:hover{
  margin-top: 0.75rem;
}

.hover\:mt-4:hover{
  margin-top: 1rem;
}

.hover\:mt-5:hover{
  margin-top: 1.25rem;
}

.hover\:mt-6:hover{
  margin-top: 1.5rem;
}

.hover\:mt-7:hover{
  margin-top: 1.75rem;
}

.hover\:mt-8:hover{
  margin-top: 2rem;
}

.hover\:mt-9:hover{
  margin-top: 2.25rem;
}

.hover\:mt-10:hover{
  margin-top: 2.5rem;
}

.hover\:mt-11:hover{
  margin-top: 2.75rem;
}

.hover\:mt-12:hover{
  margin-top: 3rem;
}

.hover\:mt-14:hover{
  margin-top: 3.5rem;
}

.hover\:mt-16:hover{
  margin-top: 4rem;
}

.hover\:mt-20:hover{
  margin-top: 5rem;
}

.hover\:mt-24:hover{
  margin-top: 6rem;
}

.hover\:mt-28:hover{
  margin-top: 7rem;
}

.hover\:mt-32:hover{
  margin-top: 8rem;
}

.hover\:mt-36:hover{
  margin-top: 9rem;
}

.hover\:mt-40:hover{
  margin-top: 10rem;
}

.hover\:mt-44:hover{
  margin-top: 11rem;
}

.hover\:mt-48:hover{
  margin-top: 12rem;
}

.hover\:mt-52:hover{
  margin-top: 13rem;
}

.hover\:mt-56:hover{
  margin-top: 14rem;
}

.hover\:mt-60:hover{
  margin-top: 15rem;
}

.hover\:mt-64:hover{
  margin-top: 16rem;
}

.hover\:mt-72:hover{
  margin-top: 18rem;
}

.hover\:mt-80:hover{
  margin-top: 20rem;
}

.hover\:mt-96:hover{
  margin-top: 24rem;
}

.hover\:mt-auto:hover{
  margin-top: auto;
}

.hover\:mt-px:hover{
  margin-top: 1px;
}

.hover\:mt-0\.5:hover{
  margin-top: 0.125rem;
}

.hover\:mt-1\.5:hover{
  margin-top: 0.375rem;
}

.hover\:mt-2\.5:hover{
  margin-top: 0.625rem;
}

.hover\:mt-3\.5:hover{
  margin-top: 0.875rem;
}

.hover\:-mt-0:hover{
  margin-top: 0px;
}

.hover\:-mt-1:hover{
  margin-top: -0.25rem;
}

.hover\:-mt-2:hover{
  margin-top: -0.5rem;
}

.hover\:-mt-3:hover{
  margin-top: -0.75rem;
}

.hover\:-mt-4:hover{
  margin-top: -1rem;
}

.hover\:-mt-5:hover{
  margin-top: -1.25rem;
}

.hover\:-mt-6:hover{
  margin-top: -1.5rem;
}

.hover\:-mt-7:hover{
  margin-top: -1.75rem;
}

.hover\:-mt-8:hover{
  margin-top: -2rem;
}

.hover\:-mt-9:hover{
  margin-top: -2.25rem;
}

.hover\:-mt-10:hover{
  margin-top: -2.5rem;
}

.hover\:-mt-11:hover{
  margin-top: -2.75rem;
}

.hover\:-mt-12:hover{
  margin-top: -3rem;
}

.hover\:-mt-14:hover{
  margin-top: -3.5rem;
}

.hover\:-mt-16:hover{
  margin-top: -4rem;
}

.hover\:-mt-20:hover{
  margin-top: -5rem;
}

.hover\:-mt-24:hover{
  margin-top: -6rem;
}

.hover\:-mt-28:hover{
  margin-top: -7rem;
}

.hover\:-mt-32:hover{
  margin-top: -8rem;
}

.hover\:-mt-36:hover{
  margin-top: -9rem;
}

.hover\:-mt-40:hover{
  margin-top: -10rem;
}

.hover\:-mt-44:hover{
  margin-top: -11rem;
}

.hover\:-mt-48:hover{
  margin-top: -12rem;
}

.hover\:-mt-52:hover{
  margin-top: -13rem;
}

.hover\:-mt-56:hover{
  margin-top: -14rem;
}

.hover\:-mt-60:hover{
  margin-top: -15rem;
}

.hover\:-mt-64:hover{
  margin-top: -16rem;
}

.hover\:-mt-72:hover{
  margin-top: -18rem;
}

.hover\:-mt-80:hover{
  margin-top: -20rem;
}

.hover\:-mt-96:hover{
  margin-top: -24rem;
}

.hover\:-mt-px:hover{
  margin-top: -1px;
}

.hover\:-mt-0\.5:hover{
  margin-top: -0.125rem;
}

.hover\:-mt-1\.5:hover{
  margin-top: -0.375rem;
}

.hover\:-mt-2\.5:hover{
  margin-top: -0.625rem;
}

.hover\:-mt-3\.5:hover{
  margin-top: -0.875rem;
}

.hover\:mt-neg1:hover{
  margin-top: -.25rem;
}

.hover\:mt-neg2:hover{
  margin-top: -.5rem;
}

.hover\:mt-neg4:hover{
  margin-top: -1.0rem;
}

.hover\:mt-neg6:hover{
  margin-top: -1.5rem;
}

.hover\:mt-neg12:hover{
  margin-top: -3rem;
}

.hover\:mt-neg20:hover{
  margin-top: -5rem;
}

.hover\:mr-0:hover{
  margin-right: 0px;
}

.hover\:mr-1:hover{
  margin-right: 0.25rem;
}

.hover\:mr-2:hover{
  margin-right: 0.5rem;
}

.hover\:mr-3:hover{
  margin-right: 0.75rem;
}

.hover\:mr-4:hover{
  margin-right: 1rem;
}

.hover\:mr-5:hover{
  margin-right: 1.25rem;
}

.hover\:mr-6:hover{
  margin-right: 1.5rem;
}

.hover\:mr-7:hover{
  margin-right: 1.75rem;
}

.hover\:mr-8:hover{
  margin-right: 2rem;
}

.hover\:mr-9:hover{
  margin-right: 2.25rem;
}

.hover\:mr-10:hover{
  margin-right: 2.5rem;
}

.hover\:mr-11:hover{
  margin-right: 2.75rem;
}

.hover\:mr-12:hover{
  margin-right: 3rem;
}

.hover\:mr-14:hover{
  margin-right: 3.5rem;
}

.hover\:mr-16:hover{
  margin-right: 4rem;
}

.hover\:mr-20:hover{
  margin-right: 5rem;
}

.hover\:mr-24:hover{
  margin-right: 6rem;
}

.hover\:mr-28:hover{
  margin-right: 7rem;
}

.hover\:mr-32:hover{
  margin-right: 8rem;
}

.hover\:mr-36:hover{
  margin-right: 9rem;
}

.hover\:mr-40:hover{
  margin-right: 10rem;
}

.hover\:mr-44:hover{
  margin-right: 11rem;
}

.hover\:mr-48:hover{
  margin-right: 12rem;
}

.hover\:mr-52:hover{
  margin-right: 13rem;
}

.hover\:mr-56:hover{
  margin-right: 14rem;
}

.hover\:mr-60:hover{
  margin-right: 15rem;
}

.hover\:mr-64:hover{
  margin-right: 16rem;
}

.hover\:mr-72:hover{
  margin-right: 18rem;
}

.hover\:mr-80:hover{
  margin-right: 20rem;
}

.hover\:mr-96:hover{
  margin-right: 24rem;
}

.hover\:mr-auto:hover{
  margin-right: auto;
}

.hover\:mr-px:hover{
  margin-right: 1px;
}

.hover\:mr-0\.5:hover{
  margin-right: 0.125rem;
}

.hover\:mr-1\.5:hover{
  margin-right: 0.375rem;
}

.hover\:mr-2\.5:hover{
  margin-right: 0.625rem;
}

.hover\:mr-3\.5:hover{
  margin-right: 0.875rem;
}

.hover\:-mr-0:hover{
  margin-right: 0px;
}

.hover\:-mr-1:hover{
  margin-right: -0.25rem;
}

.hover\:-mr-2:hover{
  margin-right: -0.5rem;
}

.hover\:-mr-3:hover{
  margin-right: -0.75rem;
}

.hover\:-mr-4:hover{
  margin-right: -1rem;
}

.hover\:-mr-5:hover{
  margin-right: -1.25rem;
}

.hover\:-mr-6:hover{
  margin-right: -1.5rem;
}

.hover\:-mr-7:hover{
  margin-right: -1.75rem;
}

.hover\:-mr-8:hover{
  margin-right: -2rem;
}

.hover\:-mr-9:hover{
  margin-right: -2.25rem;
}

.hover\:-mr-10:hover{
  margin-right: -2.5rem;
}

.hover\:-mr-11:hover{
  margin-right: -2.75rem;
}

.hover\:-mr-12:hover{
  margin-right: -3rem;
}

.hover\:-mr-14:hover{
  margin-right: -3.5rem;
}

.hover\:-mr-16:hover{
  margin-right: -4rem;
}

.hover\:-mr-20:hover{
  margin-right: -5rem;
}

.hover\:-mr-24:hover{
  margin-right: -6rem;
}

.hover\:-mr-28:hover{
  margin-right: -7rem;
}

.hover\:-mr-32:hover{
  margin-right: -8rem;
}

.hover\:-mr-36:hover{
  margin-right: -9rem;
}

.hover\:-mr-40:hover{
  margin-right: -10rem;
}

.hover\:-mr-44:hover{
  margin-right: -11rem;
}

.hover\:-mr-48:hover{
  margin-right: -12rem;
}

.hover\:-mr-52:hover{
  margin-right: -13rem;
}

.hover\:-mr-56:hover{
  margin-right: -14rem;
}

.hover\:-mr-60:hover{
  margin-right: -15rem;
}

.hover\:-mr-64:hover{
  margin-right: -16rem;
}

.hover\:-mr-72:hover{
  margin-right: -18rem;
}

.hover\:-mr-80:hover{
  margin-right: -20rem;
}

.hover\:-mr-96:hover{
  margin-right: -24rem;
}

.hover\:-mr-px:hover{
  margin-right: -1px;
}

.hover\:-mr-0\.5:hover{
  margin-right: -0.125rem;
}

.hover\:-mr-1\.5:hover{
  margin-right: -0.375rem;
}

.hover\:-mr-2\.5:hover{
  margin-right: -0.625rem;
}

.hover\:-mr-3\.5:hover{
  margin-right: -0.875rem;
}

.hover\:mr-neg1:hover{
  margin-right: -.25rem;
}

.hover\:mr-neg2:hover{
  margin-right: -.5rem;
}

.hover\:mr-neg4:hover{
  margin-right: -1.0rem;
}

.hover\:mr-neg6:hover{
  margin-right: -1.5rem;
}

.hover\:mr-neg12:hover{
  margin-right: -3rem;
}

.hover\:mr-neg20:hover{
  margin-right: -5rem;
}

.hover\:mb-0:hover{
  margin-bottom: 0px;
}

.hover\:mb-1:hover{
  margin-bottom: 0.25rem;
}

.hover\:mb-2:hover{
  margin-bottom: 0.5rem;
}

.hover\:mb-3:hover{
  margin-bottom: 0.75rem;
}

.hover\:mb-4:hover{
  margin-bottom: 1rem;
}

.hover\:mb-5:hover{
  margin-bottom: 1.25rem;
}

.hover\:mb-6:hover{
  margin-bottom: 1.5rem;
}

.hover\:mb-7:hover{
  margin-bottom: 1.75rem;
}

.hover\:mb-8:hover{
  margin-bottom: 2rem;
}

.hover\:mb-9:hover{
  margin-bottom: 2.25rem;
}

.hover\:mb-10:hover{
  margin-bottom: 2.5rem;
}

.hover\:mb-11:hover{
  margin-bottom: 2.75rem;
}

.hover\:mb-12:hover{
  margin-bottom: 3rem;
}

.hover\:mb-14:hover{
  margin-bottom: 3.5rem;
}

.hover\:mb-16:hover{
  margin-bottom: 4rem;
}

.hover\:mb-20:hover{
  margin-bottom: 5rem;
}

.hover\:mb-24:hover{
  margin-bottom: 6rem;
}

.hover\:mb-28:hover{
  margin-bottom: 7rem;
}

.hover\:mb-32:hover{
  margin-bottom: 8rem;
}

.hover\:mb-36:hover{
  margin-bottom: 9rem;
}

.hover\:mb-40:hover{
  margin-bottom: 10rem;
}

.hover\:mb-44:hover{
  margin-bottom: 11rem;
}

.hover\:mb-48:hover{
  margin-bottom: 12rem;
}

.hover\:mb-52:hover{
  margin-bottom: 13rem;
}

.hover\:mb-56:hover{
  margin-bottom: 14rem;
}

.hover\:mb-60:hover{
  margin-bottom: 15rem;
}

.hover\:mb-64:hover{
  margin-bottom: 16rem;
}

.hover\:mb-72:hover{
  margin-bottom: 18rem;
}

.hover\:mb-80:hover{
  margin-bottom: 20rem;
}

.hover\:mb-96:hover{
  margin-bottom: 24rem;
}

.hover\:mb-auto:hover{
  margin-bottom: auto;
}

.hover\:mb-px:hover{
  margin-bottom: 1px;
}

.hover\:mb-0\.5:hover{
  margin-bottom: 0.125rem;
}

.hover\:mb-1\.5:hover{
  margin-bottom: 0.375rem;
}

.hover\:mb-2\.5:hover{
  margin-bottom: 0.625rem;
}

.hover\:mb-3\.5:hover{
  margin-bottom: 0.875rem;
}

.hover\:-mb-0:hover{
  margin-bottom: 0px;
}

.hover\:-mb-1:hover{
  margin-bottom: -0.25rem;
}

.hover\:-mb-2:hover{
  margin-bottom: -0.5rem;
}

.hover\:-mb-3:hover{
  margin-bottom: -0.75rem;
}

.hover\:-mb-4:hover{
  margin-bottom: -1rem;
}

.hover\:-mb-5:hover{
  margin-bottom: -1.25rem;
}

.hover\:-mb-6:hover{
  margin-bottom: -1.5rem;
}

.hover\:-mb-7:hover{
  margin-bottom: -1.75rem;
}

.hover\:-mb-8:hover{
  margin-bottom: -2rem;
}

.hover\:-mb-9:hover{
  margin-bottom: -2.25rem;
}

.hover\:-mb-10:hover{
  margin-bottom: -2.5rem;
}

.hover\:-mb-11:hover{
  margin-bottom: -2.75rem;
}

.hover\:-mb-12:hover{
  margin-bottom: -3rem;
}

.hover\:-mb-14:hover{
  margin-bottom: -3.5rem;
}

.hover\:-mb-16:hover{
  margin-bottom: -4rem;
}

.hover\:-mb-20:hover{
  margin-bottom: -5rem;
}

.hover\:-mb-24:hover{
  margin-bottom: -6rem;
}

.hover\:-mb-28:hover{
  margin-bottom: -7rem;
}

.hover\:-mb-32:hover{
  margin-bottom: -8rem;
}

.hover\:-mb-36:hover{
  margin-bottom: -9rem;
}

.hover\:-mb-40:hover{
  margin-bottom: -10rem;
}

.hover\:-mb-44:hover{
  margin-bottom: -11rem;
}

.hover\:-mb-48:hover{
  margin-bottom: -12rem;
}

.hover\:-mb-52:hover{
  margin-bottom: -13rem;
}

.hover\:-mb-56:hover{
  margin-bottom: -14rem;
}

.hover\:-mb-60:hover{
  margin-bottom: -15rem;
}

.hover\:-mb-64:hover{
  margin-bottom: -16rem;
}

.hover\:-mb-72:hover{
  margin-bottom: -18rem;
}

.hover\:-mb-80:hover{
  margin-bottom: -20rem;
}

.hover\:-mb-96:hover{
  margin-bottom: -24rem;
}

.hover\:-mb-px:hover{
  margin-bottom: -1px;
}

.hover\:-mb-0\.5:hover{
  margin-bottom: -0.125rem;
}

.hover\:-mb-1\.5:hover{
  margin-bottom: -0.375rem;
}

.hover\:-mb-2\.5:hover{
  margin-bottom: -0.625rem;
}

.hover\:-mb-3\.5:hover{
  margin-bottom: -0.875rem;
}

.hover\:mb-neg1:hover{
  margin-bottom: -.25rem;
}

.hover\:mb-neg2:hover{
  margin-bottom: -.5rem;
}

.hover\:mb-neg4:hover{
  margin-bottom: -1.0rem;
}

.hover\:mb-neg6:hover{
  margin-bottom: -1.5rem;
}

.hover\:mb-neg12:hover{
  margin-bottom: -3rem;
}

.hover\:mb-neg20:hover{
  margin-bottom: -5rem;
}

.hover\:ml-0:hover{
  margin-left: 0px;
}

.hover\:ml-1:hover{
  margin-left: 0.25rem;
}

.hover\:ml-2:hover{
  margin-left: 0.5rem;
}

.hover\:ml-3:hover{
  margin-left: 0.75rem;
}

.hover\:ml-4:hover{
  margin-left: 1rem;
}

.hover\:ml-5:hover{
  margin-left: 1.25rem;
}

.hover\:ml-6:hover{
  margin-left: 1.5rem;
}

.hover\:ml-7:hover{
  margin-left: 1.75rem;
}

.hover\:ml-8:hover{
  margin-left: 2rem;
}

.hover\:ml-9:hover{
  margin-left: 2.25rem;
}

.hover\:ml-10:hover{
  margin-left: 2.5rem;
}

.hover\:ml-11:hover{
  margin-left: 2.75rem;
}

.hover\:ml-12:hover{
  margin-left: 3rem;
}

.hover\:ml-14:hover{
  margin-left: 3.5rem;
}

.hover\:ml-16:hover{
  margin-left: 4rem;
}

.hover\:ml-20:hover{
  margin-left: 5rem;
}

.hover\:ml-24:hover{
  margin-left: 6rem;
}

.hover\:ml-28:hover{
  margin-left: 7rem;
}

.hover\:ml-32:hover{
  margin-left: 8rem;
}

.hover\:ml-36:hover{
  margin-left: 9rem;
}

.hover\:ml-40:hover{
  margin-left: 10rem;
}

.hover\:ml-44:hover{
  margin-left: 11rem;
}

.hover\:ml-48:hover{
  margin-left: 12rem;
}

.hover\:ml-52:hover{
  margin-left: 13rem;
}

.hover\:ml-56:hover{
  margin-left: 14rem;
}

.hover\:ml-60:hover{
  margin-left: 15rem;
}

.hover\:ml-64:hover{
  margin-left: 16rem;
}

.hover\:ml-72:hover{
  margin-left: 18rem;
}

.hover\:ml-80:hover{
  margin-left: 20rem;
}

.hover\:ml-96:hover{
  margin-left: 24rem;
}

.hover\:ml-auto:hover{
  margin-left: auto;
}

.hover\:ml-px:hover{
  margin-left: 1px;
}

.hover\:ml-0\.5:hover{
  margin-left: 0.125rem;
}

.hover\:ml-1\.5:hover{
  margin-left: 0.375rem;
}

.hover\:ml-2\.5:hover{
  margin-left: 0.625rem;
}

.hover\:ml-3\.5:hover{
  margin-left: 0.875rem;
}

.hover\:-ml-0:hover{
  margin-left: 0px;
}

.hover\:-ml-1:hover{
  margin-left: -0.25rem;
}

.hover\:-ml-2:hover{
  margin-left: -0.5rem;
}

.hover\:-ml-3:hover{
  margin-left: -0.75rem;
}

.hover\:-ml-4:hover{
  margin-left: -1rem;
}

.hover\:-ml-5:hover{
  margin-left: -1.25rem;
}

.hover\:-ml-6:hover{
  margin-left: -1.5rem;
}

.hover\:-ml-7:hover{
  margin-left: -1.75rem;
}

.hover\:-ml-8:hover{
  margin-left: -2rem;
}

.hover\:-ml-9:hover{
  margin-left: -2.25rem;
}

.hover\:-ml-10:hover{
  margin-left: -2.5rem;
}

.hover\:-ml-11:hover{
  margin-left: -2.75rem;
}

.hover\:-ml-12:hover{
  margin-left: -3rem;
}

.hover\:-ml-14:hover{
  margin-left: -3.5rem;
}

.hover\:-ml-16:hover{
  margin-left: -4rem;
}

.hover\:-ml-20:hover{
  margin-left: -5rem;
}

.hover\:-ml-24:hover{
  margin-left: -6rem;
}

.hover\:-ml-28:hover{
  margin-left: -7rem;
}

.hover\:-ml-32:hover{
  margin-left: -8rem;
}

.hover\:-ml-36:hover{
  margin-left: -9rem;
}

.hover\:-ml-40:hover{
  margin-left: -10rem;
}

.hover\:-ml-44:hover{
  margin-left: -11rem;
}

.hover\:-ml-48:hover{
  margin-left: -12rem;
}

.hover\:-ml-52:hover{
  margin-left: -13rem;
}

.hover\:-ml-56:hover{
  margin-left: -14rem;
}

.hover\:-ml-60:hover{
  margin-left: -15rem;
}

.hover\:-ml-64:hover{
  margin-left: -16rem;
}

.hover\:-ml-72:hover{
  margin-left: -18rem;
}

.hover\:-ml-80:hover{
  margin-left: -20rem;
}

.hover\:-ml-96:hover{
  margin-left: -24rem;
}

.hover\:-ml-px:hover{
  margin-left: -1px;
}

.hover\:-ml-0\.5:hover{
  margin-left: -0.125rem;
}

.hover\:-ml-1\.5:hover{
  margin-left: -0.375rem;
}

.hover\:-ml-2\.5:hover{
  margin-left: -0.625rem;
}

.hover\:-ml-3\.5:hover{
  margin-left: -0.875rem;
}

.hover\:ml-neg1:hover{
  margin-left: -.25rem;
}

.hover\:ml-neg2:hover{
  margin-left: -.5rem;
}

.hover\:ml-neg4:hover{
  margin-left: -1.0rem;
}

.hover\:ml-neg6:hover{
  margin-left: -1.5rem;
}

.hover\:ml-neg12:hover{
  margin-left: -3rem;
}

.hover\:ml-neg20:hover{
  margin-left: -5rem;
}

.focus\:mt-0:focus{
  margin-top: 0px;
}

.focus\:mt-1:focus{
  margin-top: 0.25rem;
}

.focus\:mt-2:focus{
  margin-top: 0.5rem;
}

.focus\:mt-3:focus{
  margin-top: 0.75rem;
}

.focus\:mt-4:focus{
  margin-top: 1rem;
}

.focus\:mt-5:focus{
  margin-top: 1.25rem;
}

.focus\:mt-6:focus{
  margin-top: 1.5rem;
}

.focus\:mt-7:focus{
  margin-top: 1.75rem;
}

.focus\:mt-8:focus{
  margin-top: 2rem;
}

.focus\:mt-9:focus{
  margin-top: 2.25rem;
}

.focus\:mt-10:focus{
  margin-top: 2.5rem;
}

.focus\:mt-11:focus{
  margin-top: 2.75rem;
}

.focus\:mt-12:focus{
  margin-top: 3rem;
}

.focus\:mt-14:focus{
  margin-top: 3.5rem;
}

.focus\:mt-16:focus{
  margin-top: 4rem;
}

.focus\:mt-20:focus{
  margin-top: 5rem;
}

.focus\:mt-24:focus{
  margin-top: 6rem;
}

.focus\:mt-28:focus{
  margin-top: 7rem;
}

.focus\:mt-32:focus{
  margin-top: 8rem;
}

.focus\:mt-36:focus{
  margin-top: 9rem;
}

.focus\:mt-40:focus{
  margin-top: 10rem;
}

.focus\:mt-44:focus{
  margin-top: 11rem;
}

.focus\:mt-48:focus{
  margin-top: 12rem;
}

.focus\:mt-52:focus{
  margin-top: 13rem;
}

.focus\:mt-56:focus{
  margin-top: 14rem;
}

.focus\:mt-60:focus{
  margin-top: 15rem;
}

.focus\:mt-64:focus{
  margin-top: 16rem;
}

.focus\:mt-72:focus{
  margin-top: 18rem;
}

.focus\:mt-80:focus{
  margin-top: 20rem;
}

.focus\:mt-96:focus{
  margin-top: 24rem;
}

.focus\:mt-auto:focus{
  margin-top: auto;
}

.focus\:mt-px:focus{
  margin-top: 1px;
}

.focus\:mt-0\.5:focus{
  margin-top: 0.125rem;
}

.focus\:mt-1\.5:focus{
  margin-top: 0.375rem;
}

.focus\:mt-2\.5:focus{
  margin-top: 0.625rem;
}

.focus\:mt-3\.5:focus{
  margin-top: 0.875rem;
}

.focus\:-mt-0:focus{
  margin-top: 0px;
}

.focus\:-mt-1:focus{
  margin-top: -0.25rem;
}

.focus\:-mt-2:focus{
  margin-top: -0.5rem;
}

.focus\:-mt-3:focus{
  margin-top: -0.75rem;
}

.focus\:-mt-4:focus{
  margin-top: -1rem;
}

.focus\:-mt-5:focus{
  margin-top: -1.25rem;
}

.focus\:-mt-6:focus{
  margin-top: -1.5rem;
}

.focus\:-mt-7:focus{
  margin-top: -1.75rem;
}

.focus\:-mt-8:focus{
  margin-top: -2rem;
}

.focus\:-mt-9:focus{
  margin-top: -2.25rem;
}

.focus\:-mt-10:focus{
  margin-top: -2.5rem;
}

.focus\:-mt-11:focus{
  margin-top: -2.75rem;
}

.focus\:-mt-12:focus{
  margin-top: -3rem;
}

.focus\:-mt-14:focus{
  margin-top: -3.5rem;
}

.focus\:-mt-16:focus{
  margin-top: -4rem;
}

.focus\:-mt-20:focus{
  margin-top: -5rem;
}

.focus\:-mt-24:focus{
  margin-top: -6rem;
}

.focus\:-mt-28:focus{
  margin-top: -7rem;
}

.focus\:-mt-32:focus{
  margin-top: -8rem;
}

.focus\:-mt-36:focus{
  margin-top: -9rem;
}

.focus\:-mt-40:focus{
  margin-top: -10rem;
}

.focus\:-mt-44:focus{
  margin-top: -11rem;
}

.focus\:-mt-48:focus{
  margin-top: -12rem;
}

.focus\:-mt-52:focus{
  margin-top: -13rem;
}

.focus\:-mt-56:focus{
  margin-top: -14rem;
}

.focus\:-mt-60:focus{
  margin-top: -15rem;
}

.focus\:-mt-64:focus{
  margin-top: -16rem;
}

.focus\:-mt-72:focus{
  margin-top: -18rem;
}

.focus\:-mt-80:focus{
  margin-top: -20rem;
}

.focus\:-mt-96:focus{
  margin-top: -24rem;
}

.focus\:-mt-px:focus{
  margin-top: -1px;
}

.focus\:-mt-0\.5:focus{
  margin-top: -0.125rem;
}

.focus\:-mt-1\.5:focus{
  margin-top: -0.375rem;
}

.focus\:-mt-2\.5:focus{
  margin-top: -0.625rem;
}

.focus\:-mt-3\.5:focus{
  margin-top: -0.875rem;
}

.focus\:mt-neg1:focus{
  margin-top: -.25rem;
}

.focus\:mt-neg2:focus{
  margin-top: -.5rem;
}

.focus\:mt-neg4:focus{
  margin-top: -1.0rem;
}

.focus\:mt-neg6:focus{
  margin-top: -1.5rem;
}

.focus\:mt-neg12:focus{
  margin-top: -3rem;
}

.focus\:mt-neg20:focus{
  margin-top: -5rem;
}

.focus\:mr-0:focus{
  margin-right: 0px;
}

.focus\:mr-1:focus{
  margin-right: 0.25rem;
}

.focus\:mr-2:focus{
  margin-right: 0.5rem;
}

.focus\:mr-3:focus{
  margin-right: 0.75rem;
}

.focus\:mr-4:focus{
  margin-right: 1rem;
}

.focus\:mr-5:focus{
  margin-right: 1.25rem;
}

.focus\:mr-6:focus{
  margin-right: 1.5rem;
}

.focus\:mr-7:focus{
  margin-right: 1.75rem;
}

.focus\:mr-8:focus{
  margin-right: 2rem;
}

.focus\:mr-9:focus{
  margin-right: 2.25rem;
}

.focus\:mr-10:focus{
  margin-right: 2.5rem;
}

.focus\:mr-11:focus{
  margin-right: 2.75rem;
}

.focus\:mr-12:focus{
  margin-right: 3rem;
}

.focus\:mr-14:focus{
  margin-right: 3.5rem;
}

.focus\:mr-16:focus{
  margin-right: 4rem;
}

.focus\:mr-20:focus{
  margin-right: 5rem;
}

.focus\:mr-24:focus{
  margin-right: 6rem;
}

.focus\:mr-28:focus{
  margin-right: 7rem;
}

.focus\:mr-32:focus{
  margin-right: 8rem;
}

.focus\:mr-36:focus{
  margin-right: 9rem;
}

.focus\:mr-40:focus{
  margin-right: 10rem;
}

.focus\:mr-44:focus{
  margin-right: 11rem;
}

.focus\:mr-48:focus{
  margin-right: 12rem;
}

.focus\:mr-52:focus{
  margin-right: 13rem;
}

.focus\:mr-56:focus{
  margin-right: 14rem;
}

.focus\:mr-60:focus{
  margin-right: 15rem;
}

.focus\:mr-64:focus{
  margin-right: 16rem;
}

.focus\:mr-72:focus{
  margin-right: 18rem;
}

.focus\:mr-80:focus{
  margin-right: 20rem;
}

.focus\:mr-96:focus{
  margin-right: 24rem;
}

.focus\:mr-auto:focus{
  margin-right: auto;
}

.focus\:mr-px:focus{
  margin-right: 1px;
}

.focus\:mr-0\.5:focus{
  margin-right: 0.125rem;
}

.focus\:mr-1\.5:focus{
  margin-right: 0.375rem;
}

.focus\:mr-2\.5:focus{
  margin-right: 0.625rem;
}

.focus\:mr-3\.5:focus{
  margin-right: 0.875rem;
}

.focus\:-mr-0:focus{
  margin-right: 0px;
}

.focus\:-mr-1:focus{
  margin-right: -0.25rem;
}

.focus\:-mr-2:focus{
  margin-right: -0.5rem;
}

.focus\:-mr-3:focus{
  margin-right: -0.75rem;
}

.focus\:-mr-4:focus{
  margin-right: -1rem;
}

.focus\:-mr-5:focus{
  margin-right: -1.25rem;
}

.focus\:-mr-6:focus{
  margin-right: -1.5rem;
}

.focus\:-mr-7:focus{
  margin-right: -1.75rem;
}

.focus\:-mr-8:focus{
  margin-right: -2rem;
}

.focus\:-mr-9:focus{
  margin-right: -2.25rem;
}

.focus\:-mr-10:focus{
  margin-right: -2.5rem;
}

.focus\:-mr-11:focus{
  margin-right: -2.75rem;
}

.focus\:-mr-12:focus{
  margin-right: -3rem;
}

.focus\:-mr-14:focus{
  margin-right: -3.5rem;
}

.focus\:-mr-16:focus{
  margin-right: -4rem;
}

.focus\:-mr-20:focus{
  margin-right: -5rem;
}

.focus\:-mr-24:focus{
  margin-right: -6rem;
}

.focus\:-mr-28:focus{
  margin-right: -7rem;
}

.focus\:-mr-32:focus{
  margin-right: -8rem;
}

.focus\:-mr-36:focus{
  margin-right: -9rem;
}

.focus\:-mr-40:focus{
  margin-right: -10rem;
}

.focus\:-mr-44:focus{
  margin-right: -11rem;
}

.focus\:-mr-48:focus{
  margin-right: -12rem;
}

.focus\:-mr-52:focus{
  margin-right: -13rem;
}

.focus\:-mr-56:focus{
  margin-right: -14rem;
}

.focus\:-mr-60:focus{
  margin-right: -15rem;
}

.focus\:-mr-64:focus{
  margin-right: -16rem;
}

.focus\:-mr-72:focus{
  margin-right: -18rem;
}

.focus\:-mr-80:focus{
  margin-right: -20rem;
}

.focus\:-mr-96:focus{
  margin-right: -24rem;
}

.focus\:-mr-px:focus{
  margin-right: -1px;
}

.focus\:-mr-0\.5:focus{
  margin-right: -0.125rem;
}

.focus\:-mr-1\.5:focus{
  margin-right: -0.375rem;
}

.focus\:-mr-2\.5:focus{
  margin-right: -0.625rem;
}

.focus\:-mr-3\.5:focus{
  margin-right: -0.875rem;
}

.focus\:mr-neg1:focus{
  margin-right: -.25rem;
}

.focus\:mr-neg2:focus{
  margin-right: -.5rem;
}

.focus\:mr-neg4:focus{
  margin-right: -1.0rem;
}

.focus\:mr-neg6:focus{
  margin-right: -1.5rem;
}

.focus\:mr-neg12:focus{
  margin-right: -3rem;
}

.focus\:mr-neg20:focus{
  margin-right: -5rem;
}

.focus\:mb-0:focus{
  margin-bottom: 0px;
}

.focus\:mb-1:focus{
  margin-bottom: 0.25rem;
}

.focus\:mb-2:focus{
  margin-bottom: 0.5rem;
}

.focus\:mb-3:focus{
  margin-bottom: 0.75rem;
}

.focus\:mb-4:focus{
  margin-bottom: 1rem;
}

.focus\:mb-5:focus{
  margin-bottom: 1.25rem;
}

.focus\:mb-6:focus{
  margin-bottom: 1.5rem;
}

.focus\:mb-7:focus{
  margin-bottom: 1.75rem;
}

.focus\:mb-8:focus{
  margin-bottom: 2rem;
}

.focus\:mb-9:focus{
  margin-bottom: 2.25rem;
}

.focus\:mb-10:focus{
  margin-bottom: 2.5rem;
}

.focus\:mb-11:focus{
  margin-bottom: 2.75rem;
}

.focus\:mb-12:focus{
  margin-bottom: 3rem;
}

.focus\:mb-14:focus{
  margin-bottom: 3.5rem;
}

.focus\:mb-16:focus{
  margin-bottom: 4rem;
}

.focus\:mb-20:focus{
  margin-bottom: 5rem;
}

.focus\:mb-24:focus{
  margin-bottom: 6rem;
}

.focus\:mb-28:focus{
  margin-bottom: 7rem;
}

.focus\:mb-32:focus{
  margin-bottom: 8rem;
}

.focus\:mb-36:focus{
  margin-bottom: 9rem;
}

.focus\:mb-40:focus{
  margin-bottom: 10rem;
}

.focus\:mb-44:focus{
  margin-bottom: 11rem;
}

.focus\:mb-48:focus{
  margin-bottom: 12rem;
}

.focus\:mb-52:focus{
  margin-bottom: 13rem;
}

.focus\:mb-56:focus{
  margin-bottom: 14rem;
}

.focus\:mb-60:focus{
  margin-bottom: 15rem;
}

.focus\:mb-64:focus{
  margin-bottom: 16rem;
}

.focus\:mb-72:focus{
  margin-bottom: 18rem;
}

.focus\:mb-80:focus{
  margin-bottom: 20rem;
}

.focus\:mb-96:focus{
  margin-bottom: 24rem;
}

.focus\:mb-auto:focus{
  margin-bottom: auto;
}

.focus\:mb-px:focus{
  margin-bottom: 1px;
}

.focus\:mb-0\.5:focus{
  margin-bottom: 0.125rem;
}

.focus\:mb-1\.5:focus{
  margin-bottom: 0.375rem;
}

.focus\:mb-2\.5:focus{
  margin-bottom: 0.625rem;
}

.focus\:mb-3\.5:focus{
  margin-bottom: 0.875rem;
}

.focus\:-mb-0:focus{
  margin-bottom: 0px;
}

.focus\:-mb-1:focus{
  margin-bottom: -0.25rem;
}

.focus\:-mb-2:focus{
  margin-bottom: -0.5rem;
}

.focus\:-mb-3:focus{
  margin-bottom: -0.75rem;
}

.focus\:-mb-4:focus{
  margin-bottom: -1rem;
}

.focus\:-mb-5:focus{
  margin-bottom: -1.25rem;
}

.focus\:-mb-6:focus{
  margin-bottom: -1.5rem;
}

.focus\:-mb-7:focus{
  margin-bottom: -1.75rem;
}

.focus\:-mb-8:focus{
  margin-bottom: -2rem;
}

.focus\:-mb-9:focus{
  margin-bottom: -2.25rem;
}

.focus\:-mb-10:focus{
  margin-bottom: -2.5rem;
}

.focus\:-mb-11:focus{
  margin-bottom: -2.75rem;
}

.focus\:-mb-12:focus{
  margin-bottom: -3rem;
}

.focus\:-mb-14:focus{
  margin-bottom: -3.5rem;
}

.focus\:-mb-16:focus{
  margin-bottom: -4rem;
}

.focus\:-mb-20:focus{
  margin-bottom: -5rem;
}

.focus\:-mb-24:focus{
  margin-bottom: -6rem;
}

.focus\:-mb-28:focus{
  margin-bottom: -7rem;
}

.focus\:-mb-32:focus{
  margin-bottom: -8rem;
}

.focus\:-mb-36:focus{
  margin-bottom: -9rem;
}

.focus\:-mb-40:focus{
  margin-bottom: -10rem;
}

.focus\:-mb-44:focus{
  margin-bottom: -11rem;
}

.focus\:-mb-48:focus{
  margin-bottom: -12rem;
}

.focus\:-mb-52:focus{
  margin-bottom: -13rem;
}

.focus\:-mb-56:focus{
  margin-bottom: -14rem;
}

.focus\:-mb-60:focus{
  margin-bottom: -15rem;
}

.focus\:-mb-64:focus{
  margin-bottom: -16rem;
}

.focus\:-mb-72:focus{
  margin-bottom: -18rem;
}

.focus\:-mb-80:focus{
  margin-bottom: -20rem;
}

.focus\:-mb-96:focus{
  margin-bottom: -24rem;
}

.focus\:-mb-px:focus{
  margin-bottom: -1px;
}

.focus\:-mb-0\.5:focus{
  margin-bottom: -0.125rem;
}

.focus\:-mb-1\.5:focus{
  margin-bottom: -0.375rem;
}

.focus\:-mb-2\.5:focus{
  margin-bottom: -0.625rem;
}

.focus\:-mb-3\.5:focus{
  margin-bottom: -0.875rem;
}

.focus\:mb-neg1:focus{
  margin-bottom: -.25rem;
}

.focus\:mb-neg2:focus{
  margin-bottom: -.5rem;
}

.focus\:mb-neg4:focus{
  margin-bottom: -1.0rem;
}

.focus\:mb-neg6:focus{
  margin-bottom: -1.5rem;
}

.focus\:mb-neg12:focus{
  margin-bottom: -3rem;
}

.focus\:mb-neg20:focus{
  margin-bottom: -5rem;
}

.focus\:ml-0:focus{
  margin-left: 0px;
}

.focus\:ml-1:focus{
  margin-left: 0.25rem;
}

.focus\:ml-2:focus{
  margin-left: 0.5rem;
}

.focus\:ml-3:focus{
  margin-left: 0.75rem;
}

.focus\:ml-4:focus{
  margin-left: 1rem;
}

.focus\:ml-5:focus{
  margin-left: 1.25rem;
}

.focus\:ml-6:focus{
  margin-left: 1.5rem;
}

.focus\:ml-7:focus{
  margin-left: 1.75rem;
}

.focus\:ml-8:focus{
  margin-left: 2rem;
}

.focus\:ml-9:focus{
  margin-left: 2.25rem;
}

.focus\:ml-10:focus{
  margin-left: 2.5rem;
}

.focus\:ml-11:focus{
  margin-left: 2.75rem;
}

.focus\:ml-12:focus{
  margin-left: 3rem;
}

.focus\:ml-14:focus{
  margin-left: 3.5rem;
}

.focus\:ml-16:focus{
  margin-left: 4rem;
}

.focus\:ml-20:focus{
  margin-left: 5rem;
}

.focus\:ml-24:focus{
  margin-left: 6rem;
}

.focus\:ml-28:focus{
  margin-left: 7rem;
}

.focus\:ml-32:focus{
  margin-left: 8rem;
}

.focus\:ml-36:focus{
  margin-left: 9rem;
}

.focus\:ml-40:focus{
  margin-left: 10rem;
}

.focus\:ml-44:focus{
  margin-left: 11rem;
}

.focus\:ml-48:focus{
  margin-left: 12rem;
}

.focus\:ml-52:focus{
  margin-left: 13rem;
}

.focus\:ml-56:focus{
  margin-left: 14rem;
}

.focus\:ml-60:focus{
  margin-left: 15rem;
}

.focus\:ml-64:focus{
  margin-left: 16rem;
}

.focus\:ml-72:focus{
  margin-left: 18rem;
}

.focus\:ml-80:focus{
  margin-left: 20rem;
}

.focus\:ml-96:focus{
  margin-left: 24rem;
}

.focus\:ml-auto:focus{
  margin-left: auto;
}

.focus\:ml-px:focus{
  margin-left: 1px;
}

.focus\:ml-0\.5:focus{
  margin-left: 0.125rem;
}

.focus\:ml-1\.5:focus{
  margin-left: 0.375rem;
}

.focus\:ml-2\.5:focus{
  margin-left: 0.625rem;
}

.focus\:ml-3\.5:focus{
  margin-left: 0.875rem;
}

.focus\:-ml-0:focus{
  margin-left: 0px;
}

.focus\:-ml-1:focus{
  margin-left: -0.25rem;
}

.focus\:-ml-2:focus{
  margin-left: -0.5rem;
}

.focus\:-ml-3:focus{
  margin-left: -0.75rem;
}

.focus\:-ml-4:focus{
  margin-left: -1rem;
}

.focus\:-ml-5:focus{
  margin-left: -1.25rem;
}

.focus\:-ml-6:focus{
  margin-left: -1.5rem;
}

.focus\:-ml-7:focus{
  margin-left: -1.75rem;
}

.focus\:-ml-8:focus{
  margin-left: -2rem;
}

.focus\:-ml-9:focus{
  margin-left: -2.25rem;
}

.focus\:-ml-10:focus{
  margin-left: -2.5rem;
}

.focus\:-ml-11:focus{
  margin-left: -2.75rem;
}

.focus\:-ml-12:focus{
  margin-left: -3rem;
}

.focus\:-ml-14:focus{
  margin-left: -3.5rem;
}

.focus\:-ml-16:focus{
  margin-left: -4rem;
}

.focus\:-ml-20:focus{
  margin-left: -5rem;
}

.focus\:-ml-24:focus{
  margin-left: -6rem;
}

.focus\:-ml-28:focus{
  margin-left: -7rem;
}

.focus\:-ml-32:focus{
  margin-left: -8rem;
}

.focus\:-ml-36:focus{
  margin-left: -9rem;
}

.focus\:-ml-40:focus{
  margin-left: -10rem;
}

.focus\:-ml-44:focus{
  margin-left: -11rem;
}

.focus\:-ml-48:focus{
  margin-left: -12rem;
}

.focus\:-ml-52:focus{
  margin-left: -13rem;
}

.focus\:-ml-56:focus{
  margin-left: -14rem;
}

.focus\:-ml-60:focus{
  margin-left: -15rem;
}

.focus\:-ml-64:focus{
  margin-left: -16rem;
}

.focus\:-ml-72:focus{
  margin-left: -18rem;
}

.focus\:-ml-80:focus{
  margin-left: -20rem;
}

.focus\:-ml-96:focus{
  margin-left: -24rem;
}

.focus\:-ml-px:focus{
  margin-left: -1px;
}

.focus\:-ml-0\.5:focus{
  margin-left: -0.125rem;
}

.focus\:-ml-1\.5:focus{
  margin-left: -0.375rem;
}

.focus\:-ml-2\.5:focus{
  margin-left: -0.625rem;
}

.focus\:-ml-3\.5:focus{
  margin-left: -0.875rem;
}

.focus\:ml-neg1:focus{
  margin-left: -.25rem;
}

.focus\:ml-neg2:focus{
  margin-left: -.5rem;
}

.focus\:ml-neg4:focus{
  margin-left: -1.0rem;
}

.focus\:ml-neg6:focus{
  margin-left: -1.5rem;
}

.focus\:ml-neg12:focus{
  margin-left: -3rem;
}

.focus\:ml-neg20:focus{
  margin-left: -5rem;
}

.first\:mt-0:first-child{
  margin-top: 0px;
}

.first\:mt-1:first-child{
  margin-top: 0.25rem;
}

.first\:mt-2:first-child{
  margin-top: 0.5rem;
}

.first\:mt-3:first-child{
  margin-top: 0.75rem;
}

.first\:mt-4:first-child{
  margin-top: 1rem;
}

.first\:mt-5:first-child{
  margin-top: 1.25rem;
}

.first\:mt-6:first-child{
  margin-top: 1.5rem;
}

.first\:mt-7:first-child{
  margin-top: 1.75rem;
}

.first\:mt-8:first-child{
  margin-top: 2rem;
}

.first\:mt-9:first-child{
  margin-top: 2.25rem;
}

.first\:mt-10:first-child{
  margin-top: 2.5rem;
}

.first\:mt-11:first-child{
  margin-top: 2.75rem;
}

.first\:mt-12:first-child{
  margin-top: 3rem;
}

.first\:mt-14:first-child{
  margin-top: 3.5rem;
}

.first\:mt-16:first-child{
  margin-top: 4rem;
}

.first\:mt-20:first-child{
  margin-top: 5rem;
}

.first\:mt-24:first-child{
  margin-top: 6rem;
}

.first\:mt-28:first-child{
  margin-top: 7rem;
}

.first\:mt-32:first-child{
  margin-top: 8rem;
}

.first\:mt-36:first-child{
  margin-top: 9rem;
}

.first\:mt-40:first-child{
  margin-top: 10rem;
}

.first\:mt-44:first-child{
  margin-top: 11rem;
}

.first\:mt-48:first-child{
  margin-top: 12rem;
}

.first\:mt-52:first-child{
  margin-top: 13rem;
}

.first\:mt-56:first-child{
  margin-top: 14rem;
}

.first\:mt-60:first-child{
  margin-top: 15rem;
}

.first\:mt-64:first-child{
  margin-top: 16rem;
}

.first\:mt-72:first-child{
  margin-top: 18rem;
}

.first\:mt-80:first-child{
  margin-top: 20rem;
}

.first\:mt-96:first-child{
  margin-top: 24rem;
}

.first\:mt-auto:first-child{
  margin-top: auto;
}

.first\:mt-px:first-child{
  margin-top: 1px;
}

.first\:mt-0\.5:first-child{
  margin-top: 0.125rem;
}

.first\:mt-1\.5:first-child{
  margin-top: 0.375rem;
}

.first\:mt-2\.5:first-child{
  margin-top: 0.625rem;
}

.first\:mt-3\.5:first-child{
  margin-top: 0.875rem;
}

.first\:-mt-0:first-child{
  margin-top: 0px;
}

.first\:-mt-1:first-child{
  margin-top: -0.25rem;
}

.first\:-mt-2:first-child{
  margin-top: -0.5rem;
}

.first\:-mt-3:first-child{
  margin-top: -0.75rem;
}

.first\:-mt-4:first-child{
  margin-top: -1rem;
}

.first\:-mt-5:first-child{
  margin-top: -1.25rem;
}

.first\:-mt-6:first-child{
  margin-top: -1.5rem;
}

.first\:-mt-7:first-child{
  margin-top: -1.75rem;
}

.first\:-mt-8:first-child{
  margin-top: -2rem;
}

.first\:-mt-9:first-child{
  margin-top: -2.25rem;
}

.first\:-mt-10:first-child{
  margin-top: -2.5rem;
}

.first\:-mt-11:first-child{
  margin-top: -2.75rem;
}

.first\:-mt-12:first-child{
  margin-top: -3rem;
}

.first\:-mt-14:first-child{
  margin-top: -3.5rem;
}

.first\:-mt-16:first-child{
  margin-top: -4rem;
}

.first\:-mt-20:first-child{
  margin-top: -5rem;
}

.first\:-mt-24:first-child{
  margin-top: -6rem;
}

.first\:-mt-28:first-child{
  margin-top: -7rem;
}

.first\:-mt-32:first-child{
  margin-top: -8rem;
}

.first\:-mt-36:first-child{
  margin-top: -9rem;
}

.first\:-mt-40:first-child{
  margin-top: -10rem;
}

.first\:-mt-44:first-child{
  margin-top: -11rem;
}

.first\:-mt-48:first-child{
  margin-top: -12rem;
}

.first\:-mt-52:first-child{
  margin-top: -13rem;
}

.first\:-mt-56:first-child{
  margin-top: -14rem;
}

.first\:-mt-60:first-child{
  margin-top: -15rem;
}

.first\:-mt-64:first-child{
  margin-top: -16rem;
}

.first\:-mt-72:first-child{
  margin-top: -18rem;
}

.first\:-mt-80:first-child{
  margin-top: -20rem;
}

.first\:-mt-96:first-child{
  margin-top: -24rem;
}

.first\:-mt-px:first-child{
  margin-top: -1px;
}

.first\:-mt-0\.5:first-child{
  margin-top: -0.125rem;
}

.first\:-mt-1\.5:first-child{
  margin-top: -0.375rem;
}

.first\:-mt-2\.5:first-child{
  margin-top: -0.625rem;
}

.first\:-mt-3\.5:first-child{
  margin-top: -0.875rem;
}

.first\:mt-neg1:first-child{
  margin-top: -.25rem;
}

.first\:mt-neg2:first-child{
  margin-top: -.5rem;
}

.first\:mt-neg4:first-child{
  margin-top: -1.0rem;
}

.first\:mt-neg6:first-child{
  margin-top: -1.5rem;
}

.first\:mt-neg12:first-child{
  margin-top: -3rem;
}

.first\:mt-neg20:first-child{
  margin-top: -5rem;
}

.first\:mr-0:first-child{
  margin-right: 0px;
}

.first\:mr-1:first-child{
  margin-right: 0.25rem;
}

.first\:mr-2:first-child{
  margin-right: 0.5rem;
}

.first\:mr-3:first-child{
  margin-right: 0.75rem;
}

.first\:mr-4:first-child{
  margin-right: 1rem;
}

.first\:mr-5:first-child{
  margin-right: 1.25rem;
}

.first\:mr-6:first-child{
  margin-right: 1.5rem;
}

.first\:mr-7:first-child{
  margin-right: 1.75rem;
}

.first\:mr-8:first-child{
  margin-right: 2rem;
}

.first\:mr-9:first-child{
  margin-right: 2.25rem;
}

.first\:mr-10:first-child{
  margin-right: 2.5rem;
}

.first\:mr-11:first-child{
  margin-right: 2.75rem;
}

.first\:mr-12:first-child{
  margin-right: 3rem;
}

.first\:mr-14:first-child{
  margin-right: 3.5rem;
}

.first\:mr-16:first-child{
  margin-right: 4rem;
}

.first\:mr-20:first-child{
  margin-right: 5rem;
}

.first\:mr-24:first-child{
  margin-right: 6rem;
}

.first\:mr-28:first-child{
  margin-right: 7rem;
}

.first\:mr-32:first-child{
  margin-right: 8rem;
}

.first\:mr-36:first-child{
  margin-right: 9rem;
}

.first\:mr-40:first-child{
  margin-right: 10rem;
}

.first\:mr-44:first-child{
  margin-right: 11rem;
}

.first\:mr-48:first-child{
  margin-right: 12rem;
}

.first\:mr-52:first-child{
  margin-right: 13rem;
}

.first\:mr-56:first-child{
  margin-right: 14rem;
}

.first\:mr-60:first-child{
  margin-right: 15rem;
}

.first\:mr-64:first-child{
  margin-right: 16rem;
}

.first\:mr-72:first-child{
  margin-right: 18rem;
}

.first\:mr-80:first-child{
  margin-right: 20rem;
}

.first\:mr-96:first-child{
  margin-right: 24rem;
}

.first\:mr-auto:first-child{
  margin-right: auto;
}

.first\:mr-px:first-child{
  margin-right: 1px;
}

.first\:mr-0\.5:first-child{
  margin-right: 0.125rem;
}

.first\:mr-1\.5:first-child{
  margin-right: 0.375rem;
}

.first\:mr-2\.5:first-child{
  margin-right: 0.625rem;
}

.first\:mr-3\.5:first-child{
  margin-right: 0.875rem;
}

.first\:-mr-0:first-child{
  margin-right: 0px;
}

.first\:-mr-1:first-child{
  margin-right: -0.25rem;
}

.first\:-mr-2:first-child{
  margin-right: -0.5rem;
}

.first\:-mr-3:first-child{
  margin-right: -0.75rem;
}

.first\:-mr-4:first-child{
  margin-right: -1rem;
}

.first\:-mr-5:first-child{
  margin-right: -1.25rem;
}

.first\:-mr-6:first-child{
  margin-right: -1.5rem;
}

.first\:-mr-7:first-child{
  margin-right: -1.75rem;
}

.first\:-mr-8:first-child{
  margin-right: -2rem;
}

.first\:-mr-9:first-child{
  margin-right: -2.25rem;
}

.first\:-mr-10:first-child{
  margin-right: -2.5rem;
}

.first\:-mr-11:first-child{
  margin-right: -2.75rem;
}

.first\:-mr-12:first-child{
  margin-right: -3rem;
}

.first\:-mr-14:first-child{
  margin-right: -3.5rem;
}

.first\:-mr-16:first-child{
  margin-right: -4rem;
}

.first\:-mr-20:first-child{
  margin-right: -5rem;
}

.first\:-mr-24:first-child{
  margin-right: -6rem;
}

.first\:-mr-28:first-child{
  margin-right: -7rem;
}

.first\:-mr-32:first-child{
  margin-right: -8rem;
}

.first\:-mr-36:first-child{
  margin-right: -9rem;
}

.first\:-mr-40:first-child{
  margin-right: -10rem;
}

.first\:-mr-44:first-child{
  margin-right: -11rem;
}

.first\:-mr-48:first-child{
  margin-right: -12rem;
}

.first\:-mr-52:first-child{
  margin-right: -13rem;
}

.first\:-mr-56:first-child{
  margin-right: -14rem;
}

.first\:-mr-60:first-child{
  margin-right: -15rem;
}

.first\:-mr-64:first-child{
  margin-right: -16rem;
}

.first\:-mr-72:first-child{
  margin-right: -18rem;
}

.first\:-mr-80:first-child{
  margin-right: -20rem;
}

.first\:-mr-96:first-child{
  margin-right: -24rem;
}

.first\:-mr-px:first-child{
  margin-right: -1px;
}

.first\:-mr-0\.5:first-child{
  margin-right: -0.125rem;
}

.first\:-mr-1\.5:first-child{
  margin-right: -0.375rem;
}

.first\:-mr-2\.5:first-child{
  margin-right: -0.625rem;
}

.first\:-mr-3\.5:first-child{
  margin-right: -0.875rem;
}

.first\:mr-neg1:first-child{
  margin-right: -.25rem;
}

.first\:mr-neg2:first-child{
  margin-right: -.5rem;
}

.first\:mr-neg4:first-child{
  margin-right: -1.0rem;
}

.first\:mr-neg6:first-child{
  margin-right: -1.5rem;
}

.first\:mr-neg12:first-child{
  margin-right: -3rem;
}

.first\:mr-neg20:first-child{
  margin-right: -5rem;
}

.first\:mb-0:first-child{
  margin-bottom: 0px;
}

.first\:mb-1:first-child{
  margin-bottom: 0.25rem;
}

.first\:mb-2:first-child{
  margin-bottom: 0.5rem;
}

.first\:mb-3:first-child{
  margin-bottom: 0.75rem;
}

.first\:mb-4:first-child{
  margin-bottom: 1rem;
}

.first\:mb-5:first-child{
  margin-bottom: 1.25rem;
}

.first\:mb-6:first-child{
  margin-bottom: 1.5rem;
}

.first\:mb-7:first-child{
  margin-bottom: 1.75rem;
}

.first\:mb-8:first-child{
  margin-bottom: 2rem;
}

.first\:mb-9:first-child{
  margin-bottom: 2.25rem;
}

.first\:mb-10:first-child{
  margin-bottom: 2.5rem;
}

.first\:mb-11:first-child{
  margin-bottom: 2.75rem;
}

.first\:mb-12:first-child{
  margin-bottom: 3rem;
}

.first\:mb-14:first-child{
  margin-bottom: 3.5rem;
}

.first\:mb-16:first-child{
  margin-bottom: 4rem;
}

.first\:mb-20:first-child{
  margin-bottom: 5rem;
}

.first\:mb-24:first-child{
  margin-bottom: 6rem;
}

.first\:mb-28:first-child{
  margin-bottom: 7rem;
}

.first\:mb-32:first-child{
  margin-bottom: 8rem;
}

.first\:mb-36:first-child{
  margin-bottom: 9rem;
}

.first\:mb-40:first-child{
  margin-bottom: 10rem;
}

.first\:mb-44:first-child{
  margin-bottom: 11rem;
}

.first\:mb-48:first-child{
  margin-bottom: 12rem;
}

.first\:mb-52:first-child{
  margin-bottom: 13rem;
}

.first\:mb-56:first-child{
  margin-bottom: 14rem;
}

.first\:mb-60:first-child{
  margin-bottom: 15rem;
}

.first\:mb-64:first-child{
  margin-bottom: 16rem;
}

.first\:mb-72:first-child{
  margin-bottom: 18rem;
}

.first\:mb-80:first-child{
  margin-bottom: 20rem;
}

.first\:mb-96:first-child{
  margin-bottom: 24rem;
}

.first\:mb-auto:first-child{
  margin-bottom: auto;
}

.first\:mb-px:first-child{
  margin-bottom: 1px;
}

.first\:mb-0\.5:first-child{
  margin-bottom: 0.125rem;
}

.first\:mb-1\.5:first-child{
  margin-bottom: 0.375rem;
}

.first\:mb-2\.5:first-child{
  margin-bottom: 0.625rem;
}

.first\:mb-3\.5:first-child{
  margin-bottom: 0.875rem;
}

.first\:-mb-0:first-child{
  margin-bottom: 0px;
}

.first\:-mb-1:first-child{
  margin-bottom: -0.25rem;
}

.first\:-mb-2:first-child{
  margin-bottom: -0.5rem;
}

.first\:-mb-3:first-child{
  margin-bottom: -0.75rem;
}

.first\:-mb-4:first-child{
  margin-bottom: -1rem;
}

.first\:-mb-5:first-child{
  margin-bottom: -1.25rem;
}

.first\:-mb-6:first-child{
  margin-bottom: -1.5rem;
}

.first\:-mb-7:first-child{
  margin-bottom: -1.75rem;
}

.first\:-mb-8:first-child{
  margin-bottom: -2rem;
}

.first\:-mb-9:first-child{
  margin-bottom: -2.25rem;
}

.first\:-mb-10:first-child{
  margin-bottom: -2.5rem;
}

.first\:-mb-11:first-child{
  margin-bottom: -2.75rem;
}

.first\:-mb-12:first-child{
  margin-bottom: -3rem;
}

.first\:-mb-14:first-child{
  margin-bottom: -3.5rem;
}

.first\:-mb-16:first-child{
  margin-bottom: -4rem;
}

.first\:-mb-20:first-child{
  margin-bottom: -5rem;
}

.first\:-mb-24:first-child{
  margin-bottom: -6rem;
}

.first\:-mb-28:first-child{
  margin-bottom: -7rem;
}

.first\:-mb-32:first-child{
  margin-bottom: -8rem;
}

.first\:-mb-36:first-child{
  margin-bottom: -9rem;
}

.first\:-mb-40:first-child{
  margin-bottom: -10rem;
}

.first\:-mb-44:first-child{
  margin-bottom: -11rem;
}

.first\:-mb-48:first-child{
  margin-bottom: -12rem;
}

.first\:-mb-52:first-child{
  margin-bottom: -13rem;
}

.first\:-mb-56:first-child{
  margin-bottom: -14rem;
}

.first\:-mb-60:first-child{
  margin-bottom: -15rem;
}

.first\:-mb-64:first-child{
  margin-bottom: -16rem;
}

.first\:-mb-72:first-child{
  margin-bottom: -18rem;
}

.first\:-mb-80:first-child{
  margin-bottom: -20rem;
}

.first\:-mb-96:first-child{
  margin-bottom: -24rem;
}

.first\:-mb-px:first-child{
  margin-bottom: -1px;
}

.first\:-mb-0\.5:first-child{
  margin-bottom: -0.125rem;
}

.first\:-mb-1\.5:first-child{
  margin-bottom: -0.375rem;
}

.first\:-mb-2\.5:first-child{
  margin-bottom: -0.625rem;
}

.first\:-mb-3\.5:first-child{
  margin-bottom: -0.875rem;
}

.first\:mb-neg1:first-child{
  margin-bottom: -.25rem;
}

.first\:mb-neg2:first-child{
  margin-bottom: -.5rem;
}

.first\:mb-neg4:first-child{
  margin-bottom: -1.0rem;
}

.first\:mb-neg6:first-child{
  margin-bottom: -1.5rem;
}

.first\:mb-neg12:first-child{
  margin-bottom: -3rem;
}

.first\:mb-neg20:first-child{
  margin-bottom: -5rem;
}

.first\:ml-0:first-child{
  margin-left: 0px;
}

.first\:ml-1:first-child{
  margin-left: 0.25rem;
}

.first\:ml-2:first-child{
  margin-left: 0.5rem;
}

.first\:ml-3:first-child{
  margin-left: 0.75rem;
}

.first\:ml-4:first-child{
  margin-left: 1rem;
}

.first\:ml-5:first-child{
  margin-left: 1.25rem;
}

.first\:ml-6:first-child{
  margin-left: 1.5rem;
}

.first\:ml-7:first-child{
  margin-left: 1.75rem;
}

.first\:ml-8:first-child{
  margin-left: 2rem;
}

.first\:ml-9:first-child{
  margin-left: 2.25rem;
}

.first\:ml-10:first-child{
  margin-left: 2.5rem;
}

.first\:ml-11:first-child{
  margin-left: 2.75rem;
}

.first\:ml-12:first-child{
  margin-left: 3rem;
}

.first\:ml-14:first-child{
  margin-left: 3.5rem;
}

.first\:ml-16:first-child{
  margin-left: 4rem;
}

.first\:ml-20:first-child{
  margin-left: 5rem;
}

.first\:ml-24:first-child{
  margin-left: 6rem;
}

.first\:ml-28:first-child{
  margin-left: 7rem;
}

.first\:ml-32:first-child{
  margin-left: 8rem;
}

.first\:ml-36:first-child{
  margin-left: 9rem;
}

.first\:ml-40:first-child{
  margin-left: 10rem;
}

.first\:ml-44:first-child{
  margin-left: 11rem;
}

.first\:ml-48:first-child{
  margin-left: 12rem;
}

.first\:ml-52:first-child{
  margin-left: 13rem;
}

.first\:ml-56:first-child{
  margin-left: 14rem;
}

.first\:ml-60:first-child{
  margin-left: 15rem;
}

.first\:ml-64:first-child{
  margin-left: 16rem;
}

.first\:ml-72:first-child{
  margin-left: 18rem;
}

.first\:ml-80:first-child{
  margin-left: 20rem;
}

.first\:ml-96:first-child{
  margin-left: 24rem;
}

.first\:ml-auto:first-child{
  margin-left: auto;
}

.first\:ml-px:first-child{
  margin-left: 1px;
}

.first\:ml-0\.5:first-child{
  margin-left: 0.125rem;
}

.first\:ml-1\.5:first-child{
  margin-left: 0.375rem;
}

.first\:ml-2\.5:first-child{
  margin-left: 0.625rem;
}

.first\:ml-3\.5:first-child{
  margin-left: 0.875rem;
}

.first\:-ml-0:first-child{
  margin-left: 0px;
}

.first\:-ml-1:first-child{
  margin-left: -0.25rem;
}

.first\:-ml-2:first-child{
  margin-left: -0.5rem;
}

.first\:-ml-3:first-child{
  margin-left: -0.75rem;
}

.first\:-ml-4:first-child{
  margin-left: -1rem;
}

.first\:-ml-5:first-child{
  margin-left: -1.25rem;
}

.first\:-ml-6:first-child{
  margin-left: -1.5rem;
}

.first\:-ml-7:first-child{
  margin-left: -1.75rem;
}

.first\:-ml-8:first-child{
  margin-left: -2rem;
}

.first\:-ml-9:first-child{
  margin-left: -2.25rem;
}

.first\:-ml-10:first-child{
  margin-left: -2.5rem;
}

.first\:-ml-11:first-child{
  margin-left: -2.75rem;
}

.first\:-ml-12:first-child{
  margin-left: -3rem;
}

.first\:-ml-14:first-child{
  margin-left: -3.5rem;
}

.first\:-ml-16:first-child{
  margin-left: -4rem;
}

.first\:-ml-20:first-child{
  margin-left: -5rem;
}

.first\:-ml-24:first-child{
  margin-left: -6rem;
}

.first\:-ml-28:first-child{
  margin-left: -7rem;
}

.first\:-ml-32:first-child{
  margin-left: -8rem;
}

.first\:-ml-36:first-child{
  margin-left: -9rem;
}

.first\:-ml-40:first-child{
  margin-left: -10rem;
}

.first\:-ml-44:first-child{
  margin-left: -11rem;
}

.first\:-ml-48:first-child{
  margin-left: -12rem;
}

.first\:-ml-52:first-child{
  margin-left: -13rem;
}

.first\:-ml-56:first-child{
  margin-left: -14rem;
}

.first\:-ml-60:first-child{
  margin-left: -15rem;
}

.first\:-ml-64:first-child{
  margin-left: -16rem;
}

.first\:-ml-72:first-child{
  margin-left: -18rem;
}

.first\:-ml-80:first-child{
  margin-left: -20rem;
}

.first\:-ml-96:first-child{
  margin-left: -24rem;
}

.first\:-ml-px:first-child{
  margin-left: -1px;
}

.first\:-ml-0\.5:first-child{
  margin-left: -0.125rem;
}

.first\:-ml-1\.5:first-child{
  margin-left: -0.375rem;
}

.first\:-ml-2\.5:first-child{
  margin-left: -0.625rem;
}

.first\:-ml-3\.5:first-child{
  margin-left: -0.875rem;
}

.first\:ml-neg1:first-child{
  margin-left: -.25rem;
}

.first\:ml-neg2:first-child{
  margin-left: -.5rem;
}

.first\:ml-neg4:first-child{
  margin-left: -1.0rem;
}

.first\:ml-neg6:first-child{
  margin-left: -1.5rem;
}

.first\:ml-neg12:first-child{
  margin-left: -3rem;
}

.first\:ml-neg20:first-child{
  margin-left: -5rem;
}

.last\:mt-0:last-child{
  margin-top: 0px;
}

.last\:mt-1:last-child{
  margin-top: 0.25rem;
}

.last\:mt-2:last-child{
  margin-top: 0.5rem;
}

.last\:mt-3:last-child{
  margin-top: 0.75rem;
}

.last\:mt-4:last-child{
  margin-top: 1rem;
}

.last\:mt-5:last-child{
  margin-top: 1.25rem;
}

.last\:mt-6:last-child{
  margin-top: 1.5rem;
}

.last\:mt-7:last-child{
  margin-top: 1.75rem;
}

.last\:mt-8:last-child{
  margin-top: 2rem;
}

.last\:mt-9:last-child{
  margin-top: 2.25rem;
}

.last\:mt-10:last-child{
  margin-top: 2.5rem;
}

.last\:mt-11:last-child{
  margin-top: 2.75rem;
}

.last\:mt-12:last-child{
  margin-top: 3rem;
}

.last\:mt-14:last-child{
  margin-top: 3.5rem;
}

.last\:mt-16:last-child{
  margin-top: 4rem;
}

.last\:mt-20:last-child{
  margin-top: 5rem;
}

.last\:mt-24:last-child{
  margin-top: 6rem;
}

.last\:mt-28:last-child{
  margin-top: 7rem;
}

.last\:mt-32:last-child{
  margin-top: 8rem;
}

.last\:mt-36:last-child{
  margin-top: 9rem;
}

.last\:mt-40:last-child{
  margin-top: 10rem;
}

.last\:mt-44:last-child{
  margin-top: 11rem;
}

.last\:mt-48:last-child{
  margin-top: 12rem;
}

.last\:mt-52:last-child{
  margin-top: 13rem;
}

.last\:mt-56:last-child{
  margin-top: 14rem;
}

.last\:mt-60:last-child{
  margin-top: 15rem;
}

.last\:mt-64:last-child{
  margin-top: 16rem;
}

.last\:mt-72:last-child{
  margin-top: 18rem;
}

.last\:mt-80:last-child{
  margin-top: 20rem;
}

.last\:mt-96:last-child{
  margin-top: 24rem;
}

.last\:mt-auto:last-child{
  margin-top: auto;
}

.last\:mt-px:last-child{
  margin-top: 1px;
}

.last\:mt-0\.5:last-child{
  margin-top: 0.125rem;
}

.last\:mt-1\.5:last-child{
  margin-top: 0.375rem;
}

.last\:mt-2\.5:last-child{
  margin-top: 0.625rem;
}

.last\:mt-3\.5:last-child{
  margin-top: 0.875rem;
}

.last\:-mt-0:last-child{
  margin-top: 0px;
}

.last\:-mt-1:last-child{
  margin-top: -0.25rem;
}

.last\:-mt-2:last-child{
  margin-top: -0.5rem;
}

.last\:-mt-3:last-child{
  margin-top: -0.75rem;
}

.last\:-mt-4:last-child{
  margin-top: -1rem;
}

.last\:-mt-5:last-child{
  margin-top: -1.25rem;
}

.last\:-mt-6:last-child{
  margin-top: -1.5rem;
}

.last\:-mt-7:last-child{
  margin-top: -1.75rem;
}

.last\:-mt-8:last-child{
  margin-top: -2rem;
}

.last\:-mt-9:last-child{
  margin-top: -2.25rem;
}

.last\:-mt-10:last-child{
  margin-top: -2.5rem;
}

.last\:-mt-11:last-child{
  margin-top: -2.75rem;
}

.last\:-mt-12:last-child{
  margin-top: -3rem;
}

.last\:-mt-14:last-child{
  margin-top: -3.5rem;
}

.last\:-mt-16:last-child{
  margin-top: -4rem;
}

.last\:-mt-20:last-child{
  margin-top: -5rem;
}

.last\:-mt-24:last-child{
  margin-top: -6rem;
}

.last\:-mt-28:last-child{
  margin-top: -7rem;
}

.last\:-mt-32:last-child{
  margin-top: -8rem;
}

.last\:-mt-36:last-child{
  margin-top: -9rem;
}

.last\:-mt-40:last-child{
  margin-top: -10rem;
}

.last\:-mt-44:last-child{
  margin-top: -11rem;
}

.last\:-mt-48:last-child{
  margin-top: -12rem;
}

.last\:-mt-52:last-child{
  margin-top: -13rem;
}

.last\:-mt-56:last-child{
  margin-top: -14rem;
}

.last\:-mt-60:last-child{
  margin-top: -15rem;
}

.last\:-mt-64:last-child{
  margin-top: -16rem;
}

.last\:-mt-72:last-child{
  margin-top: -18rem;
}

.last\:-mt-80:last-child{
  margin-top: -20rem;
}

.last\:-mt-96:last-child{
  margin-top: -24rem;
}

.last\:-mt-px:last-child{
  margin-top: -1px;
}

.last\:-mt-0\.5:last-child{
  margin-top: -0.125rem;
}

.last\:-mt-1\.5:last-child{
  margin-top: -0.375rem;
}

.last\:-mt-2\.5:last-child{
  margin-top: -0.625rem;
}

.last\:-mt-3\.5:last-child{
  margin-top: -0.875rem;
}

.last\:mt-neg1:last-child{
  margin-top: -.25rem;
}

.last\:mt-neg2:last-child{
  margin-top: -.5rem;
}

.last\:mt-neg4:last-child{
  margin-top: -1.0rem;
}

.last\:mt-neg6:last-child{
  margin-top: -1.5rem;
}

.last\:mt-neg12:last-child{
  margin-top: -3rem;
}

.last\:mt-neg20:last-child{
  margin-top: -5rem;
}

.last\:mr-0:last-child{
  margin-right: 0px;
}

.last\:mr-1:last-child{
  margin-right: 0.25rem;
}

.last\:mr-2:last-child{
  margin-right: 0.5rem;
}

.last\:mr-3:last-child{
  margin-right: 0.75rem;
}

.last\:mr-4:last-child{
  margin-right: 1rem;
}

.last\:mr-5:last-child{
  margin-right: 1.25rem;
}

.last\:mr-6:last-child{
  margin-right: 1.5rem;
}

.last\:mr-7:last-child{
  margin-right: 1.75rem;
}

.last\:mr-8:last-child{
  margin-right: 2rem;
}

.last\:mr-9:last-child{
  margin-right: 2.25rem;
}

.last\:mr-10:last-child{
  margin-right: 2.5rem;
}

.last\:mr-11:last-child{
  margin-right: 2.75rem;
}

.last\:mr-12:last-child{
  margin-right: 3rem;
}

.last\:mr-14:last-child{
  margin-right: 3.5rem;
}

.last\:mr-16:last-child{
  margin-right: 4rem;
}

.last\:mr-20:last-child{
  margin-right: 5rem;
}

.last\:mr-24:last-child{
  margin-right: 6rem;
}

.last\:mr-28:last-child{
  margin-right: 7rem;
}

.last\:mr-32:last-child{
  margin-right: 8rem;
}

.last\:mr-36:last-child{
  margin-right: 9rem;
}

.last\:mr-40:last-child{
  margin-right: 10rem;
}

.last\:mr-44:last-child{
  margin-right: 11rem;
}

.last\:mr-48:last-child{
  margin-right: 12rem;
}

.last\:mr-52:last-child{
  margin-right: 13rem;
}

.last\:mr-56:last-child{
  margin-right: 14rem;
}

.last\:mr-60:last-child{
  margin-right: 15rem;
}

.last\:mr-64:last-child{
  margin-right: 16rem;
}

.last\:mr-72:last-child{
  margin-right: 18rem;
}

.last\:mr-80:last-child{
  margin-right: 20rem;
}

.last\:mr-96:last-child{
  margin-right: 24rem;
}

.last\:mr-auto:last-child{
  margin-right: auto;
}

.last\:mr-px:last-child{
  margin-right: 1px;
}

.last\:mr-0\.5:last-child{
  margin-right: 0.125rem;
}

.last\:mr-1\.5:last-child{
  margin-right: 0.375rem;
}

.last\:mr-2\.5:last-child{
  margin-right: 0.625rem;
}

.last\:mr-3\.5:last-child{
  margin-right: 0.875rem;
}

.last\:-mr-0:last-child{
  margin-right: 0px;
}

.last\:-mr-1:last-child{
  margin-right: -0.25rem;
}

.last\:-mr-2:last-child{
  margin-right: -0.5rem;
}

.last\:-mr-3:last-child{
  margin-right: -0.75rem;
}

.last\:-mr-4:last-child{
  margin-right: -1rem;
}

.last\:-mr-5:last-child{
  margin-right: -1.25rem;
}

.last\:-mr-6:last-child{
  margin-right: -1.5rem;
}

.last\:-mr-7:last-child{
  margin-right: -1.75rem;
}

.last\:-mr-8:last-child{
  margin-right: -2rem;
}

.last\:-mr-9:last-child{
  margin-right: -2.25rem;
}

.last\:-mr-10:last-child{
  margin-right: -2.5rem;
}

.last\:-mr-11:last-child{
  margin-right: -2.75rem;
}

.last\:-mr-12:last-child{
  margin-right: -3rem;
}

.last\:-mr-14:last-child{
  margin-right: -3.5rem;
}

.last\:-mr-16:last-child{
  margin-right: -4rem;
}

.last\:-mr-20:last-child{
  margin-right: -5rem;
}

.last\:-mr-24:last-child{
  margin-right: -6rem;
}

.last\:-mr-28:last-child{
  margin-right: -7rem;
}

.last\:-mr-32:last-child{
  margin-right: -8rem;
}

.last\:-mr-36:last-child{
  margin-right: -9rem;
}

.last\:-mr-40:last-child{
  margin-right: -10rem;
}

.last\:-mr-44:last-child{
  margin-right: -11rem;
}

.last\:-mr-48:last-child{
  margin-right: -12rem;
}

.last\:-mr-52:last-child{
  margin-right: -13rem;
}

.last\:-mr-56:last-child{
  margin-right: -14rem;
}

.last\:-mr-60:last-child{
  margin-right: -15rem;
}

.last\:-mr-64:last-child{
  margin-right: -16rem;
}

.last\:-mr-72:last-child{
  margin-right: -18rem;
}

.last\:-mr-80:last-child{
  margin-right: -20rem;
}

.last\:-mr-96:last-child{
  margin-right: -24rem;
}

.last\:-mr-px:last-child{
  margin-right: -1px;
}

.last\:-mr-0\.5:last-child{
  margin-right: -0.125rem;
}

.last\:-mr-1\.5:last-child{
  margin-right: -0.375rem;
}

.last\:-mr-2\.5:last-child{
  margin-right: -0.625rem;
}

.last\:-mr-3\.5:last-child{
  margin-right: -0.875rem;
}

.last\:mr-neg1:last-child{
  margin-right: -.25rem;
}

.last\:mr-neg2:last-child{
  margin-right: -.5rem;
}

.last\:mr-neg4:last-child{
  margin-right: -1.0rem;
}

.last\:mr-neg6:last-child{
  margin-right: -1.5rem;
}

.last\:mr-neg12:last-child{
  margin-right: -3rem;
}

.last\:mr-neg20:last-child{
  margin-right: -5rem;
}

.last\:mb-0:last-child{
  margin-bottom: 0px;
}

.last\:mb-1:last-child{
  margin-bottom: 0.25rem;
}

.last\:mb-2:last-child{
  margin-bottom: 0.5rem;
}

.last\:mb-3:last-child{
  margin-bottom: 0.75rem;
}

.last\:mb-4:last-child{
  margin-bottom: 1rem;
}

.last\:mb-5:last-child{
  margin-bottom: 1.25rem;
}

.last\:mb-6:last-child{
  margin-bottom: 1.5rem;
}

.last\:mb-7:last-child{
  margin-bottom: 1.75rem;
}

.last\:mb-8:last-child{
  margin-bottom: 2rem;
}

.last\:mb-9:last-child{
  margin-bottom: 2.25rem;
}

.last\:mb-10:last-child{
  margin-bottom: 2.5rem;
}

.last\:mb-11:last-child{
  margin-bottom: 2.75rem;
}

.last\:mb-12:last-child{
  margin-bottom: 3rem;
}

.last\:mb-14:last-child{
  margin-bottom: 3.5rem;
}

.last\:mb-16:last-child{
  margin-bottom: 4rem;
}

.last\:mb-20:last-child{
  margin-bottom: 5rem;
}

.last\:mb-24:last-child{
  margin-bottom: 6rem;
}

.last\:mb-28:last-child{
  margin-bottom: 7rem;
}

.last\:mb-32:last-child{
  margin-bottom: 8rem;
}

.last\:mb-36:last-child{
  margin-bottom: 9rem;
}

.last\:mb-40:last-child{
  margin-bottom: 10rem;
}

.last\:mb-44:last-child{
  margin-bottom: 11rem;
}

.last\:mb-48:last-child{
  margin-bottom: 12rem;
}

.last\:mb-52:last-child{
  margin-bottom: 13rem;
}

.last\:mb-56:last-child{
  margin-bottom: 14rem;
}

.last\:mb-60:last-child{
  margin-bottom: 15rem;
}

.last\:mb-64:last-child{
  margin-bottom: 16rem;
}

.last\:mb-72:last-child{
  margin-bottom: 18rem;
}

.last\:mb-80:last-child{
  margin-bottom: 20rem;
}

.last\:mb-96:last-child{
  margin-bottom: 24rem;
}

.last\:mb-auto:last-child{
  margin-bottom: auto;
}

.last\:mb-px:last-child{
  margin-bottom: 1px;
}

.last\:mb-0\.5:last-child{
  margin-bottom: 0.125rem;
}

.last\:mb-1\.5:last-child{
  margin-bottom: 0.375rem;
}

.last\:mb-2\.5:last-child{
  margin-bottom: 0.625rem;
}

.last\:mb-3\.5:last-child{
  margin-bottom: 0.875rem;
}

.last\:-mb-0:last-child{
  margin-bottom: 0px;
}

.last\:-mb-1:last-child{
  margin-bottom: -0.25rem;
}

.last\:-mb-2:last-child{
  margin-bottom: -0.5rem;
}

.last\:-mb-3:last-child{
  margin-bottom: -0.75rem;
}

.last\:-mb-4:last-child{
  margin-bottom: -1rem;
}

.last\:-mb-5:last-child{
  margin-bottom: -1.25rem;
}

.last\:-mb-6:last-child{
  margin-bottom: -1.5rem;
}

.last\:-mb-7:last-child{
  margin-bottom: -1.75rem;
}

.last\:-mb-8:last-child{
  margin-bottom: -2rem;
}

.last\:-mb-9:last-child{
  margin-bottom: -2.25rem;
}

.last\:-mb-10:last-child{
  margin-bottom: -2.5rem;
}

.last\:-mb-11:last-child{
  margin-bottom: -2.75rem;
}

.last\:-mb-12:last-child{
  margin-bottom: -3rem;
}

.last\:-mb-14:last-child{
  margin-bottom: -3.5rem;
}

.last\:-mb-16:last-child{
  margin-bottom: -4rem;
}

.last\:-mb-20:last-child{
  margin-bottom: -5rem;
}

.last\:-mb-24:last-child{
  margin-bottom: -6rem;
}

.last\:-mb-28:last-child{
  margin-bottom: -7rem;
}

.last\:-mb-32:last-child{
  margin-bottom: -8rem;
}

.last\:-mb-36:last-child{
  margin-bottom: -9rem;
}

.last\:-mb-40:last-child{
  margin-bottom: -10rem;
}

.last\:-mb-44:last-child{
  margin-bottom: -11rem;
}

.last\:-mb-48:last-child{
  margin-bottom: -12rem;
}

.last\:-mb-52:last-child{
  margin-bottom: -13rem;
}

.last\:-mb-56:last-child{
  margin-bottom: -14rem;
}

.last\:-mb-60:last-child{
  margin-bottom: -15rem;
}

.last\:-mb-64:last-child{
  margin-bottom: -16rem;
}

.last\:-mb-72:last-child{
  margin-bottom: -18rem;
}

.last\:-mb-80:last-child{
  margin-bottom: -20rem;
}

.last\:-mb-96:last-child{
  margin-bottom: -24rem;
}

.last\:-mb-px:last-child{
  margin-bottom: -1px;
}

.last\:-mb-0\.5:last-child{
  margin-bottom: -0.125rem;
}

.last\:-mb-1\.5:last-child{
  margin-bottom: -0.375rem;
}

.last\:-mb-2\.5:last-child{
  margin-bottom: -0.625rem;
}

.last\:-mb-3\.5:last-child{
  margin-bottom: -0.875rem;
}

.last\:mb-neg1:last-child{
  margin-bottom: -.25rem;
}

.last\:mb-neg2:last-child{
  margin-bottom: -.5rem;
}

.last\:mb-neg4:last-child{
  margin-bottom: -1.0rem;
}

.last\:mb-neg6:last-child{
  margin-bottom: -1.5rem;
}

.last\:mb-neg12:last-child{
  margin-bottom: -3rem;
}

.last\:mb-neg20:last-child{
  margin-bottom: -5rem;
}

.last\:ml-0:last-child{
  margin-left: 0px;
}

.last\:ml-1:last-child{
  margin-left: 0.25rem;
}

.last\:ml-2:last-child{
  margin-left: 0.5rem;
}

.last\:ml-3:last-child{
  margin-left: 0.75rem;
}

.last\:ml-4:last-child{
  margin-left: 1rem;
}

.last\:ml-5:last-child{
  margin-left: 1.25rem;
}

.last\:ml-6:last-child{
  margin-left: 1.5rem;
}

.last\:ml-7:last-child{
  margin-left: 1.75rem;
}

.last\:ml-8:last-child{
  margin-left: 2rem;
}

.last\:ml-9:last-child{
  margin-left: 2.25rem;
}

.last\:ml-10:last-child{
  margin-left: 2.5rem;
}

.last\:ml-11:last-child{
  margin-left: 2.75rem;
}

.last\:ml-12:last-child{
  margin-left: 3rem;
}

.last\:ml-14:last-child{
  margin-left: 3.5rem;
}

.last\:ml-16:last-child{
  margin-left: 4rem;
}

.last\:ml-20:last-child{
  margin-left: 5rem;
}

.last\:ml-24:last-child{
  margin-left: 6rem;
}

.last\:ml-28:last-child{
  margin-left: 7rem;
}

.last\:ml-32:last-child{
  margin-left: 8rem;
}

.last\:ml-36:last-child{
  margin-left: 9rem;
}

.last\:ml-40:last-child{
  margin-left: 10rem;
}

.last\:ml-44:last-child{
  margin-left: 11rem;
}

.last\:ml-48:last-child{
  margin-left: 12rem;
}

.last\:ml-52:last-child{
  margin-left: 13rem;
}

.last\:ml-56:last-child{
  margin-left: 14rem;
}

.last\:ml-60:last-child{
  margin-left: 15rem;
}

.last\:ml-64:last-child{
  margin-left: 16rem;
}

.last\:ml-72:last-child{
  margin-left: 18rem;
}

.last\:ml-80:last-child{
  margin-left: 20rem;
}

.last\:ml-96:last-child{
  margin-left: 24rem;
}

.last\:ml-auto:last-child{
  margin-left: auto;
}

.last\:ml-px:last-child{
  margin-left: 1px;
}

.last\:ml-0\.5:last-child{
  margin-left: 0.125rem;
}

.last\:ml-1\.5:last-child{
  margin-left: 0.375rem;
}

.last\:ml-2\.5:last-child{
  margin-left: 0.625rem;
}

.last\:ml-3\.5:last-child{
  margin-left: 0.875rem;
}

.last\:-ml-0:last-child{
  margin-left: 0px;
}

.last\:-ml-1:last-child{
  margin-left: -0.25rem;
}

.last\:-ml-2:last-child{
  margin-left: -0.5rem;
}

.last\:-ml-3:last-child{
  margin-left: -0.75rem;
}

.last\:-ml-4:last-child{
  margin-left: -1rem;
}

.last\:-ml-5:last-child{
  margin-left: -1.25rem;
}

.last\:-ml-6:last-child{
  margin-left: -1.5rem;
}

.last\:-ml-7:last-child{
  margin-left: -1.75rem;
}

.last\:-ml-8:last-child{
  margin-left: -2rem;
}

.last\:-ml-9:last-child{
  margin-left: -2.25rem;
}

.last\:-ml-10:last-child{
  margin-left: -2.5rem;
}

.last\:-ml-11:last-child{
  margin-left: -2.75rem;
}

.last\:-ml-12:last-child{
  margin-left: -3rem;
}

.last\:-ml-14:last-child{
  margin-left: -3.5rem;
}

.last\:-ml-16:last-child{
  margin-left: -4rem;
}

.last\:-ml-20:last-child{
  margin-left: -5rem;
}

.last\:-ml-24:last-child{
  margin-left: -6rem;
}

.last\:-ml-28:last-child{
  margin-left: -7rem;
}

.last\:-ml-32:last-child{
  margin-left: -8rem;
}

.last\:-ml-36:last-child{
  margin-left: -9rem;
}

.last\:-ml-40:last-child{
  margin-left: -10rem;
}

.last\:-ml-44:last-child{
  margin-left: -11rem;
}

.last\:-ml-48:last-child{
  margin-left: -12rem;
}

.last\:-ml-52:last-child{
  margin-left: -13rem;
}

.last\:-ml-56:last-child{
  margin-left: -14rem;
}

.last\:-ml-60:last-child{
  margin-left: -15rem;
}

.last\:-ml-64:last-child{
  margin-left: -16rem;
}

.last\:-ml-72:last-child{
  margin-left: -18rem;
}

.last\:-ml-80:last-child{
  margin-left: -20rem;
}

.last\:-ml-96:last-child{
  margin-left: -24rem;
}

.last\:-ml-px:last-child{
  margin-left: -1px;
}

.last\:-ml-0\.5:last-child{
  margin-left: -0.125rem;
}

.last\:-ml-1\.5:last-child{
  margin-left: -0.375rem;
}

.last\:-ml-2\.5:last-child{
  margin-left: -0.625rem;
}

.last\:-ml-3\.5:last-child{
  margin-left: -0.875rem;
}

.last\:ml-neg1:last-child{
  margin-left: -.25rem;
}

.last\:ml-neg2:last-child{
  margin-left: -.5rem;
}

.last\:ml-neg4:last-child{
  margin-left: -1.0rem;
}

.last\:ml-neg6:last-child{
  margin-left: -1.5rem;
}

.last\:ml-neg12:last-child{
  margin-left: -3rem;
}

.last\:ml-neg20:last-child{
  margin-left: -5rem;
}

.box-border{
  box-sizing: border-box;
}

.box-content{
  box-sizing: content-box;
}

.block{
  display: block;
}

.inline-block{
  display: inline-block;
}

.inline{
  display: inline;
}

.flex{
  display: flex;
}

.inline-flex{
  display: inline-flex;
}

.table{
  display: table;
}

.inline-table{
  display: inline-table;
}

.table-caption{
  display: table-caption;
}

.table-cell{
  display: table-cell;
}

.table-column{
  display: table-column;
}

.table-column-group{
  display: table-column-group;
}

.table-footer-group{
  display: table-footer-group;
}

.table-header-group{
  display: table-header-group;
}

.table-row-group{
  display: table-row-group;
}

.table-row{
  display: table-row;
}

.flow-root{
  display: flow-root;
}

.grid{
  display: grid;
}

.inline-grid{
  display: inline-grid;
}

.contents{
  display: contents;
}

.list-item{
  display: list-item;
}

.hidden{
  display: none;
}

.h-0{
  height: 0px;
}

.h-1{
  height: 0.25rem;
}

.h-2{
  height: 0.5rem;
}

.h-3{
  height: 0.75rem;
}

.h-4{
  height: 1rem;
}

.h-5{
  height: 1.25rem;
}

.h-6{
  height: 1.5rem;
}

.h-7{
  height: 1.75rem;
}

.h-8{
  height: 2rem;
}

.h-9{
  height: 2.25rem;
}

.h-10{
  height: 2.5rem;
}

.h-11{
  height: 2.75rem;
}

.h-12{
  height: 3rem;
}

.h-14{
  height: 3.5rem;
}

.h-16{
  height: 4rem;
}

.h-20{
  height: 5rem;
}

.h-24{
  height: 6rem;
}

.h-28{
  height: 7rem;
}

.h-32{
  height: 8rem;
}

.h-36{
  height: 9rem;
}

.h-40{
  height: 10rem;
}

.h-44{
  height: 11rem;
}

.h-48{
  height: 12rem;
}

.h-52{
  height: 13rem;
}

.h-56{
  height: 14rem;
}

.h-60{
  height: 15rem;
}

.h-64{
  height: 16rem;
}

.h-72{
  height: 18rem;
}

.h-80{
  height: 20rem;
}

.h-96{
  height: 24rem;
}

.h-auto{
  height: auto;
}

.h-px{
  height: 1px;
}

.h-0\.5{
  height: 0.125rem;
}

.h-1\.5{
  height: 0.375rem;
}

.h-2\.5{
  height: 0.625rem;
}

.h-3\.5{
  height: 0.875rem;
}

.h-1\/2{
  height: 50%;
}

.h-1\/3{
  height: 33.333333%;
}

.h-2\/3{
  height: 66.666667%;
}

.h-1\/4{
  height: 25%;
}

.h-2\/4{
  height: 50%;
}

.h-3\/4{
  height: 75%;
}

.h-1\/5{
  height: 20%;
}

.h-2\/5{
  height: 40%;
}

.h-3\/5{
  height: 60%;
}

.h-4\/5{
  height: 80%;
}

.h-1\/6{
  height: 16.666667%;
}

.h-2\/6{
  height: 33.333333%;
}

.h-3\/6{
  height: 50%;
}

.h-4\/6{
  height: 66.666667%;
}

.h-5\/6{
  height: 83.333333%;
}

.h-full{
  height: 100%;
}

.h-screen{
  height: 100vh;
}

.max-h-0{
  max-height: 0;
}

.max-h-1{
  max-height: 0.25rem;
}

.max-h-2{
  max-height: 0.5rem;
}

.max-h-3{
  max-height: 0.75rem;
}

.max-h-4{
  max-height: 1rem;
}

.max-h-5{
  max-height: 1.25rem;
}

.max-h-6{
  max-height: 1.5rem;
}

.max-h-7{
  max-height: 1.75rem;
}

.max-h-8{
  max-height: 2rem;
}

.max-h-9{
  max-height: 2.25rem;
}

.max-h-10{
  max-height: 2.5rem;
}

.max-h-11{
  max-height: 2.75rem;
}

.max-h-12{
  max-height: 3rem;
}

.max-h-14{
  max-height: 3.5rem;
}

.max-h-16{
  max-height: 4rem;
}

.max-h-20{
  max-height: 5rem;
}

.max-h-24{
  max-height: 6rem;
}

.max-h-28{
  max-height: 7rem;
}

.max-h-32{
  max-height: 8rem;
}

.max-h-36{
  max-height: 9rem;
}

.max-h-40{
  max-height: 10rem;
}

.max-h-44{
  max-height: 11rem;
}

.max-h-48{
  max-height: 12rem;
}

.max-h-52{
  max-height: 13rem;
}

.max-h-56{
  max-height: 14rem;
}

.max-h-60{
  max-height: 15rem;
}

.max-h-64{
  max-height: 16rem;
}

.max-h-72{
  max-height: 18rem;
}

.max-h-80{
  max-height: 20rem;
}

.max-h-96{
  max-height: 24rem;
}

.max-h-px{
  max-height: 1px;
}

.max-h-0\.5{
  max-height: 0.125rem;
}

.max-h-1\.5{
  max-height: 0.375rem;
}

.max-h-2\.5{
  max-height: 0.625rem;
}

.max-h-3\.5{
  max-height: 0.875rem;
}

.max-h-full{
  max-height: 100%;
}

.max-h-screen{
  max-height: 100vh;
}

.min-h-0{
  min-height: 0px;
}

.min-h-full{
  min-height: 100%;
}

.min-h-screen{
  min-height: 100vh;
}

.w-0{
  width: 0px;
}

.w-1{
  width: 0.25rem;
}

.w-2{
  width: 0.5rem;
}

.w-3{
  width: 0.75rem;
}

.w-4{
  width: 1rem;
}

.w-5{
  width: 1.25rem;
}

.w-6{
  width: 1.5rem;
}

.w-7{
  width: 1.75rem;
}

.w-8{
  width: 2rem;
}

.w-9{
  width: 2.25rem;
}

.w-10{
  width: 2.5rem;
}

.w-11{
  width: 2.75rem;
}

.w-12{
  width: 3rem;
}

.w-14{
  width: 3.5rem;
}

.w-16{
  width: 4rem;
}

.w-20{
  width: 5rem;
}

.w-24{
  width: 6rem;
}

.w-28{
  width: 7rem;
}

.w-32{
  width: 8rem;
}

.w-36{
  width: 9rem;
}

.w-40{
  width: 10rem;
}

.w-44{
  width: 11rem;
}

.w-48{
  width: 12rem;
}

.w-52{
  width: 13rem;
}

.w-56{
  width: 14rem;
}

.w-60{
  width: 15rem;
}

.w-64{
  width: 16rem;
}

.w-72{
  width: 18rem;
}

.w-80{
  width: 20rem;
}

.w-96{
  width: 24rem;
}

.w-auto{
  width: auto;
}

.w-px{
  width: 1px;
}

.w-0\.5{
  width: 0.125rem;
}

.w-1\.5{
  width: 0.375rem;
}

.w-2\.5{
  width: 0.625rem;
}

.w-3\.5{
  width: 0.875rem;
}

.w-1\/2{
  width: 50%;
}

.w-1\/3{
  width: 33.333333%;
}

.w-2\/3{
  width: 66.666667%;
}

.w-1\/4{
  width: 25%;
}

.w-2\/4{
  width: 50%;
}

.w-3\/4{
  width: 75%;
}

.w-1\/5{
  width: 20%;
}

.w-2\/5{
  width: 40%;
}

.w-3\/5{
  width: 60%;
}

.w-4\/5{
  width: 80%;
}

.w-1\/6{
  width: 16.666667%;
}

.w-2\/6{
  width: 33.333333%;
}

.w-3\/6{
  width: 50%;
}

.w-4\/6{
  width: 66.666667%;
}

.w-5\/6{
  width: 83.333333%;
}

.w-1\/12{
  width: 8.333333%;
}

.w-2\/12{
  width: 16.666667%;
}

.w-3\/12{
  width: 25%;
}

.w-4\/12{
  width: 33.333333%;
}

.w-5\/12{
  width: 41.666667%;
}

.w-6\/12{
  width: 50%;
}

.w-7\/12{
  width: 58.333333%;
}

.w-8\/12{
  width: 66.666667%;
}

.w-9\/12{
  width: 75%;
}

.w-10\/12{
  width: 83.333333%;
}

.w-11\/12{
  width: 91.666667%;
}

.w-full{
  width: 100%;
}

.w-screen{
  width: 100vw;
}

.w-min{
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.w-max{
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.min-w-0{
  min-width: 0px;
}

.min-w-full{
  min-width: 100%;
}

.min-w-min{
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
}

.min-w-max{
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.max-w-0{
  max-width: 0rem;
}

.max-w-none{
  max-width: none;
}

.max-w-xs{
  max-width: 20rem;
}

.max-w-sm{
  max-width: 24rem;
}

.max-w-md{
  max-width: 28rem;
}

.max-w-lg{
  max-width: 32rem;
}

.max-w-xl{
  max-width: 36rem;
}

.max-w-2xl{
  max-width: 42rem;
}

.max-w-3xl{
  max-width: 48rem;
}

.max-w-4xl{
  max-width: 56rem;
}

.max-w-5xl{
  max-width: 64rem;
}

.max-w-6xl{
  max-width: 72rem;
}

.max-w-7xl{
  max-width: 80rem;
}

.max-w-full{
  max-width: 100%;
}

.max-w-min{
  max-width: -webkit-min-content;
  max-width: -moz-min-content;
  max-width: min-content;
}

.max-w-max{
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.max-w-prose{
  max-width: 65ch;
}

.max-w-1\/4{
  max-width: 25%;
}

.max-w-3\/10{
  max-width: 30%;
}

.max-w-1\/2{
  max-width: 50%;
}

.flex-1{
  flex: 1 1 0%;
}

.flex-auto{
  flex: 1 1 auto;
}

.flex-initial{
  flex: 0 1 auto;
}

.flex-none{
  flex: none;
}

.flex-shrink-0{
  flex-shrink: 0;
}

.flex-shrink{
  flex-shrink: 1;
}

.flex-grow-0{
  flex-grow: 0;
}

.flex-grow{
  flex-grow: 1;
}

.table-auto{
  table-layout: auto;
}

.table-fixed{
  table-layout: fixed;
}

.border-collapse{
  border-collapse: collapse;
}

.border-separate{
  border-collapse: separate;
}

.origin-center{
  transform-origin: center;
}

.origin-top{
  transform-origin: top;
}

.origin-top-right{
  transform-origin: top right;
}

.origin-right{
  transform-origin: right;
}

.origin-bottom-right{
  transform-origin: bottom right;
}

.origin-bottom{
  transform-origin: bottom;
}

.origin-bottom-left{
  transform-origin: bottom left;
}

.origin-left{
  transform-origin: left;
}

.origin-top-left{
  transform-origin: top left;
}

.transform{
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform-gpu{
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform-none{
  transform: none;
}

.translate-x-0{
  --tw-translate-x: 0px;
}

.translate-x-1{
  --tw-translate-x: 0.25rem;
}

.translate-x-2{
  --tw-translate-x: 0.5rem;
}

.translate-x-3{
  --tw-translate-x: 0.75rem;
}

.translate-x-4{
  --tw-translate-x: 1rem;
}

.translate-x-5{
  --tw-translate-x: 1.25rem;
}

.translate-x-6{
  --tw-translate-x: 1.5rem;
}

.translate-x-7{
  --tw-translate-x: 1.75rem;
}

.translate-x-8{
  --tw-translate-x: 2rem;
}

.translate-x-9{
  --tw-translate-x: 2.25rem;
}

.translate-x-10{
  --tw-translate-x: 2.5rem;
}

.translate-x-11{
  --tw-translate-x: 2.75rem;
}

.translate-x-12{
  --tw-translate-x: 3rem;
}

.translate-x-14{
  --tw-translate-x: 3.5rem;
}

.translate-x-16{
  --tw-translate-x: 4rem;
}

.translate-x-20{
  --tw-translate-x: 5rem;
}

.translate-x-24{
  --tw-translate-x: 6rem;
}

.translate-x-28{
  --tw-translate-x: 7rem;
}

.translate-x-32{
  --tw-translate-x: 8rem;
}

.translate-x-36{
  --tw-translate-x: 9rem;
}

.translate-x-40{
  --tw-translate-x: 10rem;
}

.translate-x-44{
  --tw-translate-x: 11rem;
}

.translate-x-48{
  --tw-translate-x: 12rem;
}

.translate-x-52{
  --tw-translate-x: 13rem;
}

.translate-x-56{
  --tw-translate-x: 14rem;
}

.translate-x-60{
  --tw-translate-x: 15rem;
}

.translate-x-64{
  --tw-translate-x: 16rem;
}

.translate-x-72{
  --tw-translate-x: 18rem;
}

.translate-x-80{
  --tw-translate-x: 20rem;
}

.translate-x-96{
  --tw-translate-x: 24rem;
}

.translate-x-px{
  --tw-translate-x: 1px;
}

.translate-x-0\.5{
  --tw-translate-x: 0.125rem;
}

.translate-x-1\.5{
  --tw-translate-x: 0.375rem;
}

.translate-x-2\.5{
  --tw-translate-x: 0.625rem;
}

.translate-x-3\.5{
  --tw-translate-x: 0.875rem;
}

.-translate-x-0{
  --tw-translate-x: 0px;
}

.-translate-x-1{
  --tw-translate-x: -0.25rem;
}

.-translate-x-2{
  --tw-translate-x: -0.5rem;
}

.-translate-x-3{
  --tw-translate-x: -0.75rem;
}

.-translate-x-4{
  --tw-translate-x: -1rem;
}

.-translate-x-5{
  --tw-translate-x: -1.25rem;
}

.-translate-x-6{
  --tw-translate-x: -1.5rem;
}

.-translate-x-7{
  --tw-translate-x: -1.75rem;
}

.-translate-x-8{
  --tw-translate-x: -2rem;
}

.-translate-x-9{
  --tw-translate-x: -2.25rem;
}

.-translate-x-10{
  --tw-translate-x: -2.5rem;
}

.-translate-x-11{
  --tw-translate-x: -2.75rem;
}

.-translate-x-12{
  --tw-translate-x: -3rem;
}

.-translate-x-14{
  --tw-translate-x: -3.5rem;
}

.-translate-x-16{
  --tw-translate-x: -4rem;
}

.-translate-x-20{
  --tw-translate-x: -5rem;
}

.-translate-x-24{
  --tw-translate-x: -6rem;
}

.-translate-x-28{
  --tw-translate-x: -7rem;
}

.-translate-x-32{
  --tw-translate-x: -8rem;
}

.-translate-x-36{
  --tw-translate-x: -9rem;
}

.-translate-x-40{
  --tw-translate-x: -10rem;
}

.-translate-x-44{
  --tw-translate-x: -11rem;
}

.-translate-x-48{
  --tw-translate-x: -12rem;
}

.-translate-x-52{
  --tw-translate-x: -13rem;
}

.-translate-x-56{
  --tw-translate-x: -14rem;
}

.-translate-x-60{
  --tw-translate-x: -15rem;
}

.-translate-x-64{
  --tw-translate-x: -16rem;
}

.-translate-x-72{
  --tw-translate-x: -18rem;
}

.-translate-x-80{
  --tw-translate-x: -20rem;
}

.-translate-x-96{
  --tw-translate-x: -24rem;
}

.-translate-x-px{
  --tw-translate-x: -1px;
}

.-translate-x-0\.5{
  --tw-translate-x: -0.125rem;
}

.-translate-x-1\.5{
  --tw-translate-x: -0.375rem;
}

.-translate-x-2\.5{
  --tw-translate-x: -0.625rem;
}

.-translate-x-3\.5{
  --tw-translate-x: -0.875rem;
}

.translate-x-1\/2{
  --tw-translate-x: 50%;
}

.translate-x-1\/3{
  --tw-translate-x: 33.333333%;
}

.translate-x-2\/3{
  --tw-translate-x: 66.666667%;
}

.translate-x-1\/4{
  --tw-translate-x: 25%;
}

.translate-x-2\/4{
  --tw-translate-x: 50%;
}

.translate-x-3\/4{
  --tw-translate-x: 75%;
}

.translate-x-full{
  --tw-translate-x: 100%;
}

.-translate-x-1\/2{
  --tw-translate-x: -50%;
}

.-translate-x-1\/3{
  --tw-translate-x: -33.333333%;
}

.-translate-x-2\/3{
  --tw-translate-x: -66.666667%;
}

.-translate-x-1\/4{
  --tw-translate-x: -25%;
}

.-translate-x-2\/4{
  --tw-translate-x: -50%;
}

.-translate-x-3\/4{
  --tw-translate-x: -75%;
}

.-translate-x-full{
  --tw-translate-x: -100%;
}

.translate-x-neg1\/2{
  --tw-translate-x: -50%;
}

.translate-x-neg3\/4{
  --tw-translate-x: -75%;
}

.translate-y-0{
  --tw-translate-y: 0px;
}

.translate-y-1{
  --tw-translate-y: 0.25rem;
}

.translate-y-2{
  --tw-translate-y: 0.5rem;
}

.translate-y-3{
  --tw-translate-y: 0.75rem;
}

.translate-y-4{
  --tw-translate-y: 1rem;
}

.translate-y-5{
  --tw-translate-y: 1.25rem;
}

.translate-y-6{
  --tw-translate-y: 1.5rem;
}

.translate-y-7{
  --tw-translate-y: 1.75rem;
}

.translate-y-8{
  --tw-translate-y: 2rem;
}

.translate-y-9{
  --tw-translate-y: 2.25rem;
}

.translate-y-10{
  --tw-translate-y: 2.5rem;
}

.translate-y-11{
  --tw-translate-y: 2.75rem;
}

.translate-y-12{
  --tw-translate-y: 3rem;
}

.translate-y-14{
  --tw-translate-y: 3.5rem;
}

.translate-y-16{
  --tw-translate-y: 4rem;
}

.translate-y-20{
  --tw-translate-y: 5rem;
}

.translate-y-24{
  --tw-translate-y: 6rem;
}

.translate-y-28{
  --tw-translate-y: 7rem;
}

.translate-y-32{
  --tw-translate-y: 8rem;
}

.translate-y-36{
  --tw-translate-y: 9rem;
}

.translate-y-40{
  --tw-translate-y: 10rem;
}

.translate-y-44{
  --tw-translate-y: 11rem;
}

.translate-y-48{
  --tw-translate-y: 12rem;
}

.translate-y-52{
  --tw-translate-y: 13rem;
}

.translate-y-56{
  --tw-translate-y: 14rem;
}

.translate-y-60{
  --tw-translate-y: 15rem;
}

.translate-y-64{
  --tw-translate-y: 16rem;
}

.translate-y-72{
  --tw-translate-y: 18rem;
}

.translate-y-80{
  --tw-translate-y: 20rem;
}

.translate-y-96{
  --tw-translate-y: 24rem;
}

.translate-y-px{
  --tw-translate-y: 1px;
}

.translate-y-0\.5{
  --tw-translate-y: 0.125rem;
}

.translate-y-1\.5{
  --tw-translate-y: 0.375rem;
}

.translate-y-2\.5{
  --tw-translate-y: 0.625rem;
}

.translate-y-3\.5{
  --tw-translate-y: 0.875rem;
}

.-translate-y-0{
  --tw-translate-y: 0px;
}

.-translate-y-1{
  --tw-translate-y: -0.25rem;
}

.-translate-y-2{
  --tw-translate-y: -0.5rem;
}

.-translate-y-3{
  --tw-translate-y: -0.75rem;
}

.-translate-y-4{
  --tw-translate-y: -1rem;
}

.-translate-y-5{
  --tw-translate-y: -1.25rem;
}

.-translate-y-6{
  --tw-translate-y: -1.5rem;
}

.-translate-y-7{
  --tw-translate-y: -1.75rem;
}

.-translate-y-8{
  --tw-translate-y: -2rem;
}

.-translate-y-9{
  --tw-translate-y: -2.25rem;
}

.-translate-y-10{
  --tw-translate-y: -2.5rem;
}

.-translate-y-11{
  --tw-translate-y: -2.75rem;
}

.-translate-y-12{
  --tw-translate-y: -3rem;
}

.-translate-y-14{
  --tw-translate-y: -3.5rem;
}

.-translate-y-16{
  --tw-translate-y: -4rem;
}

.-translate-y-20{
  --tw-translate-y: -5rem;
}

.-translate-y-24{
  --tw-translate-y: -6rem;
}

.-translate-y-28{
  --tw-translate-y: -7rem;
}

.-translate-y-32{
  --tw-translate-y: -8rem;
}

.-translate-y-36{
  --tw-translate-y: -9rem;
}

.-translate-y-40{
  --tw-translate-y: -10rem;
}

.-translate-y-44{
  --tw-translate-y: -11rem;
}

.-translate-y-48{
  --tw-translate-y: -12rem;
}

.-translate-y-52{
  --tw-translate-y: -13rem;
}

.-translate-y-56{
  --tw-translate-y: -14rem;
}

.-translate-y-60{
  --tw-translate-y: -15rem;
}

.-translate-y-64{
  --tw-translate-y: -16rem;
}

.-translate-y-72{
  --tw-translate-y: -18rem;
}

.-translate-y-80{
  --tw-translate-y: -20rem;
}

.-translate-y-96{
  --tw-translate-y: -24rem;
}

.-translate-y-px{
  --tw-translate-y: -1px;
}

.-translate-y-0\.5{
  --tw-translate-y: -0.125rem;
}

.-translate-y-1\.5{
  --tw-translate-y: -0.375rem;
}

.-translate-y-2\.5{
  --tw-translate-y: -0.625rem;
}

.-translate-y-3\.5{
  --tw-translate-y: -0.875rem;
}

.translate-y-1\/2{
  --tw-translate-y: 50%;
}

.translate-y-1\/3{
  --tw-translate-y: 33.333333%;
}

.translate-y-2\/3{
  --tw-translate-y: 66.666667%;
}

.translate-y-1\/4{
  --tw-translate-y: 25%;
}

.translate-y-2\/4{
  --tw-translate-y: 50%;
}

.translate-y-3\/4{
  --tw-translate-y: 75%;
}

.translate-y-full{
  --tw-translate-y: 100%;
}

.-translate-y-1\/2{
  --tw-translate-y: -50%;
}

.-translate-y-1\/3{
  --tw-translate-y: -33.333333%;
}

.-translate-y-2\/3{
  --tw-translate-y: -66.666667%;
}

.-translate-y-1\/4{
  --tw-translate-y: -25%;
}

.-translate-y-2\/4{
  --tw-translate-y: -50%;
}

.-translate-y-3\/4{
  --tw-translate-y: -75%;
}

.-translate-y-full{
  --tw-translate-y: -100%;
}

.translate-y-neg1\/2{
  --tw-translate-y: -50%;
}

.translate-y-neg3\/4{
  --tw-translate-y: -75%;
}

.hover\:translate-x-0:hover{
  --tw-translate-x: 0px;
}

.hover\:translate-x-1:hover{
  --tw-translate-x: 0.25rem;
}

.hover\:translate-x-2:hover{
  --tw-translate-x: 0.5rem;
}

.hover\:translate-x-3:hover{
  --tw-translate-x: 0.75rem;
}

.hover\:translate-x-4:hover{
  --tw-translate-x: 1rem;
}

.hover\:translate-x-5:hover{
  --tw-translate-x: 1.25rem;
}

.hover\:translate-x-6:hover{
  --tw-translate-x: 1.5rem;
}

.hover\:translate-x-7:hover{
  --tw-translate-x: 1.75rem;
}

.hover\:translate-x-8:hover{
  --tw-translate-x: 2rem;
}

.hover\:translate-x-9:hover{
  --tw-translate-x: 2.25rem;
}

.hover\:translate-x-10:hover{
  --tw-translate-x: 2.5rem;
}

.hover\:translate-x-11:hover{
  --tw-translate-x: 2.75rem;
}

.hover\:translate-x-12:hover{
  --tw-translate-x: 3rem;
}

.hover\:translate-x-14:hover{
  --tw-translate-x: 3.5rem;
}

.hover\:translate-x-16:hover{
  --tw-translate-x: 4rem;
}

.hover\:translate-x-20:hover{
  --tw-translate-x: 5rem;
}

.hover\:translate-x-24:hover{
  --tw-translate-x: 6rem;
}

.hover\:translate-x-28:hover{
  --tw-translate-x: 7rem;
}

.hover\:translate-x-32:hover{
  --tw-translate-x: 8rem;
}

.hover\:translate-x-36:hover{
  --tw-translate-x: 9rem;
}

.hover\:translate-x-40:hover{
  --tw-translate-x: 10rem;
}

.hover\:translate-x-44:hover{
  --tw-translate-x: 11rem;
}

.hover\:translate-x-48:hover{
  --tw-translate-x: 12rem;
}

.hover\:translate-x-52:hover{
  --tw-translate-x: 13rem;
}

.hover\:translate-x-56:hover{
  --tw-translate-x: 14rem;
}

.hover\:translate-x-60:hover{
  --tw-translate-x: 15rem;
}

.hover\:translate-x-64:hover{
  --tw-translate-x: 16rem;
}

.hover\:translate-x-72:hover{
  --tw-translate-x: 18rem;
}

.hover\:translate-x-80:hover{
  --tw-translate-x: 20rem;
}

.hover\:translate-x-96:hover{
  --tw-translate-x: 24rem;
}

.hover\:translate-x-px:hover{
  --tw-translate-x: 1px;
}

.hover\:translate-x-0\.5:hover{
  --tw-translate-x: 0.125rem;
}

.hover\:translate-x-1\.5:hover{
  --tw-translate-x: 0.375rem;
}

.hover\:translate-x-2\.5:hover{
  --tw-translate-x: 0.625rem;
}

.hover\:translate-x-3\.5:hover{
  --tw-translate-x: 0.875rem;
}

.hover\:-translate-x-0:hover{
  --tw-translate-x: 0px;
}

.hover\:-translate-x-1:hover{
  --tw-translate-x: -0.25rem;
}

.hover\:-translate-x-2:hover{
  --tw-translate-x: -0.5rem;
}

.hover\:-translate-x-3:hover{
  --tw-translate-x: -0.75rem;
}

.hover\:-translate-x-4:hover{
  --tw-translate-x: -1rem;
}

.hover\:-translate-x-5:hover{
  --tw-translate-x: -1.25rem;
}

.hover\:-translate-x-6:hover{
  --tw-translate-x: -1.5rem;
}

.hover\:-translate-x-7:hover{
  --tw-translate-x: -1.75rem;
}

.hover\:-translate-x-8:hover{
  --tw-translate-x: -2rem;
}

.hover\:-translate-x-9:hover{
  --tw-translate-x: -2.25rem;
}

.hover\:-translate-x-10:hover{
  --tw-translate-x: -2.5rem;
}

.hover\:-translate-x-11:hover{
  --tw-translate-x: -2.75rem;
}

.hover\:-translate-x-12:hover{
  --tw-translate-x: -3rem;
}

.hover\:-translate-x-14:hover{
  --tw-translate-x: -3.5rem;
}

.hover\:-translate-x-16:hover{
  --tw-translate-x: -4rem;
}

.hover\:-translate-x-20:hover{
  --tw-translate-x: -5rem;
}

.hover\:-translate-x-24:hover{
  --tw-translate-x: -6rem;
}

.hover\:-translate-x-28:hover{
  --tw-translate-x: -7rem;
}

.hover\:-translate-x-32:hover{
  --tw-translate-x: -8rem;
}

.hover\:-translate-x-36:hover{
  --tw-translate-x: -9rem;
}

.hover\:-translate-x-40:hover{
  --tw-translate-x: -10rem;
}

.hover\:-translate-x-44:hover{
  --tw-translate-x: -11rem;
}

.hover\:-translate-x-48:hover{
  --tw-translate-x: -12rem;
}

.hover\:-translate-x-52:hover{
  --tw-translate-x: -13rem;
}

.hover\:-translate-x-56:hover{
  --tw-translate-x: -14rem;
}

.hover\:-translate-x-60:hover{
  --tw-translate-x: -15rem;
}

.hover\:-translate-x-64:hover{
  --tw-translate-x: -16rem;
}

.hover\:-translate-x-72:hover{
  --tw-translate-x: -18rem;
}

.hover\:-translate-x-80:hover{
  --tw-translate-x: -20rem;
}

.hover\:-translate-x-96:hover{
  --tw-translate-x: -24rem;
}

.hover\:-translate-x-px:hover{
  --tw-translate-x: -1px;
}

.hover\:-translate-x-0\.5:hover{
  --tw-translate-x: -0.125rem;
}

.hover\:-translate-x-1\.5:hover{
  --tw-translate-x: -0.375rem;
}

.hover\:-translate-x-2\.5:hover{
  --tw-translate-x: -0.625rem;
}

.hover\:-translate-x-3\.5:hover{
  --tw-translate-x: -0.875rem;
}

.hover\:translate-x-1\/2:hover{
  --tw-translate-x: 50%;
}

.hover\:translate-x-1\/3:hover{
  --tw-translate-x: 33.333333%;
}

.hover\:translate-x-2\/3:hover{
  --tw-translate-x: 66.666667%;
}

.hover\:translate-x-1\/4:hover{
  --tw-translate-x: 25%;
}

.hover\:translate-x-2\/4:hover{
  --tw-translate-x: 50%;
}

.hover\:translate-x-3\/4:hover{
  --tw-translate-x: 75%;
}

.hover\:translate-x-full:hover{
  --tw-translate-x: 100%;
}

.hover\:-translate-x-1\/2:hover{
  --tw-translate-x: -50%;
}

.hover\:-translate-x-1\/3:hover{
  --tw-translate-x: -33.333333%;
}

.hover\:-translate-x-2\/3:hover{
  --tw-translate-x: -66.666667%;
}

.hover\:-translate-x-1\/4:hover{
  --tw-translate-x: -25%;
}

.hover\:-translate-x-2\/4:hover{
  --tw-translate-x: -50%;
}

.hover\:-translate-x-3\/4:hover{
  --tw-translate-x: -75%;
}

.hover\:-translate-x-full:hover{
  --tw-translate-x: -100%;
}

.hover\:translate-x-neg1\/2:hover{
  --tw-translate-x: -50%;
}

.hover\:translate-x-neg3\/4:hover{
  --tw-translate-x: -75%;
}

.hover\:translate-y-0:hover{
  --tw-translate-y: 0px;
}

.hover\:translate-y-1:hover{
  --tw-translate-y: 0.25rem;
}

.hover\:translate-y-2:hover{
  --tw-translate-y: 0.5rem;
}

.hover\:translate-y-3:hover{
  --tw-translate-y: 0.75rem;
}

.hover\:translate-y-4:hover{
  --tw-translate-y: 1rem;
}

.hover\:translate-y-5:hover{
  --tw-translate-y: 1.25rem;
}

.hover\:translate-y-6:hover{
  --tw-translate-y: 1.5rem;
}

.hover\:translate-y-7:hover{
  --tw-translate-y: 1.75rem;
}

.hover\:translate-y-8:hover{
  --tw-translate-y: 2rem;
}

.hover\:translate-y-9:hover{
  --tw-translate-y: 2.25rem;
}

.hover\:translate-y-10:hover{
  --tw-translate-y: 2.5rem;
}

.hover\:translate-y-11:hover{
  --tw-translate-y: 2.75rem;
}

.hover\:translate-y-12:hover{
  --tw-translate-y: 3rem;
}

.hover\:translate-y-14:hover{
  --tw-translate-y: 3.5rem;
}

.hover\:translate-y-16:hover{
  --tw-translate-y: 4rem;
}

.hover\:translate-y-20:hover{
  --tw-translate-y: 5rem;
}

.hover\:translate-y-24:hover{
  --tw-translate-y: 6rem;
}

.hover\:translate-y-28:hover{
  --tw-translate-y: 7rem;
}

.hover\:translate-y-32:hover{
  --tw-translate-y: 8rem;
}

.hover\:translate-y-36:hover{
  --tw-translate-y: 9rem;
}

.hover\:translate-y-40:hover{
  --tw-translate-y: 10rem;
}

.hover\:translate-y-44:hover{
  --tw-translate-y: 11rem;
}

.hover\:translate-y-48:hover{
  --tw-translate-y: 12rem;
}

.hover\:translate-y-52:hover{
  --tw-translate-y: 13rem;
}

.hover\:translate-y-56:hover{
  --tw-translate-y: 14rem;
}

.hover\:translate-y-60:hover{
  --tw-translate-y: 15rem;
}

.hover\:translate-y-64:hover{
  --tw-translate-y: 16rem;
}

.hover\:translate-y-72:hover{
  --tw-translate-y: 18rem;
}

.hover\:translate-y-80:hover{
  --tw-translate-y: 20rem;
}

.hover\:translate-y-96:hover{
  --tw-translate-y: 24rem;
}

.hover\:translate-y-px:hover{
  --tw-translate-y: 1px;
}

.hover\:translate-y-0\.5:hover{
  --tw-translate-y: 0.125rem;
}

.hover\:translate-y-1\.5:hover{
  --tw-translate-y: 0.375rem;
}

.hover\:translate-y-2\.5:hover{
  --tw-translate-y: 0.625rem;
}

.hover\:translate-y-3\.5:hover{
  --tw-translate-y: 0.875rem;
}

.hover\:-translate-y-0:hover{
  --tw-translate-y: 0px;
}

.hover\:-translate-y-1:hover{
  --tw-translate-y: -0.25rem;
}

.hover\:-translate-y-2:hover{
  --tw-translate-y: -0.5rem;
}

.hover\:-translate-y-3:hover{
  --tw-translate-y: -0.75rem;
}

.hover\:-translate-y-4:hover{
  --tw-translate-y: -1rem;
}

.hover\:-translate-y-5:hover{
  --tw-translate-y: -1.25rem;
}

.hover\:-translate-y-6:hover{
  --tw-translate-y: -1.5rem;
}

.hover\:-translate-y-7:hover{
  --tw-translate-y: -1.75rem;
}

.hover\:-translate-y-8:hover{
  --tw-translate-y: -2rem;
}

.hover\:-translate-y-9:hover{
  --tw-translate-y: -2.25rem;
}

.hover\:-translate-y-10:hover{
  --tw-translate-y: -2.5rem;
}

.hover\:-translate-y-11:hover{
  --tw-translate-y: -2.75rem;
}

.hover\:-translate-y-12:hover{
  --tw-translate-y: -3rem;
}

.hover\:-translate-y-14:hover{
  --tw-translate-y: -3.5rem;
}

.hover\:-translate-y-16:hover{
  --tw-translate-y: -4rem;
}

.hover\:-translate-y-20:hover{
  --tw-translate-y: -5rem;
}

.hover\:-translate-y-24:hover{
  --tw-translate-y: -6rem;
}

.hover\:-translate-y-28:hover{
  --tw-translate-y: -7rem;
}

.hover\:-translate-y-32:hover{
  --tw-translate-y: -8rem;
}

.hover\:-translate-y-36:hover{
  --tw-translate-y: -9rem;
}

.hover\:-translate-y-40:hover{
  --tw-translate-y: -10rem;
}

.hover\:-translate-y-44:hover{
  --tw-translate-y: -11rem;
}

.hover\:-translate-y-48:hover{
  --tw-translate-y: -12rem;
}

.hover\:-translate-y-52:hover{
  --tw-translate-y: -13rem;
}

.hover\:-translate-y-56:hover{
  --tw-translate-y: -14rem;
}

.hover\:-translate-y-60:hover{
  --tw-translate-y: -15rem;
}

.hover\:-translate-y-64:hover{
  --tw-translate-y: -16rem;
}

.hover\:-translate-y-72:hover{
  --tw-translate-y: -18rem;
}

.hover\:-translate-y-80:hover{
  --tw-translate-y: -20rem;
}

.hover\:-translate-y-96:hover{
  --tw-translate-y: -24rem;
}

.hover\:-translate-y-px:hover{
  --tw-translate-y: -1px;
}

.hover\:-translate-y-0\.5:hover{
  --tw-translate-y: -0.125rem;
}

.hover\:-translate-y-1\.5:hover{
  --tw-translate-y: -0.375rem;
}

.hover\:-translate-y-2\.5:hover{
  --tw-translate-y: -0.625rem;
}

.hover\:-translate-y-3\.5:hover{
  --tw-translate-y: -0.875rem;
}

.hover\:translate-y-1\/2:hover{
  --tw-translate-y: 50%;
}

.hover\:translate-y-1\/3:hover{
  --tw-translate-y: 33.333333%;
}

.hover\:translate-y-2\/3:hover{
  --tw-translate-y: 66.666667%;
}

.hover\:translate-y-1\/4:hover{
  --tw-translate-y: 25%;
}

.hover\:translate-y-2\/4:hover{
  --tw-translate-y: 50%;
}

.hover\:translate-y-3\/4:hover{
  --tw-translate-y: 75%;
}

.hover\:translate-y-full:hover{
  --tw-translate-y: 100%;
}

.hover\:-translate-y-1\/2:hover{
  --tw-translate-y: -50%;
}

.hover\:-translate-y-1\/3:hover{
  --tw-translate-y: -33.333333%;
}

.hover\:-translate-y-2\/3:hover{
  --tw-translate-y: -66.666667%;
}

.hover\:-translate-y-1\/4:hover{
  --tw-translate-y: -25%;
}

.hover\:-translate-y-2\/4:hover{
  --tw-translate-y: -50%;
}

.hover\:-translate-y-3\/4:hover{
  --tw-translate-y: -75%;
}

.hover\:-translate-y-full:hover{
  --tw-translate-y: -100%;
}

.hover\:translate-y-neg1\/2:hover{
  --tw-translate-y: -50%;
}

.hover\:translate-y-neg3\/4:hover{
  --tw-translate-y: -75%;
}

.focus\:translate-x-0:focus{
  --tw-translate-x: 0px;
}

.focus\:translate-x-1:focus{
  --tw-translate-x: 0.25rem;
}

.focus\:translate-x-2:focus{
  --tw-translate-x: 0.5rem;
}

.focus\:translate-x-3:focus{
  --tw-translate-x: 0.75rem;
}

.focus\:translate-x-4:focus{
  --tw-translate-x: 1rem;
}

.focus\:translate-x-5:focus{
  --tw-translate-x: 1.25rem;
}

.focus\:translate-x-6:focus{
  --tw-translate-x: 1.5rem;
}

.focus\:translate-x-7:focus{
  --tw-translate-x: 1.75rem;
}

.focus\:translate-x-8:focus{
  --tw-translate-x: 2rem;
}

.focus\:translate-x-9:focus{
  --tw-translate-x: 2.25rem;
}

.focus\:translate-x-10:focus{
  --tw-translate-x: 2.5rem;
}

.focus\:translate-x-11:focus{
  --tw-translate-x: 2.75rem;
}

.focus\:translate-x-12:focus{
  --tw-translate-x: 3rem;
}

.focus\:translate-x-14:focus{
  --tw-translate-x: 3.5rem;
}

.focus\:translate-x-16:focus{
  --tw-translate-x: 4rem;
}

.focus\:translate-x-20:focus{
  --tw-translate-x: 5rem;
}

.focus\:translate-x-24:focus{
  --tw-translate-x: 6rem;
}

.focus\:translate-x-28:focus{
  --tw-translate-x: 7rem;
}

.focus\:translate-x-32:focus{
  --tw-translate-x: 8rem;
}

.focus\:translate-x-36:focus{
  --tw-translate-x: 9rem;
}

.focus\:translate-x-40:focus{
  --tw-translate-x: 10rem;
}

.focus\:translate-x-44:focus{
  --tw-translate-x: 11rem;
}

.focus\:translate-x-48:focus{
  --tw-translate-x: 12rem;
}

.focus\:translate-x-52:focus{
  --tw-translate-x: 13rem;
}

.focus\:translate-x-56:focus{
  --tw-translate-x: 14rem;
}

.focus\:translate-x-60:focus{
  --tw-translate-x: 15rem;
}

.focus\:translate-x-64:focus{
  --tw-translate-x: 16rem;
}

.focus\:translate-x-72:focus{
  --tw-translate-x: 18rem;
}

.focus\:translate-x-80:focus{
  --tw-translate-x: 20rem;
}

.focus\:translate-x-96:focus{
  --tw-translate-x: 24rem;
}

.focus\:translate-x-px:focus{
  --tw-translate-x: 1px;
}

.focus\:translate-x-0\.5:focus{
  --tw-translate-x: 0.125rem;
}

.focus\:translate-x-1\.5:focus{
  --tw-translate-x: 0.375rem;
}

.focus\:translate-x-2\.5:focus{
  --tw-translate-x: 0.625rem;
}

.focus\:translate-x-3\.5:focus{
  --tw-translate-x: 0.875rem;
}

.focus\:-translate-x-0:focus{
  --tw-translate-x: 0px;
}

.focus\:-translate-x-1:focus{
  --tw-translate-x: -0.25rem;
}

.focus\:-translate-x-2:focus{
  --tw-translate-x: -0.5rem;
}

.focus\:-translate-x-3:focus{
  --tw-translate-x: -0.75rem;
}

.focus\:-translate-x-4:focus{
  --tw-translate-x: -1rem;
}

.focus\:-translate-x-5:focus{
  --tw-translate-x: -1.25rem;
}

.focus\:-translate-x-6:focus{
  --tw-translate-x: -1.5rem;
}

.focus\:-translate-x-7:focus{
  --tw-translate-x: -1.75rem;
}

.focus\:-translate-x-8:focus{
  --tw-translate-x: -2rem;
}

.focus\:-translate-x-9:focus{
  --tw-translate-x: -2.25rem;
}

.focus\:-translate-x-10:focus{
  --tw-translate-x: -2.5rem;
}

.focus\:-translate-x-11:focus{
  --tw-translate-x: -2.75rem;
}

.focus\:-translate-x-12:focus{
  --tw-translate-x: -3rem;
}

.focus\:-translate-x-14:focus{
  --tw-translate-x: -3.5rem;
}

.focus\:-translate-x-16:focus{
  --tw-translate-x: -4rem;
}

.focus\:-translate-x-20:focus{
  --tw-translate-x: -5rem;
}

.focus\:-translate-x-24:focus{
  --tw-translate-x: -6rem;
}

.focus\:-translate-x-28:focus{
  --tw-translate-x: -7rem;
}

.focus\:-translate-x-32:focus{
  --tw-translate-x: -8rem;
}

.focus\:-translate-x-36:focus{
  --tw-translate-x: -9rem;
}

.focus\:-translate-x-40:focus{
  --tw-translate-x: -10rem;
}

.focus\:-translate-x-44:focus{
  --tw-translate-x: -11rem;
}

.focus\:-translate-x-48:focus{
  --tw-translate-x: -12rem;
}

.focus\:-translate-x-52:focus{
  --tw-translate-x: -13rem;
}

.focus\:-translate-x-56:focus{
  --tw-translate-x: -14rem;
}

.focus\:-translate-x-60:focus{
  --tw-translate-x: -15rem;
}

.focus\:-translate-x-64:focus{
  --tw-translate-x: -16rem;
}

.focus\:-translate-x-72:focus{
  --tw-translate-x: -18rem;
}

.focus\:-translate-x-80:focus{
  --tw-translate-x: -20rem;
}

.focus\:-translate-x-96:focus{
  --tw-translate-x: -24rem;
}

.focus\:-translate-x-px:focus{
  --tw-translate-x: -1px;
}

.focus\:-translate-x-0\.5:focus{
  --tw-translate-x: -0.125rem;
}

.focus\:-translate-x-1\.5:focus{
  --tw-translate-x: -0.375rem;
}

.focus\:-translate-x-2\.5:focus{
  --tw-translate-x: -0.625rem;
}

.focus\:-translate-x-3\.5:focus{
  --tw-translate-x: -0.875rem;
}

.focus\:translate-x-1\/2:focus{
  --tw-translate-x: 50%;
}

.focus\:translate-x-1\/3:focus{
  --tw-translate-x: 33.333333%;
}

.focus\:translate-x-2\/3:focus{
  --tw-translate-x: 66.666667%;
}

.focus\:translate-x-1\/4:focus{
  --tw-translate-x: 25%;
}

.focus\:translate-x-2\/4:focus{
  --tw-translate-x: 50%;
}

.focus\:translate-x-3\/4:focus{
  --tw-translate-x: 75%;
}

.focus\:translate-x-full:focus{
  --tw-translate-x: 100%;
}

.focus\:-translate-x-1\/2:focus{
  --tw-translate-x: -50%;
}

.focus\:-translate-x-1\/3:focus{
  --tw-translate-x: -33.333333%;
}

.focus\:-translate-x-2\/3:focus{
  --tw-translate-x: -66.666667%;
}

.focus\:-translate-x-1\/4:focus{
  --tw-translate-x: -25%;
}

.focus\:-translate-x-2\/4:focus{
  --tw-translate-x: -50%;
}

.focus\:-translate-x-3\/4:focus{
  --tw-translate-x: -75%;
}

.focus\:-translate-x-full:focus{
  --tw-translate-x: -100%;
}

.focus\:translate-x-neg1\/2:focus{
  --tw-translate-x: -50%;
}

.focus\:translate-x-neg3\/4:focus{
  --tw-translate-x: -75%;
}

.focus\:translate-y-0:focus{
  --tw-translate-y: 0px;
}

.focus\:translate-y-1:focus{
  --tw-translate-y: 0.25rem;
}

.focus\:translate-y-2:focus{
  --tw-translate-y: 0.5rem;
}

.focus\:translate-y-3:focus{
  --tw-translate-y: 0.75rem;
}

.focus\:translate-y-4:focus{
  --tw-translate-y: 1rem;
}

.focus\:translate-y-5:focus{
  --tw-translate-y: 1.25rem;
}

.focus\:translate-y-6:focus{
  --tw-translate-y: 1.5rem;
}

.focus\:translate-y-7:focus{
  --tw-translate-y: 1.75rem;
}

.focus\:translate-y-8:focus{
  --tw-translate-y: 2rem;
}

.focus\:translate-y-9:focus{
  --tw-translate-y: 2.25rem;
}

.focus\:translate-y-10:focus{
  --tw-translate-y: 2.5rem;
}

.focus\:translate-y-11:focus{
  --tw-translate-y: 2.75rem;
}

.focus\:translate-y-12:focus{
  --tw-translate-y: 3rem;
}

.focus\:translate-y-14:focus{
  --tw-translate-y: 3.5rem;
}

.focus\:translate-y-16:focus{
  --tw-translate-y: 4rem;
}

.focus\:translate-y-20:focus{
  --tw-translate-y: 5rem;
}

.focus\:translate-y-24:focus{
  --tw-translate-y: 6rem;
}

.focus\:translate-y-28:focus{
  --tw-translate-y: 7rem;
}

.focus\:translate-y-32:focus{
  --tw-translate-y: 8rem;
}

.focus\:translate-y-36:focus{
  --tw-translate-y: 9rem;
}

.focus\:translate-y-40:focus{
  --tw-translate-y: 10rem;
}

.focus\:translate-y-44:focus{
  --tw-translate-y: 11rem;
}

.focus\:translate-y-48:focus{
  --tw-translate-y: 12rem;
}

.focus\:translate-y-52:focus{
  --tw-translate-y: 13rem;
}

.focus\:translate-y-56:focus{
  --tw-translate-y: 14rem;
}

.focus\:translate-y-60:focus{
  --tw-translate-y: 15rem;
}

.focus\:translate-y-64:focus{
  --tw-translate-y: 16rem;
}

.focus\:translate-y-72:focus{
  --tw-translate-y: 18rem;
}

.focus\:translate-y-80:focus{
  --tw-translate-y: 20rem;
}

.focus\:translate-y-96:focus{
  --tw-translate-y: 24rem;
}

.focus\:translate-y-px:focus{
  --tw-translate-y: 1px;
}

.focus\:translate-y-0\.5:focus{
  --tw-translate-y: 0.125rem;
}

.focus\:translate-y-1\.5:focus{
  --tw-translate-y: 0.375rem;
}

.focus\:translate-y-2\.5:focus{
  --tw-translate-y: 0.625rem;
}

.focus\:translate-y-3\.5:focus{
  --tw-translate-y: 0.875rem;
}

.focus\:-translate-y-0:focus{
  --tw-translate-y: 0px;
}

.focus\:-translate-y-1:focus{
  --tw-translate-y: -0.25rem;
}

.focus\:-translate-y-2:focus{
  --tw-translate-y: -0.5rem;
}

.focus\:-translate-y-3:focus{
  --tw-translate-y: -0.75rem;
}

.focus\:-translate-y-4:focus{
  --tw-translate-y: -1rem;
}

.focus\:-translate-y-5:focus{
  --tw-translate-y: -1.25rem;
}

.focus\:-translate-y-6:focus{
  --tw-translate-y: -1.5rem;
}

.focus\:-translate-y-7:focus{
  --tw-translate-y: -1.75rem;
}

.focus\:-translate-y-8:focus{
  --tw-translate-y: -2rem;
}

.focus\:-translate-y-9:focus{
  --tw-translate-y: -2.25rem;
}

.focus\:-translate-y-10:focus{
  --tw-translate-y: -2.5rem;
}

.focus\:-translate-y-11:focus{
  --tw-translate-y: -2.75rem;
}

.focus\:-translate-y-12:focus{
  --tw-translate-y: -3rem;
}

.focus\:-translate-y-14:focus{
  --tw-translate-y: -3.5rem;
}

.focus\:-translate-y-16:focus{
  --tw-translate-y: -4rem;
}

.focus\:-translate-y-20:focus{
  --tw-translate-y: -5rem;
}

.focus\:-translate-y-24:focus{
  --tw-translate-y: -6rem;
}

.focus\:-translate-y-28:focus{
  --tw-translate-y: -7rem;
}

.focus\:-translate-y-32:focus{
  --tw-translate-y: -8rem;
}

.focus\:-translate-y-36:focus{
  --tw-translate-y: -9rem;
}

.focus\:-translate-y-40:focus{
  --tw-translate-y: -10rem;
}

.focus\:-translate-y-44:focus{
  --tw-translate-y: -11rem;
}

.focus\:-translate-y-48:focus{
  --tw-translate-y: -12rem;
}

.focus\:-translate-y-52:focus{
  --tw-translate-y: -13rem;
}

.focus\:-translate-y-56:focus{
  --tw-translate-y: -14rem;
}

.focus\:-translate-y-60:focus{
  --tw-translate-y: -15rem;
}

.focus\:-translate-y-64:focus{
  --tw-translate-y: -16rem;
}

.focus\:-translate-y-72:focus{
  --tw-translate-y: -18rem;
}

.focus\:-translate-y-80:focus{
  --tw-translate-y: -20rem;
}

.focus\:-translate-y-96:focus{
  --tw-translate-y: -24rem;
}

.focus\:-translate-y-px:focus{
  --tw-translate-y: -1px;
}

.focus\:-translate-y-0\.5:focus{
  --tw-translate-y: -0.125rem;
}

.focus\:-translate-y-1\.5:focus{
  --tw-translate-y: -0.375rem;
}

.focus\:-translate-y-2\.5:focus{
  --tw-translate-y: -0.625rem;
}

.focus\:-translate-y-3\.5:focus{
  --tw-translate-y: -0.875rem;
}

.focus\:translate-y-1\/2:focus{
  --tw-translate-y: 50%;
}

.focus\:translate-y-1\/3:focus{
  --tw-translate-y: 33.333333%;
}

.focus\:translate-y-2\/3:focus{
  --tw-translate-y: 66.666667%;
}

.focus\:translate-y-1\/4:focus{
  --tw-translate-y: 25%;
}

.focus\:translate-y-2\/4:focus{
  --tw-translate-y: 50%;
}

.focus\:translate-y-3\/4:focus{
  --tw-translate-y: 75%;
}

.focus\:translate-y-full:focus{
  --tw-translate-y: 100%;
}

.focus\:-translate-y-1\/2:focus{
  --tw-translate-y: -50%;
}

.focus\:-translate-y-1\/3:focus{
  --tw-translate-y: -33.333333%;
}

.focus\:-translate-y-2\/3:focus{
  --tw-translate-y: -66.666667%;
}

.focus\:-translate-y-1\/4:focus{
  --tw-translate-y: -25%;
}

.focus\:-translate-y-2\/4:focus{
  --tw-translate-y: -50%;
}

.focus\:-translate-y-3\/4:focus{
  --tw-translate-y: -75%;
}

.focus\:-translate-y-full:focus{
  --tw-translate-y: -100%;
}

.focus\:translate-y-neg1\/2:focus{
  --tw-translate-y: -50%;
}

.focus\:translate-y-neg3\/4:focus{
  --tw-translate-y: -75%;
}

.rotate-0{
  --tw-rotate: 0deg;
}

.rotate-1{
  --tw-rotate: 1deg;
}

.rotate-2{
  --tw-rotate: 2deg;
}

.rotate-3{
  --tw-rotate: 3deg;
}

.rotate-6{
  --tw-rotate: 6deg;
}

.rotate-12{
  --tw-rotate: 12deg;
}

.rotate-45{
  --tw-rotate: 45deg;
}

.rotate-90{
  --tw-rotate: 90deg;
}

.rotate-180{
  --tw-rotate: 180deg;
}

.-rotate-180{
  --tw-rotate: -180deg;
}

.-rotate-90{
  --tw-rotate: -90deg;
}

.-rotate-45{
  --tw-rotate: -45deg;
}

.-rotate-12{
  --tw-rotate: -12deg;
}

.-rotate-6{
  --tw-rotate: -6deg;
}

.-rotate-3{
  --tw-rotate: -3deg;
}

.-rotate-2{
  --tw-rotate: -2deg;
}

.-rotate-1{
  --tw-rotate: -1deg;
}

.hover\:rotate-0:hover{
  --tw-rotate: 0deg;
}

.hover\:rotate-1:hover{
  --tw-rotate: 1deg;
}

.hover\:rotate-2:hover{
  --tw-rotate: 2deg;
}

.hover\:rotate-3:hover{
  --tw-rotate: 3deg;
}

.hover\:rotate-6:hover{
  --tw-rotate: 6deg;
}

.hover\:rotate-12:hover{
  --tw-rotate: 12deg;
}

.hover\:rotate-45:hover{
  --tw-rotate: 45deg;
}

.hover\:rotate-90:hover{
  --tw-rotate: 90deg;
}

.hover\:rotate-180:hover{
  --tw-rotate: 180deg;
}

.hover\:-rotate-180:hover{
  --tw-rotate: -180deg;
}

.hover\:-rotate-90:hover{
  --tw-rotate: -90deg;
}

.hover\:-rotate-45:hover{
  --tw-rotate: -45deg;
}

.hover\:-rotate-12:hover{
  --tw-rotate: -12deg;
}

.hover\:-rotate-6:hover{
  --tw-rotate: -6deg;
}

.hover\:-rotate-3:hover{
  --tw-rotate: -3deg;
}

.hover\:-rotate-2:hover{
  --tw-rotate: -2deg;
}

.hover\:-rotate-1:hover{
  --tw-rotate: -1deg;
}

.focus\:rotate-0:focus{
  --tw-rotate: 0deg;
}

.focus\:rotate-1:focus{
  --tw-rotate: 1deg;
}

.focus\:rotate-2:focus{
  --tw-rotate: 2deg;
}

.focus\:rotate-3:focus{
  --tw-rotate: 3deg;
}

.focus\:rotate-6:focus{
  --tw-rotate: 6deg;
}

.focus\:rotate-12:focus{
  --tw-rotate: 12deg;
}

.focus\:rotate-45:focus{
  --tw-rotate: 45deg;
}

.focus\:rotate-90:focus{
  --tw-rotate: 90deg;
}

.focus\:rotate-180:focus{
  --tw-rotate: 180deg;
}

.focus\:-rotate-180:focus{
  --tw-rotate: -180deg;
}

.focus\:-rotate-90:focus{
  --tw-rotate: -90deg;
}

.focus\:-rotate-45:focus{
  --tw-rotate: -45deg;
}

.focus\:-rotate-12:focus{
  --tw-rotate: -12deg;
}

.focus\:-rotate-6:focus{
  --tw-rotate: -6deg;
}

.focus\:-rotate-3:focus{
  --tw-rotate: -3deg;
}

.focus\:-rotate-2:focus{
  --tw-rotate: -2deg;
}

.focus\:-rotate-1:focus{
  --tw-rotate: -1deg;
}

.skew-x-0{
  --tw-skew-x: 0deg;
}

.skew-x-1{
  --tw-skew-x: 1deg;
}

.skew-x-2{
  --tw-skew-x: 2deg;
}

.skew-x-3{
  --tw-skew-x: 3deg;
}

.skew-x-6{
  --tw-skew-x: 6deg;
}

.skew-x-12{
  --tw-skew-x: 12deg;
}

.-skew-x-12{
  --tw-skew-x: -12deg;
}

.-skew-x-6{
  --tw-skew-x: -6deg;
}

.-skew-x-3{
  --tw-skew-x: -3deg;
}

.-skew-x-2{
  --tw-skew-x: -2deg;
}

.-skew-x-1{
  --tw-skew-x: -1deg;
}

.skew-y-0{
  --tw-skew-y: 0deg;
}

.skew-y-1{
  --tw-skew-y: 1deg;
}

.skew-y-2{
  --tw-skew-y: 2deg;
}

.skew-y-3{
  --tw-skew-y: 3deg;
}

.skew-y-6{
  --tw-skew-y: 6deg;
}

.skew-y-12{
  --tw-skew-y: 12deg;
}

.-skew-y-12{
  --tw-skew-y: -12deg;
}

.-skew-y-6{
  --tw-skew-y: -6deg;
}

.-skew-y-3{
  --tw-skew-y: -3deg;
}

.-skew-y-2{
  --tw-skew-y: -2deg;
}

.-skew-y-1{
  --tw-skew-y: -1deg;
}

.hover\:skew-x-0:hover{
  --tw-skew-x: 0deg;
}

.hover\:skew-x-1:hover{
  --tw-skew-x: 1deg;
}

.hover\:skew-x-2:hover{
  --tw-skew-x: 2deg;
}

.hover\:skew-x-3:hover{
  --tw-skew-x: 3deg;
}

.hover\:skew-x-6:hover{
  --tw-skew-x: 6deg;
}

.hover\:skew-x-12:hover{
  --tw-skew-x: 12deg;
}

.hover\:-skew-x-12:hover{
  --tw-skew-x: -12deg;
}

.hover\:-skew-x-6:hover{
  --tw-skew-x: -6deg;
}

.hover\:-skew-x-3:hover{
  --tw-skew-x: -3deg;
}

.hover\:-skew-x-2:hover{
  --tw-skew-x: -2deg;
}

.hover\:-skew-x-1:hover{
  --tw-skew-x: -1deg;
}

.hover\:skew-y-0:hover{
  --tw-skew-y: 0deg;
}

.hover\:skew-y-1:hover{
  --tw-skew-y: 1deg;
}

.hover\:skew-y-2:hover{
  --tw-skew-y: 2deg;
}

.hover\:skew-y-3:hover{
  --tw-skew-y: 3deg;
}

.hover\:skew-y-6:hover{
  --tw-skew-y: 6deg;
}

.hover\:skew-y-12:hover{
  --tw-skew-y: 12deg;
}

.hover\:-skew-y-12:hover{
  --tw-skew-y: -12deg;
}

.hover\:-skew-y-6:hover{
  --tw-skew-y: -6deg;
}

.hover\:-skew-y-3:hover{
  --tw-skew-y: -3deg;
}

.hover\:-skew-y-2:hover{
  --tw-skew-y: -2deg;
}

.hover\:-skew-y-1:hover{
  --tw-skew-y: -1deg;
}

.focus\:skew-x-0:focus{
  --tw-skew-x: 0deg;
}

.focus\:skew-x-1:focus{
  --tw-skew-x: 1deg;
}

.focus\:skew-x-2:focus{
  --tw-skew-x: 2deg;
}

.focus\:skew-x-3:focus{
  --tw-skew-x: 3deg;
}

.focus\:skew-x-6:focus{
  --tw-skew-x: 6deg;
}

.focus\:skew-x-12:focus{
  --tw-skew-x: 12deg;
}

.focus\:-skew-x-12:focus{
  --tw-skew-x: -12deg;
}

.focus\:-skew-x-6:focus{
  --tw-skew-x: -6deg;
}

.focus\:-skew-x-3:focus{
  --tw-skew-x: -3deg;
}

.focus\:-skew-x-2:focus{
  --tw-skew-x: -2deg;
}

.focus\:-skew-x-1:focus{
  --tw-skew-x: -1deg;
}

.focus\:skew-y-0:focus{
  --tw-skew-y: 0deg;
}

.focus\:skew-y-1:focus{
  --tw-skew-y: 1deg;
}

.focus\:skew-y-2:focus{
  --tw-skew-y: 2deg;
}

.focus\:skew-y-3:focus{
  --tw-skew-y: 3deg;
}

.focus\:skew-y-6:focus{
  --tw-skew-y: 6deg;
}

.focus\:skew-y-12:focus{
  --tw-skew-y: 12deg;
}

.focus\:-skew-y-12:focus{
  --tw-skew-y: -12deg;
}

.focus\:-skew-y-6:focus{
  --tw-skew-y: -6deg;
}

.focus\:-skew-y-3:focus{
  --tw-skew-y: -3deg;
}

.focus\:-skew-y-2:focus{
  --tw-skew-y: -2deg;
}

.focus\:-skew-y-1:focus{
  --tw-skew-y: -1deg;
}

.scale-0{
  --tw-scale-x: 0;
  --tw-scale-y: 0;
}

.scale-50{
  --tw-scale-x: .5;
  --tw-scale-y: .5;
}

.scale-75{
  --tw-scale-x: .75;
  --tw-scale-y: .75;
}

.scale-90{
  --tw-scale-x: .9;
  --tw-scale-y: .9;
}

.scale-95{
  --tw-scale-x: .95;
  --tw-scale-y: .95;
}

.scale-100{
  --tw-scale-x: 1;
  --tw-scale-y: 1;
}

.scale-105{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
}

.scale-110{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
}

.scale-125{
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
}

.scale-150{
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
}

.hover\:scale-0:hover{
  --tw-scale-x: 0;
  --tw-scale-y: 0;
}

.hover\:scale-50:hover{
  --tw-scale-x: .5;
  --tw-scale-y: .5;
}

.hover\:scale-75:hover{
  --tw-scale-x: .75;
  --tw-scale-y: .75;
}

.hover\:scale-90:hover{
  --tw-scale-x: .9;
  --tw-scale-y: .9;
}

.hover\:scale-95:hover{
  --tw-scale-x: .95;
  --tw-scale-y: .95;
}

.hover\:scale-100:hover{
  --tw-scale-x: 1;
  --tw-scale-y: 1;
}

.hover\:scale-105:hover{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
}

.hover\:scale-110:hover{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
}

.hover\:scale-125:hover{
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
}

.hover\:scale-150:hover{
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
}

.focus\:scale-0:focus{
  --tw-scale-x: 0;
  --tw-scale-y: 0;
}

.focus\:scale-50:focus{
  --tw-scale-x: .5;
  --tw-scale-y: .5;
}

.focus\:scale-75:focus{
  --tw-scale-x: .75;
  --tw-scale-y: .75;
}

.focus\:scale-90:focus{
  --tw-scale-x: .9;
  --tw-scale-y: .9;
}

.focus\:scale-95:focus{
  --tw-scale-x: .95;
  --tw-scale-y: .95;
}

.focus\:scale-100:focus{
  --tw-scale-x: 1;
  --tw-scale-y: 1;
}

.focus\:scale-105:focus{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
}

.focus\:scale-110:focus{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
}

.focus\:scale-125:focus{
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
}

.focus\:scale-150:focus{
  --tw-scale-x: 1.5;
  --tw-scale-y: 1.5;
}

.scale-x-0{
  --tw-scale-x: 0;
}

.scale-x-50{
  --tw-scale-x: .5;
}

.scale-x-75{
  --tw-scale-x: .75;
}

.scale-x-90{
  --tw-scale-x: .9;
}

.scale-x-95{
  --tw-scale-x: .95;
}

.scale-x-100{
  --tw-scale-x: 1;
}

.scale-x-105{
  --tw-scale-x: 1.05;
}

.scale-x-110{
  --tw-scale-x: 1.1;
}

.scale-x-125{
  --tw-scale-x: 1.25;
}

.scale-x-150{
  --tw-scale-x: 1.5;
}

.scale-y-0{
  --tw-scale-y: 0;
}

.scale-y-50{
  --tw-scale-y: .5;
}

.scale-y-75{
  --tw-scale-y: .75;
}

.scale-y-90{
  --tw-scale-y: .9;
}

.scale-y-95{
  --tw-scale-y: .95;
}

.scale-y-100{
  --tw-scale-y: 1;
}

.scale-y-105{
  --tw-scale-y: 1.05;
}

.scale-y-110{
  --tw-scale-y: 1.1;
}

.scale-y-125{
  --tw-scale-y: 1.25;
}

.scale-y-150{
  --tw-scale-y: 1.5;
}

.hover\:scale-x-0:hover{
  --tw-scale-x: 0;
}

.hover\:scale-x-50:hover{
  --tw-scale-x: .5;
}

.hover\:scale-x-75:hover{
  --tw-scale-x: .75;
}

.hover\:scale-x-90:hover{
  --tw-scale-x: .9;
}

.hover\:scale-x-95:hover{
  --tw-scale-x: .95;
}

.hover\:scale-x-100:hover{
  --tw-scale-x: 1;
}

.hover\:scale-x-105:hover{
  --tw-scale-x: 1.05;
}

.hover\:scale-x-110:hover{
  --tw-scale-x: 1.1;
}

.hover\:scale-x-125:hover{
  --tw-scale-x: 1.25;
}

.hover\:scale-x-150:hover{
  --tw-scale-x: 1.5;
}

.hover\:scale-y-0:hover{
  --tw-scale-y: 0;
}

.hover\:scale-y-50:hover{
  --tw-scale-y: .5;
}

.hover\:scale-y-75:hover{
  --tw-scale-y: .75;
}

.hover\:scale-y-90:hover{
  --tw-scale-y: .9;
}

.hover\:scale-y-95:hover{
  --tw-scale-y: .95;
}

.hover\:scale-y-100:hover{
  --tw-scale-y: 1;
}

.hover\:scale-y-105:hover{
  --tw-scale-y: 1.05;
}

.hover\:scale-y-110:hover{
  --tw-scale-y: 1.1;
}

.hover\:scale-y-125:hover{
  --tw-scale-y: 1.25;
}

.hover\:scale-y-150:hover{
  --tw-scale-y: 1.5;
}

.focus\:scale-x-0:focus{
  --tw-scale-x: 0;
}

.focus\:scale-x-50:focus{
  --tw-scale-x: .5;
}

.focus\:scale-x-75:focus{
  --tw-scale-x: .75;
}

.focus\:scale-x-90:focus{
  --tw-scale-x: .9;
}

.focus\:scale-x-95:focus{
  --tw-scale-x: .95;
}

.focus\:scale-x-100:focus{
  --tw-scale-x: 1;
}

.focus\:scale-x-105:focus{
  --tw-scale-x: 1.05;
}

.focus\:scale-x-110:focus{
  --tw-scale-x: 1.1;
}

.focus\:scale-x-125:focus{
  --tw-scale-x: 1.25;
}

.focus\:scale-x-150:focus{
  --tw-scale-x: 1.5;
}

.focus\:scale-y-0:focus{
  --tw-scale-y: 0;
}

.focus\:scale-y-50:focus{
  --tw-scale-y: .5;
}

.focus\:scale-y-75:focus{
  --tw-scale-y: .75;
}

.focus\:scale-y-90:focus{
  --tw-scale-y: .9;
}

.focus\:scale-y-95:focus{
  --tw-scale-y: .95;
}

.focus\:scale-y-100:focus{
  --tw-scale-y: 1;
}

.focus\:scale-y-105:focus{
  --tw-scale-y: 1.05;
}

.focus\:scale-y-110:focus{
  --tw-scale-y: 1.1;
}

.focus\:scale-y-125:focus{
  --tw-scale-y: 1.25;
}

.focus\:scale-y-150:focus{
  --tw-scale-y: 1.5;
}

@-webkit-keyframes spin{
  to{
    transform: rotate(360deg);
  }
}

@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse{
  50%{
    opacity: .5;
  }
}

@keyframes pulse{
  50%{
    opacity: .5;
  }
}

@-webkit-keyframes bounce{
  0%, 100%{
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce{
  0%, 100%{
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.animate-none{
  -webkit-animation: none;
          animation: none;
}

.animate-spin{
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

.animate-ping{
  -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
          animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-pulse{
  -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
          animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce{
  -webkit-animation: bounce 1s infinite;
          animation: bounce 1s infinite;
}

.cursor-auto{
  cursor: auto;
}

.cursor-default{
  cursor: default;
}

.cursor-pointer{
  cursor: pointer;
}

.cursor-wait{
  cursor: wait;
}

.cursor-text{
  cursor: text;
}

.cursor-move{
  cursor: move;
}

.cursor-help{
  cursor: help;
}

.cursor-not-allowed{
  cursor: not-allowed;
}

.select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.select-text{
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.select-all{
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}

.select-auto{
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

.resize-none{
  resize: none;
}

.resize-y{
  resize: vertical;
}

.resize-x{
  resize: horizontal;
}

.resize{
  resize: both;
}

.list-inside{
  list-style-position: inside;
}

.list-outside{
  list-style-position: outside;
}

.list-none{
  list-style-type: none;
}

.list-disc{
  list-style-type: disc;
}

.list-decimal{
  list-style-type: decimal;
}

.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.auto-cols-auto{
  grid-auto-columns: auto;
}

.auto-cols-min{
  grid-auto-columns: -webkit-min-content;
  grid-auto-columns: min-content;
}

.auto-cols-max{
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
}

.auto-cols-fr{
  grid-auto-columns: minmax(0, 1fr);
}

.grid-flow-row{
  grid-auto-flow: row;
}

.grid-flow-col{
  grid-auto-flow: column;
}

.grid-flow-row-dense{
  grid-auto-flow: row dense;
}

.grid-flow-col-dense{
  grid-auto-flow: column dense;
}

.auto-rows-auto{
  grid-auto-rows: auto;
}

.auto-rows-min{
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
}

.auto-rows-max{
  grid-auto-rows: -webkit-max-content;
  grid-auto-rows: max-content;
}

.auto-rows-fr{
  grid-auto-rows: minmax(0, 1fr);
}

.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7{
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8{
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9{
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10{
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11{
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-none{
  grid-template-columns: none;
}

.grid-rows-1{
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.grid-rows-2{
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.grid-rows-3{
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows-4{
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.grid-rows-5{
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.grid-rows-6{
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.grid-rows-none{
  grid-template-rows: none;
}

.flex-row{
  flex-direction: row;
}

.flex-row-reverse{
  flex-direction: row-reverse;
}

.flex-col{
  flex-direction: column;
}

.flex-col-reverse{
  flex-direction: column-reverse;
}

.flex-wrap{
  flex-wrap: wrap;
}

.flex-wrap-reverse{
  flex-wrap: wrap-reverse;
}

.flex-nowrap{
  flex-wrap: nowrap;
}

.place-content-center{
  place-content: center;
}

.place-content-start{
  place-content: start;
}

.place-content-end{
  place-content: end;
}

.place-content-between{
  place-content: space-between;
}

.place-content-around{
  place-content: space-around;
}

.place-content-evenly{
  place-content: space-evenly;
}

.place-content-stretch{
  place-content: stretch;
}

.place-items-start{
  place-items: start;
}

.place-items-end{
  place-items: end;
}

.place-items-center{
  place-items: center;
}

.place-items-stretch{
  place-items: stretch;
}

.content-center{
  align-content: center;
}

.content-start{
  align-content: flex-start;
}

.content-end{
  align-content: flex-end;
}

.content-between{
  align-content: space-between;
}

.content-around{
  align-content: space-around;
}

.content-evenly{
  align-content: space-evenly;
}

.items-start{
  align-items: flex-start;
}

.items-end{
  align-items: flex-end;
}

.items-center{
  align-items: center;
}

.items-baseline{
  align-items: baseline;
}

.items-stretch{
  align-items: stretch;
}

.justify-start{
  justify-content: flex-start;
}

.justify-end{
  justify-content: flex-end;
}

.justify-center{
  justify-content: center;
}

.justify-between{
  justify-content: space-between;
}

.justify-around{
  justify-content: space-around;
}

.justify-evenly{
  justify-content: space-evenly;
}

.justify-items-start{
  justify-items: start;
}

.justify-items-end{
  justify-items: end;
}

.justify-items-center{
  justify-items: center;
}

.justify-items-stretch{
  justify-items: stretch;
}

.gap-0{
  gap: 0px;
}

.gap-1{
  gap: 0.25rem;
}

.gap-2{
  gap: 0.5rem;
}

.gap-3{
  gap: 0.75rem;
}

.gap-4{
  gap: 1rem;
}

.gap-5{
  gap: 1.25rem;
}

.gap-6{
  gap: 1.5rem;
}

.gap-7{
  gap: 1.75rem;
}

.gap-8{
  gap: 2rem;
}

.gap-9{
  gap: 2.25rem;
}

.gap-10{
  gap: 2.5rem;
}

.gap-11{
  gap: 2.75rem;
}

.gap-12{
  gap: 3rem;
}

.gap-14{
  gap: 3.5rem;
}

.gap-16{
  gap: 4rem;
}

.gap-20{
  gap: 5rem;
}

.gap-24{
  gap: 6rem;
}

.gap-28{
  gap: 7rem;
}

.gap-32{
  gap: 8rem;
}

.gap-36{
  gap: 9rem;
}

.gap-40{
  gap: 10rem;
}

.gap-44{
  gap: 11rem;
}

.gap-48{
  gap: 12rem;
}

.gap-52{
  gap: 13rem;
}

.gap-56{
  gap: 14rem;
}

.gap-60{
  gap: 15rem;
}

.gap-64{
  gap: 16rem;
}

.gap-72{
  gap: 18rem;
}

.gap-80{
  gap: 20rem;
}

.gap-96{
  gap: 24rem;
}

.gap-px{
  gap: 1px;
}

.gap-0\.5{
  gap: 0.125rem;
}

.gap-1\.5{
  gap: 0.375rem;
}

.gap-2\.5{
  gap: 0.625rem;
}

.gap-3\.5{
  gap: 0.875rem;
}

.gap-x-0{
  -moz-column-gap: 0px;
       column-gap: 0px;
}

.gap-x-1{
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.gap-x-2{
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.gap-x-3{
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.gap-x-4{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-x-5{
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.gap-x-6{
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-x-7{
  -moz-column-gap: 1.75rem;
       column-gap: 1.75rem;
}

.gap-x-8{
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-x-9{
  -moz-column-gap: 2.25rem;
       column-gap: 2.25rem;
}

.gap-x-10{
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.gap-x-11{
  -moz-column-gap: 2.75rem;
       column-gap: 2.75rem;
}

.gap-x-12{
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.gap-x-14{
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.gap-x-16{
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.gap-x-20{
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}

.gap-x-24{
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.gap-x-28{
  -moz-column-gap: 7rem;
       column-gap: 7rem;
}

.gap-x-32{
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

.gap-x-36{
  -moz-column-gap: 9rem;
       column-gap: 9rem;
}

.gap-x-40{
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}

.gap-x-44{
  -moz-column-gap: 11rem;
       column-gap: 11rem;
}

.gap-x-48{
  -moz-column-gap: 12rem;
       column-gap: 12rem;
}

.gap-x-52{
  -moz-column-gap: 13rem;
       column-gap: 13rem;
}

.gap-x-56{
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.gap-x-60{
  -moz-column-gap: 15rem;
       column-gap: 15rem;
}

.gap-x-64{
  -moz-column-gap: 16rem;
       column-gap: 16rem;
}

.gap-x-72{
  -moz-column-gap: 18rem;
       column-gap: 18rem;
}

.gap-x-80{
  -moz-column-gap: 20rem;
       column-gap: 20rem;
}

.gap-x-96{
  -moz-column-gap: 24rem;
       column-gap: 24rem;
}

.gap-x-px{
  -moz-column-gap: 1px;
       column-gap: 1px;
}

.gap-x-0\.5{
  -moz-column-gap: 0.125rem;
       column-gap: 0.125rem;
}

.gap-x-1\.5{
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
}

.gap-x-2\.5{
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}

.gap-x-3\.5{
  -moz-column-gap: 0.875rem;
       column-gap: 0.875rem;
}

.gap-y-0{
  row-gap: 0px;
}

.gap-y-1{
  row-gap: 0.25rem;
}

.gap-y-2{
  row-gap: 0.5rem;
}

.gap-y-3{
  row-gap: 0.75rem;
}

.gap-y-4{
  row-gap: 1rem;
}

.gap-y-5{
  row-gap: 1.25rem;
}

.gap-y-6{
  row-gap: 1.5rem;
}

.gap-y-7{
  row-gap: 1.75rem;
}

.gap-y-8{
  row-gap: 2rem;
}

.gap-y-9{
  row-gap: 2.25rem;
}

.gap-y-10{
  row-gap: 2.5rem;
}

.gap-y-11{
  row-gap: 2.75rem;
}

.gap-y-12{
  row-gap: 3rem;
}

.gap-y-14{
  row-gap: 3.5rem;
}

.gap-y-16{
  row-gap: 4rem;
}

.gap-y-20{
  row-gap: 5rem;
}

.gap-y-24{
  row-gap: 6rem;
}

.gap-y-28{
  row-gap: 7rem;
}

.gap-y-32{
  row-gap: 8rem;
}

.gap-y-36{
  row-gap: 9rem;
}

.gap-y-40{
  row-gap: 10rem;
}

.gap-y-44{
  row-gap: 11rem;
}

.gap-y-48{
  row-gap: 12rem;
}

.gap-y-52{
  row-gap: 13rem;
}

.gap-y-56{
  row-gap: 14rem;
}

.gap-y-60{
  row-gap: 15rem;
}

.gap-y-64{
  row-gap: 16rem;
}

.gap-y-72{
  row-gap: 18rem;
}

.gap-y-80{
  row-gap: 20rem;
}

.gap-y-96{
  row-gap: 24rem;
}

.gap-y-px{
  row-gap: 1px;
}

.gap-y-0\.5{
  row-gap: 0.125rem;
}

.gap-y-1\.5{
  row-gap: 0.375rem;
}

.gap-y-2\.5{
  row-gap: 0.625rem;
}

.gap-y-3\.5{
  row-gap: 0.875rem;
}

.space-x-0 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0px * var(--tw-space-x-reverse));
  margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-7 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.75rem * var(--tw-space-x-reverse));
  margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-9 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2.25rem * var(--tw-space-x-reverse));
  margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2.5rem * var(--tw-space-x-reverse));
  margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-11 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2.75rem * var(--tw-space-x-reverse));
  margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(3rem * var(--tw-space-x-reverse));
  margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-14 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(3.5rem * var(--tw-space-x-reverse));
  margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-16 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(4rem * var(--tw-space-x-reverse));
  margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-20 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(5rem * var(--tw-space-x-reverse));
  margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-24 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(6rem * var(--tw-space-x-reverse));
  margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-28 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(7rem * var(--tw-space-x-reverse));
  margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-32 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(8rem * var(--tw-space-x-reverse));
  margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-36 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(9rem * var(--tw-space-x-reverse));
  margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-40 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(10rem * var(--tw-space-x-reverse));
  margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-44 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(11rem * var(--tw-space-x-reverse));
  margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-48 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(12rem * var(--tw-space-x-reverse));
  margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-52 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(13rem * var(--tw-space-x-reverse));
  margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-56 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(14rem * var(--tw-space-x-reverse));
  margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-60 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(15rem * var(--tw-space-x-reverse));
  margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-64 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(16rem * var(--tw-space-x-reverse));
  margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-72 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(18rem * var(--tw-space-x-reverse));
  margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-80 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(20rem * var(--tw-space-x-reverse));
  margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-96 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(24rem * var(--tw-space-x-reverse));
  margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-px > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1px * var(--tw-space-x-reverse));
  margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.125rem * var(--tw-space-x-reverse));
  margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.375rem * var(--tw-space-x-reverse));
  margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.625rem * var(--tw-space-x-reverse));
  margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.875rem * var(--tw-space-x-reverse));
  margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-0 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0px * var(--tw-space-x-reverse));
  margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-1rem * var(--tw-space-x-reverse));
  margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-7 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-1.75rem * var(--tw-space-x-reverse));
  margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-2rem * var(--tw-space-x-reverse));
  margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-9 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-2.25rem * var(--tw-space-x-reverse));
  margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-2.5rem * var(--tw-space-x-reverse));
  margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-11 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-2.75rem * var(--tw-space-x-reverse));
  margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-3rem * var(--tw-space-x-reverse));
  margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-14 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-3.5rem * var(--tw-space-x-reverse));
  margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-16 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-4rem * var(--tw-space-x-reverse));
  margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-20 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-5rem * var(--tw-space-x-reverse));
  margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-24 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-6rem * var(--tw-space-x-reverse));
  margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-28 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-7rem * var(--tw-space-x-reverse));
  margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-32 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-8rem * var(--tw-space-x-reverse));
  margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-36 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-9rem * var(--tw-space-x-reverse));
  margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-40 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-10rem * var(--tw-space-x-reverse));
  margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-44 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-11rem * var(--tw-space-x-reverse));
  margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-48 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-12rem * var(--tw-space-x-reverse));
  margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-52 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-13rem * var(--tw-space-x-reverse));
  margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-56 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-14rem * var(--tw-space-x-reverse));
  margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-60 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-15rem * var(--tw-space-x-reverse));
  margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-64 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-16rem * var(--tw-space-x-reverse));
  margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-72 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-18rem * var(--tw-space-x-reverse));
  margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-80 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-20rem * var(--tw-space-x-reverse));
  margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-96 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-24rem * var(--tw-space-x-reverse));
  margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-px > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-1px * var(--tw-space-x-reverse));
  margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.125rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.375rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.625rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse)));
}

.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.875rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-0 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-7 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.75rem * var(--tw-space-y-reverse));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.space-y-9 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.25rem * var(--tw-space-y-reverse));
}

.space-y-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}

.space-y-11 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.75rem * var(--tw-space-y-reverse));
}

.space-y-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}

.space-y-14 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3.5rem * var(--tw-space-y-reverse));
}

.space-y-16 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4rem * var(--tw-space-y-reverse));
}

.space-y-20 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(5rem * var(--tw-space-y-reverse));
}

.space-y-24 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(6rem * var(--tw-space-y-reverse));
}

.space-y-28 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(7rem * var(--tw-space-y-reverse));
}

.space-y-32 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8rem * var(--tw-space-y-reverse));
}

.space-y-36 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(9rem * var(--tw-space-y-reverse));
}

.space-y-40 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(10rem * var(--tw-space-y-reverse));
}

.space-y-44 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(11rem * var(--tw-space-y-reverse));
}

.space-y-48 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(12rem * var(--tw-space-y-reverse));
}

.space-y-52 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(13rem * var(--tw-space-y-reverse));
}

.space-y-56 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(14rem * var(--tw-space-y-reverse));
}

.space-y-60 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(15rem * var(--tw-space-y-reverse));
}

.space-y-64 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16rem * var(--tw-space-y-reverse));
}

.space-y-72 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(18rem * var(--tw-space-y-reverse));
}

.space-y-80 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(20rem * var(--tw-space-y-reverse));
}

.space-y-96 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(24rem * var(--tw-space-y-reverse));
}

.space-y-px > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1px * var(--tw-space-y-reverse));
}

.space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}

.space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}

.space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
}

.space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.875rem * var(--tw-space-y-reverse));
}

.-space-y-0 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
}

.-space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse));
}

.-space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse));
}

.-space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse));
}

.-space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-1rem * var(--tw-space-y-reverse));
}

.-space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse));
}

.-space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse));
}

.-space-y-7 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse));
}

.-space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-2rem * var(--tw-space-y-reverse));
}

.-space-y-9 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse));
}

.-space-y-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse));
}

.-space-y-11 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse));
}

.-space-y-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-3rem * var(--tw-space-y-reverse));
}

.-space-y-14 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse));
}

.-space-y-16 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-4rem * var(--tw-space-y-reverse));
}

.-space-y-20 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-5rem * var(--tw-space-y-reverse));
}

.-space-y-24 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-6rem * var(--tw-space-y-reverse));
}

.-space-y-28 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-7rem * var(--tw-space-y-reverse));
}

.-space-y-32 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-8rem * var(--tw-space-y-reverse));
}

.-space-y-36 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-9rem * var(--tw-space-y-reverse));
}

.-space-y-40 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-10rem * var(--tw-space-y-reverse));
}

.-space-y-44 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-11rem * var(--tw-space-y-reverse));
}

.-space-y-48 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-12rem * var(--tw-space-y-reverse));
}

.-space-y-52 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-13rem * var(--tw-space-y-reverse));
}

.-space-y-56 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-14rem * var(--tw-space-y-reverse));
}

.-space-y-60 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-15rem * var(--tw-space-y-reverse));
}

.-space-y-64 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-16rem * var(--tw-space-y-reverse));
}

.-space-y-72 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-18rem * var(--tw-space-y-reverse));
}

.-space-y-80 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-20rem * var(--tw-space-y-reverse));
}

.-space-y-96 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-24rem * var(--tw-space-y-reverse));
}

.-space-y-px > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-1px * var(--tw-space-y-reverse));
}

.-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse));
}

.-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse));
}

.-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse));
}

.-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse));
}

.space-y-reverse > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 1;
}

.space-x-reverse > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1;
}

.divide-x-0 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0;
  border-right-width: calc(0px * var(--tw-divide-x-reverse));
  border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse)));
}

.divide-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0;
  border-right-width: calc(2px * var(--tw-divide-x-reverse));
  border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse)));
}

.divide-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0;
  border-right-width: calc(4px * var(--tw-divide-x-reverse));
  border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse)));
}

.divide-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0;
  border-right-width: calc(8px * var(--tw-divide-x-reverse));
  border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse)));
}

.divide-x > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}

.divide-y-0 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
}

.divide-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(2px * var(--tw-divide-y-reverse));
}

.divide-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(4px * var(--tw-divide-y-reverse));
}

.divide-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(8px * var(--tw-divide-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-y-reverse > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 1;
}

.divide-x-reverse > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 1;
}

.divide-solid > :not([hidden]) ~ :not([hidden]){
  border-style: solid;
}

.divide-dashed > :not([hidden]) ~ :not([hidden]){
  border-style: dashed;
}

.divide-dotted > :not([hidden]) ~ :not([hidden]){
  border-style: dotted;
}

.divide-double > :not([hidden]) ~ :not([hidden]){
  border-style: double;
}

.divide-none > :not([hidden]) ~ :not([hidden]){
  border-style: none;
}

.divide-transparent > :not([hidden]) ~ :not([hidden]){
  border-color: transparent;
}

.divide-current > :not([hidden]) ~ :not([hidden]){
  border-color: currentColor;
}

.divide-black > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-divide-opacity));
}

.divide-white > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-divide-opacity));
}

.divide-gray-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(249, 250, 251, var(--tw-divide-opacity));
}

.divide-gray-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-divide-opacity));
}

.divide-gray-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-divide-opacity));
}

.divide-gray-300 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-divide-opacity));
}

.divide-gray-400 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-divide-opacity));
}

.divide-gray-500 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(107, 114, 128, var(--tw-divide-opacity));
}

.divide-gray-600 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(75, 85, 99, var(--tw-divide-opacity));
}

.divide-gray-700 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(55, 65, 81, var(--tw-divide-opacity));
}

.divide-gray-800 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(31, 41, 55, var(--tw-divide-opacity));
}

.divide-gray-900 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(17, 24, 39, var(--tw-divide-opacity));
}

.divide-red-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(254, 242, 242, var(--tw-divide-opacity));
}

.divide-red-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(254, 226, 226, var(--tw-divide-opacity));
}

.divide-red-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(254, 202, 202, var(--tw-divide-opacity));
}

.divide-red-300 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(252, 165, 165, var(--tw-divide-opacity));
}

.divide-red-400 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(248, 113, 113, var(--tw-divide-opacity));
}

.divide-red-500 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(239, 68, 68, var(--tw-divide-opacity));
}

.divide-red-600 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(220, 38, 38, var(--tw-divide-opacity));
}

.divide-red-700 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(185, 28, 28, var(--tw-divide-opacity));
}

.divide-red-800 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(153, 27, 27, var(--tw-divide-opacity));
}

.divide-red-900 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(127, 29, 29, var(--tw-divide-opacity));
}

.divide-red-light > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(234, 122, 122, var(--tw-divide-opacity));
}

.divide-red-default > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(185, 0, 0, var(--tw-divide-opacity));
}

.divide-red-dark > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(88, 0, 0, var(--tw-divide-opacity));
}

.divide-yellow-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(255, 251, 235, var(--tw-divide-opacity));
}

.divide-yellow-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(254, 243, 199, var(--tw-divide-opacity));
}

.divide-yellow-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(253, 230, 138, var(--tw-divide-opacity));
}

.divide-yellow-300 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(252, 211, 77, var(--tw-divide-opacity));
}

.divide-yellow-400 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(251, 191, 36, var(--tw-divide-opacity));
}

.divide-yellow-500 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(245, 158, 11, var(--tw-divide-opacity));
}

.divide-yellow-600 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(217, 119, 6, var(--tw-divide-opacity));
}

.divide-yellow-700 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(180, 83, 9, var(--tw-divide-opacity));
}

.divide-yellow-800 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(146, 64, 14, var(--tw-divide-opacity));
}

.divide-yellow-900 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(120, 53, 15, var(--tw-divide-opacity));
}

.divide-green-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(236, 253, 245, var(--tw-divide-opacity));
}

.divide-green-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(209, 250, 229, var(--tw-divide-opacity));
}

.divide-green-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(167, 243, 208, var(--tw-divide-opacity));
}

.divide-green-300 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(110, 231, 183, var(--tw-divide-opacity));
}

.divide-green-400 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(52, 211, 153, var(--tw-divide-opacity));
}

.divide-green-500 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(16, 185, 129, var(--tw-divide-opacity));
}

.divide-green-600 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(5, 150, 105, var(--tw-divide-opacity));
}

.divide-green-700 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(4, 120, 87, var(--tw-divide-opacity));
}

.divide-green-800 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(6, 95, 70, var(--tw-divide-opacity));
}

.divide-green-900 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(6, 78, 59, var(--tw-divide-opacity));
}

.divide-green-light > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(181, 209, 185, var(--tw-divide-opacity));
}

.divide-green-default > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(38, 59, 41, var(--tw-divide-opacity));
}

.divide-green-dark > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(28, 37, 30, var(--tw-divide-opacity));
}

.divide-blue-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(239, 246, 255, var(--tw-divide-opacity));
}

.divide-blue-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(219, 234, 254, var(--tw-divide-opacity));
}

.divide-blue-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(191, 219, 254, var(--tw-divide-opacity));
}

.divide-blue-300 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(147, 197, 253, var(--tw-divide-opacity));
}

.divide-blue-400 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(96, 165, 250, var(--tw-divide-opacity));
}

.divide-blue-500 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(59, 130, 246, var(--tw-divide-opacity));
}

.divide-blue-600 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(37, 99, 235, var(--tw-divide-opacity));
}

.divide-blue-700 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(29, 78, 216, var(--tw-divide-opacity));
}

.divide-blue-800 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(30, 64, 175, var(--tw-divide-opacity));
}

.divide-blue-900 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(30, 58, 138, var(--tw-divide-opacity));
}

.divide-indigo-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(238, 242, 255, var(--tw-divide-opacity));
}

.divide-indigo-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(224, 231, 255, var(--tw-divide-opacity));
}

.divide-indigo-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(199, 210, 254, var(--tw-divide-opacity));
}

.divide-indigo-300 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(165, 180, 252, var(--tw-divide-opacity));
}

.divide-indigo-400 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(129, 140, 248, var(--tw-divide-opacity));
}

.divide-indigo-500 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(99, 102, 241, var(--tw-divide-opacity));
}

.divide-indigo-600 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(79, 70, 229, var(--tw-divide-opacity));
}

.divide-indigo-700 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(67, 56, 202, var(--tw-divide-opacity));
}

.divide-indigo-800 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(55, 48, 163, var(--tw-divide-opacity));
}

.divide-indigo-900 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(49, 46, 129, var(--tw-divide-opacity));
}

.divide-purple-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(245, 243, 255, var(--tw-divide-opacity));
}

.divide-purple-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(237, 233, 254, var(--tw-divide-opacity));
}

.divide-purple-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(221, 214, 254, var(--tw-divide-opacity));
}

.divide-purple-300 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(196, 181, 253, var(--tw-divide-opacity));
}

.divide-purple-400 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(167, 139, 250, var(--tw-divide-opacity));
}

.divide-purple-500 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(139, 92, 246, var(--tw-divide-opacity));
}

.divide-purple-600 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(124, 58, 237, var(--tw-divide-opacity));
}

.divide-purple-700 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(109, 40, 217, var(--tw-divide-opacity));
}

.divide-purple-800 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(91, 33, 182, var(--tw-divide-opacity));
}

.divide-purple-900 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(76, 29, 149, var(--tw-divide-opacity));
}

.divide-pink-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(253, 242, 248, var(--tw-divide-opacity));
}

.divide-pink-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(252, 231, 243, var(--tw-divide-opacity));
}

.divide-pink-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(251, 207, 232, var(--tw-divide-opacity));
}

.divide-pink-300 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(249, 168, 212, var(--tw-divide-opacity));
}

.divide-pink-400 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(244, 114, 182, var(--tw-divide-opacity));
}

.divide-pink-500 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(236, 72, 153, var(--tw-divide-opacity));
}

.divide-pink-600 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(219, 39, 119, var(--tw-divide-opacity));
}

.divide-pink-700 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(190, 24, 93, var(--tw-divide-opacity));
}

.divide-pink-800 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(157, 23, 77, var(--tw-divide-opacity));
}

.divide-pink-900 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(131, 24, 67, var(--tw-divide-opacity));
}

.divide-brown-light > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(240, 233, 222, var(--tw-divide-opacity));
}

.divide-brown-semi > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(222, 214, 202, var(--tw-divide-opacity));
}

.divide-brown-default > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(123, 108, 92, var(--tw-divide-opacity));
}

.divide-brown-dark > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(61, 39, 6, var(--tw-divide-opacity));
}

.divide-success-light > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(145, 224, 156, var(--tw-divide-opacity));
}

.divide-success-default > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(45, 153, 60, var(--tw-divide-opacity));
}

.divide-success-dark > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(38, 59, 41, var(--tw-divide-opacity));
}

.divide-error-light > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(249, 134, 134, var(--tw-divide-opacity));
}

.divide-error-default > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(203, 7, 7, var(--tw-divide-opacity));
}

.divide-error-dark > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(88, 0, 0, var(--tw-divide-opacity));
}

.divide-navigation-dark > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(255, 205, 0, var(--tw-divide-opacity));
}

.divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0;
}

.divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.05;
}

.divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.1;
}

.divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.2;
}

.divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.25;
}

.divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.3;
}

.divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.4;
}

.divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.5;
}

.divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.6;
}

.divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.7;
}

.divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.75;
}

.divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.8;
}

.divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.9;
}

.divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.95;
}

.divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
}

.place-self-auto{
  place-self: auto;
}

.place-self-start{
  place-self: start;
}

.place-self-end{
  place-self: end;
}

.place-self-center{
  place-self: center;
}

.place-self-stretch{
  place-self: stretch;
}

.self-auto{
  align-self: auto;
}

.self-start{
  align-self: flex-start;
}

.self-end{
  align-self: flex-end;
}

.self-center{
  align-self: center;
}

.self-stretch{
  align-self: stretch;
}

.self-baseline{
  align-self: baseline;
}

.justify-self-auto{
  justify-self: auto;
}

.justify-self-start{
  justify-self: start;
}

.justify-self-end{
  justify-self: end;
}

.justify-self-center{
  justify-self: center;
}

.justify-self-stretch{
  justify-self: stretch;
}

.overflow-auto{
  overflow: auto;
}

.overflow-hidden{
  overflow: hidden;
}

.overflow-visible{
  overflow: visible;
}

.overflow-scroll{
  overflow: scroll;
}

.overflow-x-auto{
  overflow-x: auto;
}

.overflow-y-auto{
  overflow-y: auto;
}

.overflow-x-hidden{
  overflow-x: hidden;
}

.overflow-y-hidden{
  overflow-y: hidden;
}

.overflow-x-visible{
  overflow-x: visible;
}

.overflow-y-visible{
  overflow-y: visible;
}

.overflow-x-scroll{
  overflow-x: scroll;
}

.overflow-y-scroll{
  overflow-y: scroll;
}

.overscroll-auto{
  -ms-scroll-chaining: chained;
      overscroll-behavior: auto;
}

.overscroll-contain{
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.overscroll-none{
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.overscroll-y-auto{
  overscroll-behavior-y: auto;
}

.overscroll-y-contain{
  overscroll-behavior-y: contain;
}

.overscroll-y-none{
  overscroll-behavior-y: none;
}

.overscroll-x-auto{
  overscroll-behavior-x: auto;
}

.overscroll-x-contain{
  overscroll-behavior-x: contain;
}

.overscroll-x-none{
  overscroll-behavior-x: none;
}

.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.overflow-ellipsis{
  text-overflow: ellipsis;
}

.overflow-clip{
  text-overflow: clip;
}

.whitespace-normal{
  white-space: normal;
}

.whitespace-nowrap{
  white-space: nowrap;
}

.whitespace-pre{
  white-space: pre;
}

.whitespace-pre-line{
  white-space: pre-line;
}

.whitespace-pre-wrap{
  white-space: pre-wrap;
}

.break-normal{
  overflow-wrap: normal;
  word-break: normal;
}

.break-words{
  overflow-wrap: break-word;
}

.break-all{
  word-break: break-all;
}

.rounded-none{
  border-radius: 0px;
}

.rounded-sm{
  border-radius: 0.125rem;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-md{
  border-radius: 0.375rem;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.rounded-xl{
  border-radius: 0.75rem;
}

.rounded-2xl{
  border-radius: 1rem;
}

.rounded-3xl{
  border-radius: 1.5rem;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-t-none{
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.rounded-t-sm{
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.rounded-t{
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.rounded-t-md{
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.rounded-t-lg{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.rounded-t-xl{
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.rounded-t-2xl{
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.rounded-t-3xl{
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.rounded-t-full{
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.rounded-r-none{
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.rounded-r-sm{
  border-top-right-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem;
}

.rounded-r{
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.rounded-r-md{
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.rounded-r-lg{
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.rounded-r-xl{
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.rounded-r-2xl{
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.rounded-r-3xl{
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

.rounded-r-full{
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.rounded-b-none{
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.rounded-b-sm{
  border-bottom-right-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.rounded-b{
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-b-md{
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.rounded-b-lg{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-b-xl{
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.rounded-b-2xl{
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.rounded-b-3xl{
  border-bottom-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}

.rounded-b-full{
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-l-none{
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.rounded-l-sm{
  border-top-left-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem;
}

.rounded-l{
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-l-md{
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.rounded-l-lg{
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-l-xl{
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.rounded-l-2xl{
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.rounded-l-3xl{
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}

.rounded-l-full{
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-tl-none{
  border-top-left-radius: 0px;
}

.rounded-tl-sm{
  border-top-left-radius: 0.125rem;
}

.rounded-tl{
  border-top-left-radius: 0.25rem;
}

.rounded-tl-md{
  border-top-left-radius: 0.375rem;
}

.rounded-tl-lg{
  border-top-left-radius: 0.5rem;
}

.rounded-tl-xl{
  border-top-left-radius: 0.75rem;
}

.rounded-tl-2xl{
  border-top-left-radius: 1rem;
}

.rounded-tl-3xl{
  border-top-left-radius: 1.5rem;
}

.rounded-tl-full{
  border-top-left-radius: 9999px;
}

.rounded-tr-none{
  border-top-right-radius: 0px;
}

.rounded-tr-sm{
  border-top-right-radius: 0.125rem;
}

.rounded-tr{
  border-top-right-radius: 0.25rem;
}

.rounded-tr-md{
  border-top-right-radius: 0.375rem;
}

.rounded-tr-lg{
  border-top-right-radius: 0.5rem;
}

.rounded-tr-xl{
  border-top-right-radius: 0.75rem;
}

.rounded-tr-2xl{
  border-top-right-radius: 1rem;
}

.rounded-tr-3xl{
  border-top-right-radius: 1.5rem;
}

.rounded-tr-full{
  border-top-right-radius: 9999px;
}

.rounded-br-none{
  border-bottom-right-radius: 0px;
}

.rounded-br-sm{
  border-bottom-right-radius: 0.125rem;
}

.rounded-br{
  border-bottom-right-radius: 0.25rem;
}

.rounded-br-md{
  border-bottom-right-radius: 0.375rem;
}

.rounded-br-lg{
  border-bottom-right-radius: 0.5rem;
}

.rounded-br-xl{
  border-bottom-right-radius: 0.75rem;
}

.rounded-br-2xl{
  border-bottom-right-radius: 1rem;
}

.rounded-br-3xl{
  border-bottom-right-radius: 1.5rem;
}

.rounded-br-full{
  border-bottom-right-radius: 9999px;
}

.rounded-bl-none{
  border-bottom-left-radius: 0px;
}

.rounded-bl-sm{
  border-bottom-left-radius: 0.125rem;
}

.rounded-bl{
  border-bottom-left-radius: 0.25rem;
}

.rounded-bl-md{
  border-bottom-left-radius: 0.375rem;
}

.rounded-bl-lg{
  border-bottom-left-radius: 0.5rem;
}

.rounded-bl-xl{
  border-bottom-left-radius: 0.75rem;
}

.rounded-bl-2xl{
  border-bottom-left-radius: 1rem;
}

.rounded-bl-3xl{
  border-bottom-left-radius: 1.5rem;
}

.rounded-bl-full{
  border-bottom-left-radius: 9999px;
}

.border-0{
  border-width: 0px;
}

.border-2{
  border-width: 2px;
}

.border-4{
  border-width: 4px;
}

.border-8{
  border-width: 8px;
}

.border{
  border-width: 1px;
}

.border-t-0{
  border-top-width: 0px;
}

.border-t-2{
  border-top-width: 2px;
}

.border-t-4{
  border-top-width: 4px;
}

.border-t-8{
  border-top-width: 8px;
}

.border-t{
  border-top-width: 1px;
}

.border-r-0{
  border-right-width: 0px;
}

.border-r-2{
  border-right-width: 2px;
}

.border-r-4{
  border-right-width: 4px;
}

.border-r-8{
  border-right-width: 8px;
}

.border-r{
  border-right-width: 1px;
}

.border-b-0{
  border-bottom-width: 0px;
}

.border-b-2{
  border-bottom-width: 2px;
}

.border-b-4{
  border-bottom-width: 4px;
}

.border-b-8{
  border-bottom-width: 8px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-l-0{
  border-left-width: 0px;
}

.border-l-2{
  border-left-width: 2px;
}

.border-l-4{
  border-left-width: 4px;
}

.border-l-8{
  border-left-width: 8px;
}

.border-l{
  border-left-width: 1px;
}

.border-solid{
  border-style: solid;
}

.border-dashed{
  border-style: dashed;
}

.border-dotted{
  border-style: dotted;
}

.border-double{
  border-style: double;
}

.border-none{
  border-style: none;
}

.border-transparent{
  border-color: transparent;
}

.border-current{
  border-color: currentColor;
}

.border-black{
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.border-white{
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.border-gray-50{
  --tw-border-opacity: 1;
  border-color: rgba(249, 250, 251, var(--tw-border-opacity));
}

.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}

.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}

.border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}

.border-gray-500{
  --tw-border-opacity: 1;
  border-color: rgba(107, 114, 128, var(--tw-border-opacity));
}

.border-gray-600{
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, var(--tw-border-opacity));
}

.border-gray-700{
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, var(--tw-border-opacity));
}

.border-gray-800{
  --tw-border-opacity: 1;
  border-color: rgba(31, 41, 55, var(--tw-border-opacity));
}

.border-gray-900{
  --tw-border-opacity: 1;
  border-color: rgba(17, 24, 39, var(--tw-border-opacity));
}

.border-red-50{
  --tw-border-opacity: 1;
  border-color: rgba(254, 242, 242, var(--tw-border-opacity));
}

.border-red-100{
  --tw-border-opacity: 1;
  border-color: rgba(254, 226, 226, var(--tw-border-opacity));
}

.border-red-200{
  --tw-border-opacity: 1;
  border-color: rgba(254, 202, 202, var(--tw-border-opacity));
}

.border-red-300{
  --tw-border-opacity: 1;
  border-color: rgba(252, 165, 165, var(--tw-border-opacity));
}

.border-red-400{
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, var(--tw-border-opacity));
}

.border-red-500{
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, var(--tw-border-opacity));
}

.border-red-600{
  --tw-border-opacity: 1;
  border-color: rgba(220, 38, 38, var(--tw-border-opacity));
}

.border-red-700{
  --tw-border-opacity: 1;
  border-color: rgba(185, 28, 28, var(--tw-border-opacity));
}

.border-red-800{
  --tw-border-opacity: 1;
  border-color: rgba(153, 27, 27, var(--tw-border-opacity));
}

.border-red-900{
  --tw-border-opacity: 1;
  border-color: rgba(127, 29, 29, var(--tw-border-opacity));
}

.border-red-light{
  --tw-border-opacity: 1;
  border-color: rgba(234, 122, 122, var(--tw-border-opacity));
}

.border-red-default{
  --tw-border-opacity: 1;
  border-color: rgba(185, 0, 0, var(--tw-border-opacity));
}

.border-red-dark{
  --tw-border-opacity: 1;
  border-color: rgba(88, 0, 0, var(--tw-border-opacity));
}

.border-yellow-50{
  --tw-border-opacity: 1;
  border-color: rgba(255, 251, 235, var(--tw-border-opacity));
}

.border-yellow-100{
  --tw-border-opacity: 1;
  border-color: rgba(254, 243, 199, var(--tw-border-opacity));
}

.border-yellow-200{
  --tw-border-opacity: 1;
  border-color: rgba(253, 230, 138, var(--tw-border-opacity));
}

.border-yellow-300{
  --tw-border-opacity: 1;
  border-color: rgba(252, 211, 77, var(--tw-border-opacity));
}

.border-yellow-400{
  --tw-border-opacity: 1;
  border-color: rgba(251, 191, 36, var(--tw-border-opacity));
}

.border-yellow-500{
  --tw-border-opacity: 1;
  border-color: rgba(245, 158, 11, var(--tw-border-opacity));
}

.border-yellow-600{
  --tw-border-opacity: 1;
  border-color: rgba(217, 119, 6, var(--tw-border-opacity));
}

.border-yellow-700{
  --tw-border-opacity: 1;
  border-color: rgba(180, 83, 9, var(--tw-border-opacity));
}

.border-yellow-800{
  --tw-border-opacity: 1;
  border-color: rgba(146, 64, 14, var(--tw-border-opacity));
}

.border-yellow-900{
  --tw-border-opacity: 1;
  border-color: rgba(120, 53, 15, var(--tw-border-opacity));
}

.border-green-50{
  --tw-border-opacity: 1;
  border-color: rgba(236, 253, 245, var(--tw-border-opacity));
}

.border-green-100{
  --tw-border-opacity: 1;
  border-color: rgba(209, 250, 229, var(--tw-border-opacity));
}

.border-green-200{
  --tw-border-opacity: 1;
  border-color: rgba(167, 243, 208, var(--tw-border-opacity));
}

.border-green-300{
  --tw-border-opacity: 1;
  border-color: rgba(110, 231, 183, var(--tw-border-opacity));
}

.border-green-400{
  --tw-border-opacity: 1;
  border-color: rgba(52, 211, 153, var(--tw-border-opacity));
}

.border-green-500{
  --tw-border-opacity: 1;
  border-color: rgba(16, 185, 129, var(--tw-border-opacity));
}

.border-green-600{
  --tw-border-opacity: 1;
  border-color: rgba(5, 150, 105, var(--tw-border-opacity));
}

.border-green-700{
  --tw-border-opacity: 1;
  border-color: rgba(4, 120, 87, var(--tw-border-opacity));
}

.border-green-800{
  --tw-border-opacity: 1;
  border-color: rgba(6, 95, 70, var(--tw-border-opacity));
}

.border-green-900{
  --tw-border-opacity: 1;
  border-color: rgba(6, 78, 59, var(--tw-border-opacity));
}

.border-green-light{
  --tw-border-opacity: 1;
  border-color: rgba(181, 209, 185, var(--tw-border-opacity));
}

.border-green-default{
  --tw-border-opacity: 1;
  border-color: rgba(38, 59, 41, var(--tw-border-opacity));
}

.border-green-dark{
  --tw-border-opacity: 1;
  border-color: rgba(28, 37, 30, var(--tw-border-opacity));
}

.border-blue-50{
  --tw-border-opacity: 1;
  border-color: rgba(239, 246, 255, var(--tw-border-opacity));
}

.border-blue-100{
  --tw-border-opacity: 1;
  border-color: rgba(219, 234, 254, var(--tw-border-opacity));
}

.border-blue-200{
  --tw-border-opacity: 1;
  border-color: rgba(191, 219, 254, var(--tw-border-opacity));
}

.border-blue-300{
  --tw-border-opacity: 1;
  border-color: rgba(147, 197, 253, var(--tw-border-opacity));
}

.border-blue-400{
  --tw-border-opacity: 1;
  border-color: rgba(96, 165, 250, var(--tw-border-opacity));
}

.border-blue-500{
  --tw-border-opacity: 1;
  border-color: rgba(59, 130, 246, var(--tw-border-opacity));
}

.border-blue-600{
  --tw-border-opacity: 1;
  border-color: rgba(37, 99, 235, var(--tw-border-opacity));
}

.border-blue-700{
  --tw-border-opacity: 1;
  border-color: rgba(29, 78, 216, var(--tw-border-opacity));
}

.border-blue-800{
  --tw-border-opacity: 1;
  border-color: rgba(30, 64, 175, var(--tw-border-opacity));
}

.border-blue-900{
  --tw-border-opacity: 1;
  border-color: rgba(30, 58, 138, var(--tw-border-opacity));
}

.border-indigo-50{
  --tw-border-opacity: 1;
  border-color: rgba(238, 242, 255, var(--tw-border-opacity));
}

.border-indigo-100{
  --tw-border-opacity: 1;
  border-color: rgba(224, 231, 255, var(--tw-border-opacity));
}

.border-indigo-200{
  --tw-border-opacity: 1;
  border-color: rgba(199, 210, 254, var(--tw-border-opacity));
}

.border-indigo-300{
  --tw-border-opacity: 1;
  border-color: rgba(165, 180, 252, var(--tw-border-opacity));
}

.border-indigo-400{
  --tw-border-opacity: 1;
  border-color: rgba(129, 140, 248, var(--tw-border-opacity));
}

.border-indigo-500{
  --tw-border-opacity: 1;
  border-color: rgba(99, 102, 241, var(--tw-border-opacity));
}

.border-indigo-600{
  --tw-border-opacity: 1;
  border-color: rgba(79, 70, 229, var(--tw-border-opacity));
}

.border-indigo-700{
  --tw-border-opacity: 1;
  border-color: rgba(67, 56, 202, var(--tw-border-opacity));
}

.border-indigo-800{
  --tw-border-opacity: 1;
  border-color: rgba(55, 48, 163, var(--tw-border-opacity));
}

.border-indigo-900{
  --tw-border-opacity: 1;
  border-color: rgba(49, 46, 129, var(--tw-border-opacity));
}

.border-purple-50{
  --tw-border-opacity: 1;
  border-color: rgba(245, 243, 255, var(--tw-border-opacity));
}

.border-purple-100{
  --tw-border-opacity: 1;
  border-color: rgba(237, 233, 254, var(--tw-border-opacity));
}

.border-purple-200{
  --tw-border-opacity: 1;
  border-color: rgba(221, 214, 254, var(--tw-border-opacity));
}

.border-purple-300{
  --tw-border-opacity: 1;
  border-color: rgba(196, 181, 253, var(--tw-border-opacity));
}

.border-purple-400{
  --tw-border-opacity: 1;
  border-color: rgba(167, 139, 250, var(--tw-border-opacity));
}

.border-purple-500{
  --tw-border-opacity: 1;
  border-color: rgba(139, 92, 246, var(--tw-border-opacity));
}

.border-purple-600{
  --tw-border-opacity: 1;
  border-color: rgba(124, 58, 237, var(--tw-border-opacity));
}

.border-purple-700{
  --tw-border-opacity: 1;
  border-color: rgba(109, 40, 217, var(--tw-border-opacity));
}

.border-purple-800{
  --tw-border-opacity: 1;
  border-color: rgba(91, 33, 182, var(--tw-border-opacity));
}

.border-purple-900{
  --tw-border-opacity: 1;
  border-color: rgba(76, 29, 149, var(--tw-border-opacity));
}

.border-pink-50{
  --tw-border-opacity: 1;
  border-color: rgba(253, 242, 248, var(--tw-border-opacity));
}

.border-pink-100{
  --tw-border-opacity: 1;
  border-color: rgba(252, 231, 243, var(--tw-border-opacity));
}

.border-pink-200{
  --tw-border-opacity: 1;
  border-color: rgba(251, 207, 232, var(--tw-border-opacity));
}

.border-pink-300{
  --tw-border-opacity: 1;
  border-color: rgba(249, 168, 212, var(--tw-border-opacity));
}

.border-pink-400{
  --tw-border-opacity: 1;
  border-color: rgba(244, 114, 182, var(--tw-border-opacity));
}

.border-pink-500{
  --tw-border-opacity: 1;
  border-color: rgba(236, 72, 153, var(--tw-border-opacity));
}

.border-pink-600{
  --tw-border-opacity: 1;
  border-color: rgba(219, 39, 119, var(--tw-border-opacity));
}

.border-pink-700{
  --tw-border-opacity: 1;
  border-color: rgba(190, 24, 93, var(--tw-border-opacity));
}

.border-pink-800{
  --tw-border-opacity: 1;
  border-color: rgba(157, 23, 77, var(--tw-border-opacity));
}

.border-pink-900{
  --tw-border-opacity: 1;
  border-color: rgba(131, 24, 67, var(--tw-border-opacity));
}

.border-brown-light{
  --tw-border-opacity: 1;
  border-color: rgba(240, 233, 222, var(--tw-border-opacity));
}

.border-brown-semi{
  --tw-border-opacity: 1;
  border-color: rgba(222, 214, 202, var(--tw-border-opacity));
}

.border-brown-default{
  --tw-border-opacity: 1;
  border-color: rgba(123, 108, 92, var(--tw-border-opacity));
}

.border-brown-dark{
  --tw-border-opacity: 1;
  border-color: rgba(61, 39, 6, var(--tw-border-opacity));
}

.border-success-light{
  --tw-border-opacity: 1;
  border-color: rgba(145, 224, 156, var(--tw-border-opacity));
}

.border-success-default{
  --tw-border-opacity: 1;
  border-color: rgba(45, 153, 60, var(--tw-border-opacity));
}

.border-success-dark{
  --tw-border-opacity: 1;
  border-color: rgba(38, 59, 41, var(--tw-border-opacity));
}

.border-error-light{
  --tw-border-opacity: 1;
  border-color: rgba(249, 134, 134, var(--tw-border-opacity));
}

.border-error-default{
  --tw-border-opacity: 1;
  border-color: rgba(203, 7, 7, var(--tw-border-opacity));
}

.border-error-dark{
  --tw-border-opacity: 1;
  border-color: rgba(88, 0, 0, var(--tw-border-opacity));
}

.border-navigation-dark{
  --tw-border-opacity: 1;
  border-color: rgba(255, 205, 0, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-transparent{
  border-color: transparent;
}

.group:hover .group-hover\:border-current{
  border-color: currentColor;
}

.group:hover .group-hover\:border-black{
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-white{
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-gray-50{
  --tw-border-opacity: 1;
  border-color: rgba(249, 250, 251, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-gray-500{
  --tw-border-opacity: 1;
  border-color: rgba(107, 114, 128, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-gray-600{
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-gray-700{
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-gray-800{
  --tw-border-opacity: 1;
  border-color: rgba(31, 41, 55, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-gray-900{
  --tw-border-opacity: 1;
  border-color: rgba(17, 24, 39, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-50{
  --tw-border-opacity: 1;
  border-color: rgba(254, 242, 242, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-100{
  --tw-border-opacity: 1;
  border-color: rgba(254, 226, 226, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-200{
  --tw-border-opacity: 1;
  border-color: rgba(254, 202, 202, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-300{
  --tw-border-opacity: 1;
  border-color: rgba(252, 165, 165, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-400{
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-500{
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-600{
  --tw-border-opacity: 1;
  border-color: rgba(220, 38, 38, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-700{
  --tw-border-opacity: 1;
  border-color: rgba(185, 28, 28, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-800{
  --tw-border-opacity: 1;
  border-color: rgba(153, 27, 27, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-900{
  --tw-border-opacity: 1;
  border-color: rgba(127, 29, 29, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-light{
  --tw-border-opacity: 1;
  border-color: rgba(234, 122, 122, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-default{
  --tw-border-opacity: 1;
  border-color: rgba(185, 0, 0, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-red-dark{
  --tw-border-opacity: 1;
  border-color: rgba(88, 0, 0, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-yellow-50{
  --tw-border-opacity: 1;
  border-color: rgba(255, 251, 235, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-yellow-100{
  --tw-border-opacity: 1;
  border-color: rgba(254, 243, 199, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-yellow-200{
  --tw-border-opacity: 1;
  border-color: rgba(253, 230, 138, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-yellow-300{
  --tw-border-opacity: 1;
  border-color: rgba(252, 211, 77, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-yellow-400{
  --tw-border-opacity: 1;
  border-color: rgba(251, 191, 36, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-yellow-500{
  --tw-border-opacity: 1;
  border-color: rgba(245, 158, 11, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-yellow-600{
  --tw-border-opacity: 1;
  border-color: rgba(217, 119, 6, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-yellow-700{
  --tw-border-opacity: 1;
  border-color: rgba(180, 83, 9, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-yellow-800{
  --tw-border-opacity: 1;
  border-color: rgba(146, 64, 14, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-yellow-900{
  --tw-border-opacity: 1;
  border-color: rgba(120, 53, 15, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-50{
  --tw-border-opacity: 1;
  border-color: rgba(236, 253, 245, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-100{
  --tw-border-opacity: 1;
  border-color: rgba(209, 250, 229, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-200{
  --tw-border-opacity: 1;
  border-color: rgba(167, 243, 208, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-300{
  --tw-border-opacity: 1;
  border-color: rgba(110, 231, 183, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-400{
  --tw-border-opacity: 1;
  border-color: rgba(52, 211, 153, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-500{
  --tw-border-opacity: 1;
  border-color: rgba(16, 185, 129, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-600{
  --tw-border-opacity: 1;
  border-color: rgba(5, 150, 105, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-700{
  --tw-border-opacity: 1;
  border-color: rgba(4, 120, 87, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-800{
  --tw-border-opacity: 1;
  border-color: rgba(6, 95, 70, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-900{
  --tw-border-opacity: 1;
  border-color: rgba(6, 78, 59, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-light{
  --tw-border-opacity: 1;
  border-color: rgba(181, 209, 185, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-default{
  --tw-border-opacity: 1;
  border-color: rgba(38, 59, 41, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-green-dark{
  --tw-border-opacity: 1;
  border-color: rgba(28, 37, 30, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-blue-50{
  --tw-border-opacity: 1;
  border-color: rgba(239, 246, 255, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-blue-100{
  --tw-border-opacity: 1;
  border-color: rgba(219, 234, 254, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-blue-200{
  --tw-border-opacity: 1;
  border-color: rgba(191, 219, 254, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-blue-300{
  --tw-border-opacity: 1;
  border-color: rgba(147, 197, 253, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-blue-400{
  --tw-border-opacity: 1;
  border-color: rgba(96, 165, 250, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-blue-500{
  --tw-border-opacity: 1;
  border-color: rgba(59, 130, 246, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-blue-600{
  --tw-border-opacity: 1;
  border-color: rgba(37, 99, 235, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-blue-700{
  --tw-border-opacity: 1;
  border-color: rgba(29, 78, 216, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-blue-800{
  --tw-border-opacity: 1;
  border-color: rgba(30, 64, 175, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-blue-900{
  --tw-border-opacity: 1;
  border-color: rgba(30, 58, 138, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-indigo-50{
  --tw-border-opacity: 1;
  border-color: rgba(238, 242, 255, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-indigo-100{
  --tw-border-opacity: 1;
  border-color: rgba(224, 231, 255, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-indigo-200{
  --tw-border-opacity: 1;
  border-color: rgba(199, 210, 254, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-indigo-300{
  --tw-border-opacity: 1;
  border-color: rgba(165, 180, 252, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-indigo-400{
  --tw-border-opacity: 1;
  border-color: rgba(129, 140, 248, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-indigo-500{
  --tw-border-opacity: 1;
  border-color: rgba(99, 102, 241, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-indigo-600{
  --tw-border-opacity: 1;
  border-color: rgba(79, 70, 229, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-indigo-700{
  --tw-border-opacity: 1;
  border-color: rgba(67, 56, 202, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-indigo-800{
  --tw-border-opacity: 1;
  border-color: rgba(55, 48, 163, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-indigo-900{
  --tw-border-opacity: 1;
  border-color: rgba(49, 46, 129, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-purple-50{
  --tw-border-opacity: 1;
  border-color: rgba(245, 243, 255, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-purple-100{
  --tw-border-opacity: 1;
  border-color: rgba(237, 233, 254, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-purple-200{
  --tw-border-opacity: 1;
  border-color: rgba(221, 214, 254, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-purple-300{
  --tw-border-opacity: 1;
  border-color: rgba(196, 181, 253, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-purple-400{
  --tw-border-opacity: 1;
  border-color: rgba(167, 139, 250, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-purple-500{
  --tw-border-opacity: 1;
  border-color: rgba(139, 92, 246, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-purple-600{
  --tw-border-opacity: 1;
  border-color: rgba(124, 58, 237, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-purple-700{
  --tw-border-opacity: 1;
  border-color: rgba(109, 40, 217, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-purple-800{
  --tw-border-opacity: 1;
  border-color: rgba(91, 33, 182, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-purple-900{
  --tw-border-opacity: 1;
  border-color: rgba(76, 29, 149, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-pink-50{
  --tw-border-opacity: 1;
  border-color: rgba(253, 242, 248, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-pink-100{
  --tw-border-opacity: 1;
  border-color: rgba(252, 231, 243, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-pink-200{
  --tw-border-opacity: 1;
  border-color: rgba(251, 207, 232, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-pink-300{
  --tw-border-opacity: 1;
  border-color: rgba(249, 168, 212, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-pink-400{
  --tw-border-opacity: 1;
  border-color: rgba(244, 114, 182, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-pink-500{
  --tw-border-opacity: 1;
  border-color: rgba(236, 72, 153, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-pink-600{
  --tw-border-opacity: 1;
  border-color: rgba(219, 39, 119, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-pink-700{
  --tw-border-opacity: 1;
  border-color: rgba(190, 24, 93, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-pink-800{
  --tw-border-opacity: 1;
  border-color: rgba(157, 23, 77, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-pink-900{
  --tw-border-opacity: 1;
  border-color: rgba(131, 24, 67, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-brown-light{
  --tw-border-opacity: 1;
  border-color: rgba(240, 233, 222, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-brown-semi{
  --tw-border-opacity: 1;
  border-color: rgba(222, 214, 202, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-brown-default{
  --tw-border-opacity: 1;
  border-color: rgba(123, 108, 92, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-brown-dark{
  --tw-border-opacity: 1;
  border-color: rgba(61, 39, 6, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-success-light{
  --tw-border-opacity: 1;
  border-color: rgba(145, 224, 156, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-success-default{
  --tw-border-opacity: 1;
  border-color: rgba(45, 153, 60, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-success-dark{
  --tw-border-opacity: 1;
  border-color: rgba(38, 59, 41, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-error-light{
  --tw-border-opacity: 1;
  border-color: rgba(249, 134, 134, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-error-default{
  --tw-border-opacity: 1;
  border-color: rgba(203, 7, 7, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-error-dark{
  --tw-border-opacity: 1;
  border-color: rgba(88, 0, 0, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-navigation-dark{
  --tw-border-opacity: 1;
  border-color: rgba(255, 205, 0, var(--tw-border-opacity));
}

.focus-within\:border-transparent:focus-within{
  border-color: transparent;
}

.focus-within\:border-current:focus-within{
  border-color: currentColor;
}

.focus-within\:border-black:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.focus-within\:border-white:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.focus-within\:border-gray-50:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(249, 250, 251, var(--tw-border-opacity));
}

.focus-within\:border-gray-100:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}

.focus-within\:border-gray-200:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

.focus-within\:border-gray-300:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}

.focus-within\:border-gray-400:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}

.focus-within\:border-gray-500:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(107, 114, 128, var(--tw-border-opacity));
}

.focus-within\:border-gray-600:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, var(--tw-border-opacity));
}

.focus-within\:border-gray-700:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, var(--tw-border-opacity));
}

.focus-within\:border-gray-800:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(31, 41, 55, var(--tw-border-opacity));
}

.focus-within\:border-gray-900:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(17, 24, 39, var(--tw-border-opacity));
}

.focus-within\:border-red-50:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(254, 242, 242, var(--tw-border-opacity));
}

.focus-within\:border-red-100:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(254, 226, 226, var(--tw-border-opacity));
}

.focus-within\:border-red-200:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(254, 202, 202, var(--tw-border-opacity));
}

.focus-within\:border-red-300:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(252, 165, 165, var(--tw-border-opacity));
}

.focus-within\:border-red-400:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, var(--tw-border-opacity));
}

.focus-within\:border-red-500:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, var(--tw-border-opacity));
}

.focus-within\:border-red-600:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(220, 38, 38, var(--tw-border-opacity));
}

.focus-within\:border-red-700:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(185, 28, 28, var(--tw-border-opacity));
}

.focus-within\:border-red-800:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(153, 27, 27, var(--tw-border-opacity));
}

.focus-within\:border-red-900:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(127, 29, 29, var(--tw-border-opacity));
}

.focus-within\:border-red-light:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(234, 122, 122, var(--tw-border-opacity));
}

.focus-within\:border-red-default:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(185, 0, 0, var(--tw-border-opacity));
}

.focus-within\:border-red-dark:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(88, 0, 0, var(--tw-border-opacity));
}

.focus-within\:border-yellow-50:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(255, 251, 235, var(--tw-border-opacity));
}

.focus-within\:border-yellow-100:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(254, 243, 199, var(--tw-border-opacity));
}

.focus-within\:border-yellow-200:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(253, 230, 138, var(--tw-border-opacity));
}

.focus-within\:border-yellow-300:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(252, 211, 77, var(--tw-border-opacity));
}

.focus-within\:border-yellow-400:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(251, 191, 36, var(--tw-border-opacity));
}

.focus-within\:border-yellow-500:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(245, 158, 11, var(--tw-border-opacity));
}

.focus-within\:border-yellow-600:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(217, 119, 6, var(--tw-border-opacity));
}

.focus-within\:border-yellow-700:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(180, 83, 9, var(--tw-border-opacity));
}

.focus-within\:border-yellow-800:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(146, 64, 14, var(--tw-border-opacity));
}

.focus-within\:border-yellow-900:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(120, 53, 15, var(--tw-border-opacity));
}

.focus-within\:border-green-50:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(236, 253, 245, var(--tw-border-opacity));
}

.focus-within\:border-green-100:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(209, 250, 229, var(--tw-border-opacity));
}

.focus-within\:border-green-200:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(167, 243, 208, var(--tw-border-opacity));
}

.focus-within\:border-green-300:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(110, 231, 183, var(--tw-border-opacity));
}

.focus-within\:border-green-400:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(52, 211, 153, var(--tw-border-opacity));
}

.focus-within\:border-green-500:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(16, 185, 129, var(--tw-border-opacity));
}

.focus-within\:border-green-600:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(5, 150, 105, var(--tw-border-opacity));
}

.focus-within\:border-green-700:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(4, 120, 87, var(--tw-border-opacity));
}

.focus-within\:border-green-800:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(6, 95, 70, var(--tw-border-opacity));
}

.focus-within\:border-green-900:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(6, 78, 59, var(--tw-border-opacity));
}

.focus-within\:border-green-light:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(181, 209, 185, var(--tw-border-opacity));
}

.focus-within\:border-green-default:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(38, 59, 41, var(--tw-border-opacity));
}

.focus-within\:border-green-dark:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(28, 37, 30, var(--tw-border-opacity));
}

.focus-within\:border-blue-50:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(239, 246, 255, var(--tw-border-opacity));
}

.focus-within\:border-blue-100:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(219, 234, 254, var(--tw-border-opacity));
}

.focus-within\:border-blue-200:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(191, 219, 254, var(--tw-border-opacity));
}

.focus-within\:border-blue-300:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(147, 197, 253, var(--tw-border-opacity));
}

.focus-within\:border-blue-400:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(96, 165, 250, var(--tw-border-opacity));
}

.focus-within\:border-blue-500:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(59, 130, 246, var(--tw-border-opacity));
}

.focus-within\:border-blue-600:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(37, 99, 235, var(--tw-border-opacity));
}

.focus-within\:border-blue-700:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(29, 78, 216, var(--tw-border-opacity));
}

.focus-within\:border-blue-800:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(30, 64, 175, var(--tw-border-opacity));
}

.focus-within\:border-blue-900:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(30, 58, 138, var(--tw-border-opacity));
}

.focus-within\:border-indigo-50:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(238, 242, 255, var(--tw-border-opacity));
}

.focus-within\:border-indigo-100:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(224, 231, 255, var(--tw-border-opacity));
}

.focus-within\:border-indigo-200:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(199, 210, 254, var(--tw-border-opacity));
}

.focus-within\:border-indigo-300:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(165, 180, 252, var(--tw-border-opacity));
}

.focus-within\:border-indigo-400:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(129, 140, 248, var(--tw-border-opacity));
}

.focus-within\:border-indigo-500:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(99, 102, 241, var(--tw-border-opacity));
}

.focus-within\:border-indigo-600:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(79, 70, 229, var(--tw-border-opacity));
}

.focus-within\:border-indigo-700:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(67, 56, 202, var(--tw-border-opacity));
}

.focus-within\:border-indigo-800:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(55, 48, 163, var(--tw-border-opacity));
}

.focus-within\:border-indigo-900:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(49, 46, 129, var(--tw-border-opacity));
}

.focus-within\:border-purple-50:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(245, 243, 255, var(--tw-border-opacity));
}

.focus-within\:border-purple-100:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(237, 233, 254, var(--tw-border-opacity));
}

.focus-within\:border-purple-200:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(221, 214, 254, var(--tw-border-opacity));
}

.focus-within\:border-purple-300:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(196, 181, 253, var(--tw-border-opacity));
}

.focus-within\:border-purple-400:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(167, 139, 250, var(--tw-border-opacity));
}

.focus-within\:border-purple-500:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(139, 92, 246, var(--tw-border-opacity));
}

.focus-within\:border-purple-600:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(124, 58, 237, var(--tw-border-opacity));
}

.focus-within\:border-purple-700:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(109, 40, 217, var(--tw-border-opacity));
}

.focus-within\:border-purple-800:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(91, 33, 182, var(--tw-border-opacity));
}

.focus-within\:border-purple-900:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(76, 29, 149, var(--tw-border-opacity));
}

.focus-within\:border-pink-50:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(253, 242, 248, var(--tw-border-opacity));
}

.focus-within\:border-pink-100:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(252, 231, 243, var(--tw-border-opacity));
}

.focus-within\:border-pink-200:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(251, 207, 232, var(--tw-border-opacity));
}

.focus-within\:border-pink-300:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(249, 168, 212, var(--tw-border-opacity));
}

.focus-within\:border-pink-400:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(244, 114, 182, var(--tw-border-opacity));
}

.focus-within\:border-pink-500:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(236, 72, 153, var(--tw-border-opacity));
}

.focus-within\:border-pink-600:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(219, 39, 119, var(--tw-border-opacity));
}

.focus-within\:border-pink-700:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(190, 24, 93, var(--tw-border-opacity));
}

.focus-within\:border-pink-800:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(157, 23, 77, var(--tw-border-opacity));
}

.focus-within\:border-pink-900:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(131, 24, 67, var(--tw-border-opacity));
}

.focus-within\:border-brown-light:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(240, 233, 222, var(--tw-border-opacity));
}

.focus-within\:border-brown-semi:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(222, 214, 202, var(--tw-border-opacity));
}

.focus-within\:border-brown-default:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(123, 108, 92, var(--tw-border-opacity));
}

.focus-within\:border-brown-dark:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(61, 39, 6, var(--tw-border-opacity));
}

.focus-within\:border-success-light:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(145, 224, 156, var(--tw-border-opacity));
}

.focus-within\:border-success-default:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(45, 153, 60, var(--tw-border-opacity));
}

.focus-within\:border-success-dark:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(38, 59, 41, var(--tw-border-opacity));
}

.focus-within\:border-error-light:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(249, 134, 134, var(--tw-border-opacity));
}

.focus-within\:border-error-default:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(203, 7, 7, var(--tw-border-opacity));
}

.focus-within\:border-error-dark:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(88, 0, 0, var(--tw-border-opacity));
}

.focus-within\:border-navigation-dark:focus-within{
  --tw-border-opacity: 1;
  border-color: rgba(255, 205, 0, var(--tw-border-opacity));
}

.hover\:border-transparent:hover{
  border-color: transparent;
}

.hover\:border-current:hover{
  border-color: currentColor;
}

.hover\:border-black:hover{
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.hover\:border-white:hover{
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.hover\:border-gray-50:hover{
  --tw-border-opacity: 1;
  border-color: rgba(249, 250, 251, var(--tw-border-opacity));
}

.hover\:border-gray-100:hover{
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}

.hover\:border-gray-200:hover{
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

.hover\:border-gray-300:hover{
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}

.hover\:border-gray-400:hover{
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}

.hover\:border-gray-500:hover{
  --tw-border-opacity: 1;
  border-color: rgba(107, 114, 128, var(--tw-border-opacity));
}

.hover\:border-gray-600:hover{
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, var(--tw-border-opacity));
}

.hover\:border-gray-700:hover{
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, var(--tw-border-opacity));
}

.hover\:border-gray-800:hover{
  --tw-border-opacity: 1;
  border-color: rgba(31, 41, 55, var(--tw-border-opacity));
}

.hover\:border-gray-900:hover{
  --tw-border-opacity: 1;
  border-color: rgba(17, 24, 39, var(--tw-border-opacity));
}

.hover\:border-red-50:hover{
  --tw-border-opacity: 1;
  border-color: rgba(254, 242, 242, var(--tw-border-opacity));
}

.hover\:border-red-100:hover{
  --tw-border-opacity: 1;
  border-color: rgba(254, 226, 226, var(--tw-border-opacity));
}

.hover\:border-red-200:hover{
  --tw-border-opacity: 1;
  border-color: rgba(254, 202, 202, var(--tw-border-opacity));
}

.hover\:border-red-300:hover{
  --tw-border-opacity: 1;
  border-color: rgba(252, 165, 165, var(--tw-border-opacity));
}

.hover\:border-red-400:hover{
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, var(--tw-border-opacity));
}

.hover\:border-red-500:hover{
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, var(--tw-border-opacity));
}

.hover\:border-red-600:hover{
  --tw-border-opacity: 1;
  border-color: rgba(220, 38, 38, var(--tw-border-opacity));
}

.hover\:border-red-700:hover{
  --tw-border-opacity: 1;
  border-color: rgba(185, 28, 28, var(--tw-border-opacity));
}

.hover\:border-red-800:hover{
  --tw-border-opacity: 1;
  border-color: rgba(153, 27, 27, var(--tw-border-opacity));
}

.hover\:border-red-900:hover{
  --tw-border-opacity: 1;
  border-color: rgba(127, 29, 29, var(--tw-border-opacity));
}

.hover\:border-red-light:hover{
  --tw-border-opacity: 1;
  border-color: rgba(234, 122, 122, var(--tw-border-opacity));
}

.hover\:border-red-default:hover{
  --tw-border-opacity: 1;
  border-color: rgba(185, 0, 0, var(--tw-border-opacity));
}

.hover\:border-red-dark:hover{
  --tw-border-opacity: 1;
  border-color: rgba(88, 0, 0, var(--tw-border-opacity));
}

.hover\:border-yellow-50:hover{
  --tw-border-opacity: 1;
  border-color: rgba(255, 251, 235, var(--tw-border-opacity));
}

.hover\:border-yellow-100:hover{
  --tw-border-opacity: 1;
  border-color: rgba(254, 243, 199, var(--tw-border-opacity));
}

.hover\:border-yellow-200:hover{
  --tw-border-opacity: 1;
  border-color: rgba(253, 230, 138, var(--tw-border-opacity));
}

.hover\:border-yellow-300:hover{
  --tw-border-opacity: 1;
  border-color: rgba(252, 211, 77, var(--tw-border-opacity));
}

.hover\:border-yellow-400:hover{
  --tw-border-opacity: 1;
  border-color: rgba(251, 191, 36, var(--tw-border-opacity));
}

.hover\:border-yellow-500:hover{
  --tw-border-opacity: 1;
  border-color: rgba(245, 158, 11, var(--tw-border-opacity));
}

.hover\:border-yellow-600:hover{
  --tw-border-opacity: 1;
  border-color: rgba(217, 119, 6, var(--tw-border-opacity));
}

.hover\:border-yellow-700:hover{
  --tw-border-opacity: 1;
  border-color: rgba(180, 83, 9, var(--tw-border-opacity));
}

.hover\:border-yellow-800:hover{
  --tw-border-opacity: 1;
  border-color: rgba(146, 64, 14, var(--tw-border-opacity));
}

.hover\:border-yellow-900:hover{
  --tw-border-opacity: 1;
  border-color: rgba(120, 53, 15, var(--tw-border-opacity));
}

.hover\:border-green-50:hover{
  --tw-border-opacity: 1;
  border-color: rgba(236, 253, 245, var(--tw-border-opacity));
}

.hover\:border-green-100:hover{
  --tw-border-opacity: 1;
  border-color: rgba(209, 250, 229, var(--tw-border-opacity));
}

.hover\:border-green-200:hover{
  --tw-border-opacity: 1;
  border-color: rgba(167, 243, 208, var(--tw-border-opacity));
}

.hover\:border-green-300:hover{
  --tw-border-opacity: 1;
  border-color: rgba(110, 231, 183, var(--tw-border-opacity));
}

.hover\:border-green-400:hover{
  --tw-border-opacity: 1;
  border-color: rgba(52, 211, 153, var(--tw-border-opacity));
}

.hover\:border-green-500:hover{
  --tw-border-opacity: 1;
  border-color: rgba(16, 185, 129, var(--tw-border-opacity));
}

.hover\:border-green-600:hover{
  --tw-border-opacity: 1;
  border-color: rgba(5, 150, 105, var(--tw-border-opacity));
}

.hover\:border-green-700:hover{
  --tw-border-opacity: 1;
  border-color: rgba(4, 120, 87, var(--tw-border-opacity));
}

.hover\:border-green-800:hover{
  --tw-border-opacity: 1;
  border-color: rgba(6, 95, 70, var(--tw-border-opacity));
}

.hover\:border-green-900:hover{
  --tw-border-opacity: 1;
  border-color: rgba(6, 78, 59, var(--tw-border-opacity));
}

.hover\:border-green-light:hover{
  --tw-border-opacity: 1;
  border-color: rgba(181, 209, 185, var(--tw-border-opacity));
}

.hover\:border-green-default:hover{
  --tw-border-opacity: 1;
  border-color: rgba(38, 59, 41, var(--tw-border-opacity));
}

.hover\:border-green-dark:hover{
  --tw-border-opacity: 1;
  border-color: rgba(28, 37, 30, var(--tw-border-opacity));
}

.hover\:border-blue-50:hover{
  --tw-border-opacity: 1;
  border-color: rgba(239, 246, 255, var(--tw-border-opacity));
}

.hover\:border-blue-100:hover{
  --tw-border-opacity: 1;
  border-color: rgba(219, 234, 254, var(--tw-border-opacity));
}

.hover\:border-blue-200:hover{
  --tw-border-opacity: 1;
  border-color: rgba(191, 219, 254, var(--tw-border-opacity));
}

.hover\:border-blue-300:hover{
  --tw-border-opacity: 1;
  border-color: rgba(147, 197, 253, var(--tw-border-opacity));
}

.hover\:border-blue-400:hover{
  --tw-border-opacity: 1;
  border-color: rgba(96, 165, 250, var(--tw-border-opacity));
}

.hover\:border-blue-500:hover{
  --tw-border-opacity: 1;
  border-color: rgba(59, 130, 246, var(--tw-border-opacity));
}

.hover\:border-blue-600:hover{
  --tw-border-opacity: 1;
  border-color: rgba(37, 99, 235, var(--tw-border-opacity));
}

.hover\:border-blue-700:hover{
  --tw-border-opacity: 1;
  border-color: rgba(29, 78, 216, var(--tw-border-opacity));
}

.hover\:border-blue-800:hover{
  --tw-border-opacity: 1;
  border-color: rgba(30, 64, 175, var(--tw-border-opacity));
}

.hover\:border-blue-900:hover{
  --tw-border-opacity: 1;
  border-color: rgba(30, 58, 138, var(--tw-border-opacity));
}

.hover\:border-indigo-50:hover{
  --tw-border-opacity: 1;
  border-color: rgba(238, 242, 255, var(--tw-border-opacity));
}

.hover\:border-indigo-100:hover{
  --tw-border-opacity: 1;
  border-color: rgba(224, 231, 255, var(--tw-border-opacity));
}

.hover\:border-indigo-200:hover{
  --tw-border-opacity: 1;
  border-color: rgba(199, 210, 254, var(--tw-border-opacity));
}

.hover\:border-indigo-300:hover{
  --tw-border-opacity: 1;
  border-color: rgba(165, 180, 252, var(--tw-border-opacity));
}

.hover\:border-indigo-400:hover{
  --tw-border-opacity: 1;
  border-color: rgba(129, 140, 248, var(--tw-border-opacity));
}

.hover\:border-indigo-500:hover{
  --tw-border-opacity: 1;
  border-color: rgba(99, 102, 241, var(--tw-border-opacity));
}

.hover\:border-indigo-600:hover{
  --tw-border-opacity: 1;
  border-color: rgba(79, 70, 229, var(--tw-border-opacity));
}

.hover\:border-indigo-700:hover{
  --tw-border-opacity: 1;
  border-color: rgba(67, 56, 202, var(--tw-border-opacity));
}

.hover\:border-indigo-800:hover{
  --tw-border-opacity: 1;
  border-color: rgba(55, 48, 163, var(--tw-border-opacity));
}

.hover\:border-indigo-900:hover{
  --tw-border-opacity: 1;
  border-color: rgba(49, 46, 129, var(--tw-border-opacity));
}

.hover\:border-purple-50:hover{
  --tw-border-opacity: 1;
  border-color: rgba(245, 243, 255, var(--tw-border-opacity));
}

.hover\:border-purple-100:hover{
  --tw-border-opacity: 1;
  border-color: rgba(237, 233, 254, var(--tw-border-opacity));
}

.hover\:border-purple-200:hover{
  --tw-border-opacity: 1;
  border-color: rgba(221, 214, 254, var(--tw-border-opacity));
}

.hover\:border-purple-300:hover{
  --tw-border-opacity: 1;
  border-color: rgba(196, 181, 253, var(--tw-border-opacity));
}

.hover\:border-purple-400:hover{
  --tw-border-opacity: 1;
  border-color: rgba(167, 139, 250, var(--tw-border-opacity));
}

.hover\:border-purple-500:hover{
  --tw-border-opacity: 1;
  border-color: rgba(139, 92, 246, var(--tw-border-opacity));
}

.hover\:border-purple-600:hover{
  --tw-border-opacity: 1;
  border-color: rgba(124, 58, 237, var(--tw-border-opacity));
}

.hover\:border-purple-700:hover{
  --tw-border-opacity: 1;
  border-color: rgba(109, 40, 217, var(--tw-border-opacity));
}

.hover\:border-purple-800:hover{
  --tw-border-opacity: 1;
  border-color: rgba(91, 33, 182, var(--tw-border-opacity));
}

.hover\:border-purple-900:hover{
  --tw-border-opacity: 1;
  border-color: rgba(76, 29, 149, var(--tw-border-opacity));
}

.hover\:border-pink-50:hover{
  --tw-border-opacity: 1;
  border-color: rgba(253, 242, 248, var(--tw-border-opacity));
}

.hover\:border-pink-100:hover{
  --tw-border-opacity: 1;
  border-color: rgba(252, 231, 243, var(--tw-border-opacity));
}

.hover\:border-pink-200:hover{
  --tw-border-opacity: 1;
  border-color: rgba(251, 207, 232, var(--tw-border-opacity));
}

.hover\:border-pink-300:hover{
  --tw-border-opacity: 1;
  border-color: rgba(249, 168, 212, var(--tw-border-opacity));
}

.hover\:border-pink-400:hover{
  --tw-border-opacity: 1;
  border-color: rgba(244, 114, 182, var(--tw-border-opacity));
}

.hover\:border-pink-500:hover{
  --tw-border-opacity: 1;
  border-color: rgba(236, 72, 153, var(--tw-border-opacity));
}

.hover\:border-pink-600:hover{
  --tw-border-opacity: 1;
  border-color: rgba(219, 39, 119, var(--tw-border-opacity));
}

.hover\:border-pink-700:hover{
  --tw-border-opacity: 1;
  border-color: rgba(190, 24, 93, var(--tw-border-opacity));
}

.hover\:border-pink-800:hover{
  --tw-border-opacity: 1;
  border-color: rgba(157, 23, 77, var(--tw-border-opacity));
}

.hover\:border-pink-900:hover{
  --tw-border-opacity: 1;
  border-color: rgba(131, 24, 67, var(--tw-border-opacity));
}

.hover\:border-brown-light:hover{
  --tw-border-opacity: 1;
  border-color: rgba(240, 233, 222, var(--tw-border-opacity));
}

.hover\:border-brown-semi:hover{
  --tw-border-opacity: 1;
  border-color: rgba(222, 214, 202, var(--tw-border-opacity));
}

.hover\:border-brown-default:hover{
  --tw-border-opacity: 1;
  border-color: rgba(123, 108, 92, var(--tw-border-opacity));
}

.hover\:border-brown-dark:hover{
  --tw-border-opacity: 1;
  border-color: rgba(61, 39, 6, var(--tw-border-opacity));
}

.hover\:border-success-light:hover{
  --tw-border-opacity: 1;
  border-color: rgba(145, 224, 156, var(--tw-border-opacity));
}

.hover\:border-success-default:hover{
  --tw-border-opacity: 1;
  border-color: rgba(45, 153, 60, var(--tw-border-opacity));
}

.hover\:border-success-dark:hover{
  --tw-border-opacity: 1;
  border-color: rgba(38, 59, 41, var(--tw-border-opacity));
}

.hover\:border-error-light:hover{
  --tw-border-opacity: 1;
  border-color: rgba(249, 134, 134, var(--tw-border-opacity));
}

.hover\:border-error-default:hover{
  --tw-border-opacity: 1;
  border-color: rgba(203, 7, 7, var(--tw-border-opacity));
}

.hover\:border-error-dark:hover{
  --tw-border-opacity: 1;
  border-color: rgba(88, 0, 0, var(--tw-border-opacity));
}

.hover\:border-navigation-dark:hover{
  --tw-border-opacity: 1;
  border-color: rgba(255, 205, 0, var(--tw-border-opacity));
}

.focus\:border-transparent:focus{
  border-color: transparent;
}

.focus\:border-current:focus{
  border-color: currentColor;
}

.focus\:border-black:focus{
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.focus\:border-white:focus{
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.focus\:border-gray-50:focus{
  --tw-border-opacity: 1;
  border-color: rgba(249, 250, 251, var(--tw-border-opacity));
}

.focus\:border-gray-100:focus{
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}

.focus\:border-gray-200:focus{
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

.focus\:border-gray-300:focus{
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}

.focus\:border-gray-400:focus{
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}

.focus\:border-gray-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(107, 114, 128, var(--tw-border-opacity));
}

.focus\:border-gray-600:focus{
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, var(--tw-border-opacity));
}

.focus\:border-gray-700:focus{
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, var(--tw-border-opacity));
}

.focus\:border-gray-800:focus{
  --tw-border-opacity: 1;
  border-color: rgba(31, 41, 55, var(--tw-border-opacity));
}

.focus\:border-gray-900:focus{
  --tw-border-opacity: 1;
  border-color: rgba(17, 24, 39, var(--tw-border-opacity));
}

.focus\:border-red-50:focus{
  --tw-border-opacity: 1;
  border-color: rgba(254, 242, 242, var(--tw-border-opacity));
}

.focus\:border-red-100:focus{
  --tw-border-opacity: 1;
  border-color: rgba(254, 226, 226, var(--tw-border-opacity));
}

.focus\:border-red-200:focus{
  --tw-border-opacity: 1;
  border-color: rgba(254, 202, 202, var(--tw-border-opacity));
}

.focus\:border-red-300:focus{
  --tw-border-opacity: 1;
  border-color: rgba(252, 165, 165, var(--tw-border-opacity));
}

.focus\:border-red-400:focus{
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, var(--tw-border-opacity));
}

.focus\:border-red-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, var(--tw-border-opacity));
}

.focus\:border-red-600:focus{
  --tw-border-opacity: 1;
  border-color: rgba(220, 38, 38, var(--tw-border-opacity));
}

.focus\:border-red-700:focus{
  --tw-border-opacity: 1;
  border-color: rgba(185, 28, 28, var(--tw-border-opacity));
}

.focus\:border-red-800:focus{
  --tw-border-opacity: 1;
  border-color: rgba(153, 27, 27, var(--tw-border-opacity));
}

.focus\:border-red-900:focus{
  --tw-border-opacity: 1;
  border-color: rgba(127, 29, 29, var(--tw-border-opacity));
}

.focus\:border-red-light:focus{
  --tw-border-opacity: 1;
  border-color: rgba(234, 122, 122, var(--tw-border-opacity));
}

.focus\:border-red-default:focus{
  --tw-border-opacity: 1;
  border-color: rgba(185, 0, 0, var(--tw-border-opacity));
}

.focus\:border-red-dark:focus{
  --tw-border-opacity: 1;
  border-color: rgba(88, 0, 0, var(--tw-border-opacity));
}

.focus\:border-yellow-50:focus{
  --tw-border-opacity: 1;
  border-color: rgba(255, 251, 235, var(--tw-border-opacity));
}

.focus\:border-yellow-100:focus{
  --tw-border-opacity: 1;
  border-color: rgba(254, 243, 199, var(--tw-border-opacity));
}

.focus\:border-yellow-200:focus{
  --tw-border-opacity: 1;
  border-color: rgba(253, 230, 138, var(--tw-border-opacity));
}

.focus\:border-yellow-300:focus{
  --tw-border-opacity: 1;
  border-color: rgba(252, 211, 77, var(--tw-border-opacity));
}

.focus\:border-yellow-400:focus{
  --tw-border-opacity: 1;
  border-color: rgba(251, 191, 36, var(--tw-border-opacity));
}

.focus\:border-yellow-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(245, 158, 11, var(--tw-border-opacity));
}

.focus\:border-yellow-600:focus{
  --tw-border-opacity: 1;
  border-color: rgba(217, 119, 6, var(--tw-border-opacity));
}

.focus\:border-yellow-700:focus{
  --tw-border-opacity: 1;
  border-color: rgba(180, 83, 9, var(--tw-border-opacity));
}

.focus\:border-yellow-800:focus{
  --tw-border-opacity: 1;
  border-color: rgba(146, 64, 14, var(--tw-border-opacity));
}

.focus\:border-yellow-900:focus{
  --tw-border-opacity: 1;
  border-color: rgba(120, 53, 15, var(--tw-border-opacity));
}

.focus\:border-green-50:focus{
  --tw-border-opacity: 1;
  border-color: rgba(236, 253, 245, var(--tw-border-opacity));
}

.focus\:border-green-100:focus{
  --tw-border-opacity: 1;
  border-color: rgba(209, 250, 229, var(--tw-border-opacity));
}

.focus\:border-green-200:focus{
  --tw-border-opacity: 1;
  border-color: rgba(167, 243, 208, var(--tw-border-opacity));
}

.focus\:border-green-300:focus{
  --tw-border-opacity: 1;
  border-color: rgba(110, 231, 183, var(--tw-border-opacity));
}

.focus\:border-green-400:focus{
  --tw-border-opacity: 1;
  border-color: rgba(52, 211, 153, var(--tw-border-opacity));
}

.focus\:border-green-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(16, 185, 129, var(--tw-border-opacity));
}

.focus\:border-green-600:focus{
  --tw-border-opacity: 1;
  border-color: rgba(5, 150, 105, var(--tw-border-opacity));
}

.focus\:border-green-700:focus{
  --tw-border-opacity: 1;
  border-color: rgba(4, 120, 87, var(--tw-border-opacity));
}

.focus\:border-green-800:focus{
  --tw-border-opacity: 1;
  border-color: rgba(6, 95, 70, var(--tw-border-opacity));
}

.focus\:border-green-900:focus{
  --tw-border-opacity: 1;
  border-color: rgba(6, 78, 59, var(--tw-border-opacity));
}

.focus\:border-green-light:focus{
  --tw-border-opacity: 1;
  border-color: rgba(181, 209, 185, var(--tw-border-opacity));
}

.focus\:border-green-default:focus{
  --tw-border-opacity: 1;
  border-color: rgba(38, 59, 41, var(--tw-border-opacity));
}

.focus\:border-green-dark:focus{
  --tw-border-opacity: 1;
  border-color: rgba(28, 37, 30, var(--tw-border-opacity));
}

.focus\:border-blue-50:focus{
  --tw-border-opacity: 1;
  border-color: rgba(239, 246, 255, var(--tw-border-opacity));
}

.focus\:border-blue-100:focus{
  --tw-border-opacity: 1;
  border-color: rgba(219, 234, 254, var(--tw-border-opacity));
}

.focus\:border-blue-200:focus{
  --tw-border-opacity: 1;
  border-color: rgba(191, 219, 254, var(--tw-border-opacity));
}

.focus\:border-blue-300:focus{
  --tw-border-opacity: 1;
  border-color: rgba(147, 197, 253, var(--tw-border-opacity));
}

.focus\:border-blue-400:focus{
  --tw-border-opacity: 1;
  border-color: rgba(96, 165, 250, var(--tw-border-opacity));
}

.focus\:border-blue-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(59, 130, 246, var(--tw-border-opacity));
}

.focus\:border-blue-600:focus{
  --tw-border-opacity: 1;
  border-color: rgba(37, 99, 235, var(--tw-border-opacity));
}

.focus\:border-blue-700:focus{
  --tw-border-opacity: 1;
  border-color: rgba(29, 78, 216, var(--tw-border-opacity));
}

.focus\:border-blue-800:focus{
  --tw-border-opacity: 1;
  border-color: rgba(30, 64, 175, var(--tw-border-opacity));
}

.focus\:border-blue-900:focus{
  --tw-border-opacity: 1;
  border-color: rgba(30, 58, 138, var(--tw-border-opacity));
}

.focus\:border-indigo-50:focus{
  --tw-border-opacity: 1;
  border-color: rgba(238, 242, 255, var(--tw-border-opacity));
}

.focus\:border-indigo-100:focus{
  --tw-border-opacity: 1;
  border-color: rgba(224, 231, 255, var(--tw-border-opacity));
}

.focus\:border-indigo-200:focus{
  --tw-border-opacity: 1;
  border-color: rgba(199, 210, 254, var(--tw-border-opacity));
}

.focus\:border-indigo-300:focus{
  --tw-border-opacity: 1;
  border-color: rgba(165, 180, 252, var(--tw-border-opacity));
}

.focus\:border-indigo-400:focus{
  --tw-border-opacity: 1;
  border-color: rgba(129, 140, 248, var(--tw-border-opacity));
}

.focus\:border-indigo-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(99, 102, 241, var(--tw-border-opacity));
}

.focus\:border-indigo-600:focus{
  --tw-border-opacity: 1;
  border-color: rgba(79, 70, 229, var(--tw-border-opacity));
}

.focus\:border-indigo-700:focus{
  --tw-border-opacity: 1;
  border-color: rgba(67, 56, 202, var(--tw-border-opacity));
}

.focus\:border-indigo-800:focus{
  --tw-border-opacity: 1;
  border-color: rgba(55, 48, 163, var(--tw-border-opacity));
}

.focus\:border-indigo-900:focus{
  --tw-border-opacity: 1;
  border-color: rgba(49, 46, 129, var(--tw-border-opacity));
}

.focus\:border-purple-50:focus{
  --tw-border-opacity: 1;
  border-color: rgba(245, 243, 255, var(--tw-border-opacity));
}

.focus\:border-purple-100:focus{
  --tw-border-opacity: 1;
  border-color: rgba(237, 233, 254, var(--tw-border-opacity));
}

.focus\:border-purple-200:focus{
  --tw-border-opacity: 1;
  border-color: rgba(221, 214, 254, var(--tw-border-opacity));
}

.focus\:border-purple-300:focus{
  --tw-border-opacity: 1;
  border-color: rgba(196, 181, 253, var(--tw-border-opacity));
}

.focus\:border-purple-400:focus{
  --tw-border-opacity: 1;
  border-color: rgba(167, 139, 250, var(--tw-border-opacity));
}

.focus\:border-purple-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(139, 92, 246, var(--tw-border-opacity));
}

.focus\:border-purple-600:focus{
  --tw-border-opacity: 1;
  border-color: rgba(124, 58, 237, var(--tw-border-opacity));
}

.focus\:border-purple-700:focus{
  --tw-border-opacity: 1;
  border-color: rgba(109, 40, 217, var(--tw-border-opacity));
}

.focus\:border-purple-800:focus{
  --tw-border-opacity: 1;
  border-color: rgba(91, 33, 182, var(--tw-border-opacity));
}

.focus\:border-purple-900:focus{
  --tw-border-opacity: 1;
  border-color: rgba(76, 29, 149, var(--tw-border-opacity));
}

.focus\:border-pink-50:focus{
  --tw-border-opacity: 1;
  border-color: rgba(253, 242, 248, var(--tw-border-opacity));
}

.focus\:border-pink-100:focus{
  --tw-border-opacity: 1;
  border-color: rgba(252, 231, 243, var(--tw-border-opacity));
}

.focus\:border-pink-200:focus{
  --tw-border-opacity: 1;
  border-color: rgba(251, 207, 232, var(--tw-border-opacity));
}

.focus\:border-pink-300:focus{
  --tw-border-opacity: 1;
  border-color: rgba(249, 168, 212, var(--tw-border-opacity));
}

.focus\:border-pink-400:focus{
  --tw-border-opacity: 1;
  border-color: rgba(244, 114, 182, var(--tw-border-opacity));
}

.focus\:border-pink-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(236, 72, 153, var(--tw-border-opacity));
}

.focus\:border-pink-600:focus{
  --tw-border-opacity: 1;
  border-color: rgba(219, 39, 119, var(--tw-border-opacity));
}

.focus\:border-pink-700:focus{
  --tw-border-opacity: 1;
  border-color: rgba(190, 24, 93, var(--tw-border-opacity));
}

.focus\:border-pink-800:focus{
  --tw-border-opacity: 1;
  border-color: rgba(157, 23, 77, var(--tw-border-opacity));
}

.focus\:border-pink-900:focus{
  --tw-border-opacity: 1;
  border-color: rgba(131, 24, 67, var(--tw-border-opacity));
}

.focus\:border-brown-light:focus{
  --tw-border-opacity: 1;
  border-color: rgba(240, 233, 222, var(--tw-border-opacity));
}

.focus\:border-brown-semi:focus{
  --tw-border-opacity: 1;
  border-color: rgba(222, 214, 202, var(--tw-border-opacity));
}

.focus\:border-brown-default:focus{
  --tw-border-opacity: 1;
  border-color: rgba(123, 108, 92, var(--tw-border-opacity));
}

.focus\:border-brown-dark:focus{
  --tw-border-opacity: 1;
  border-color: rgba(61, 39, 6, var(--tw-border-opacity));
}

.focus\:border-success-light:focus{
  --tw-border-opacity: 1;
  border-color: rgba(145, 224, 156, var(--tw-border-opacity));
}

.focus\:border-success-default:focus{
  --tw-border-opacity: 1;
  border-color: rgba(45, 153, 60, var(--tw-border-opacity));
}

.focus\:border-success-dark:focus{
  --tw-border-opacity: 1;
  border-color: rgba(38, 59, 41, var(--tw-border-opacity));
}

.focus\:border-error-light:focus{
  --tw-border-opacity: 1;
  border-color: rgba(249, 134, 134, var(--tw-border-opacity));
}

.focus\:border-error-default:focus{
  --tw-border-opacity: 1;
  border-color: rgba(203, 7, 7, var(--tw-border-opacity));
}

.focus\:border-error-dark:focus{
  --tw-border-opacity: 1;
  border-color: rgba(88, 0, 0, var(--tw-border-opacity));
}

.focus\:border-navigation-dark:focus{
  --tw-border-opacity: 1;
  border-color: rgba(255, 205, 0, var(--tw-border-opacity));
}

.border-opacity-0{
  --tw-border-opacity: 0;
}

.border-opacity-5{
  --tw-border-opacity: 0.05;
}

.border-opacity-10{
  --tw-border-opacity: 0.1;
}

.border-opacity-20{
  --tw-border-opacity: 0.2;
}

.border-opacity-25{
  --tw-border-opacity: 0.25;
}

.border-opacity-30{
  --tw-border-opacity: 0.3;
}

.border-opacity-40{
  --tw-border-opacity: 0.4;
}

.border-opacity-50{
  --tw-border-opacity: 0.5;
}

.border-opacity-60{
  --tw-border-opacity: 0.6;
}

.border-opacity-70{
  --tw-border-opacity: 0.7;
}

.border-opacity-75{
  --tw-border-opacity: 0.75;
}

.border-opacity-80{
  --tw-border-opacity: 0.8;
}

.border-opacity-90{
  --tw-border-opacity: 0.9;
}

.border-opacity-95{
  --tw-border-opacity: 0.95;
}

.border-opacity-100{
  --tw-border-opacity: 1;
}

.group:hover .group-hover\:border-opacity-0{
  --tw-border-opacity: 0;
}

.group:hover .group-hover\:border-opacity-5{
  --tw-border-opacity: 0.05;
}

.group:hover .group-hover\:border-opacity-10{
  --tw-border-opacity: 0.1;
}

.group:hover .group-hover\:border-opacity-20{
  --tw-border-opacity: 0.2;
}

.group:hover .group-hover\:border-opacity-25{
  --tw-border-opacity: 0.25;
}

.group:hover .group-hover\:border-opacity-30{
  --tw-border-opacity: 0.3;
}

.group:hover .group-hover\:border-opacity-40{
  --tw-border-opacity: 0.4;
}

.group:hover .group-hover\:border-opacity-50{
  --tw-border-opacity: 0.5;
}

.group:hover .group-hover\:border-opacity-60{
  --tw-border-opacity: 0.6;
}

.group:hover .group-hover\:border-opacity-70{
  --tw-border-opacity: 0.7;
}

.group:hover .group-hover\:border-opacity-75{
  --tw-border-opacity: 0.75;
}

.group:hover .group-hover\:border-opacity-80{
  --tw-border-opacity: 0.8;
}

.group:hover .group-hover\:border-opacity-90{
  --tw-border-opacity: 0.9;
}

.group:hover .group-hover\:border-opacity-95{
  --tw-border-opacity: 0.95;
}

.group:hover .group-hover\:border-opacity-100{
  --tw-border-opacity: 1;
}

.focus-within\:border-opacity-0:focus-within{
  --tw-border-opacity: 0;
}

.focus-within\:border-opacity-5:focus-within{
  --tw-border-opacity: 0.05;
}

.focus-within\:border-opacity-10:focus-within{
  --tw-border-opacity: 0.1;
}

.focus-within\:border-opacity-20:focus-within{
  --tw-border-opacity: 0.2;
}

.focus-within\:border-opacity-25:focus-within{
  --tw-border-opacity: 0.25;
}

.focus-within\:border-opacity-30:focus-within{
  --tw-border-opacity: 0.3;
}

.focus-within\:border-opacity-40:focus-within{
  --tw-border-opacity: 0.4;
}

.focus-within\:border-opacity-50:focus-within{
  --tw-border-opacity: 0.5;
}

.focus-within\:border-opacity-60:focus-within{
  --tw-border-opacity: 0.6;
}

.focus-within\:border-opacity-70:focus-within{
  --tw-border-opacity: 0.7;
}

.focus-within\:border-opacity-75:focus-within{
  --tw-border-opacity: 0.75;
}

.focus-within\:border-opacity-80:focus-within{
  --tw-border-opacity: 0.8;
}

.focus-within\:border-opacity-90:focus-within{
  --tw-border-opacity: 0.9;
}

.focus-within\:border-opacity-95:focus-within{
  --tw-border-opacity: 0.95;
}

.focus-within\:border-opacity-100:focus-within{
  --tw-border-opacity: 1;
}

.hover\:border-opacity-0:hover{
  --tw-border-opacity: 0;
}

.hover\:border-opacity-5:hover{
  --tw-border-opacity: 0.05;
}

.hover\:border-opacity-10:hover{
  --tw-border-opacity: 0.1;
}

.hover\:border-opacity-20:hover{
  --tw-border-opacity: 0.2;
}

.hover\:border-opacity-25:hover{
  --tw-border-opacity: 0.25;
}

.hover\:border-opacity-30:hover{
  --tw-border-opacity: 0.3;
}

.hover\:border-opacity-40:hover{
  --tw-border-opacity: 0.4;
}

.hover\:border-opacity-50:hover{
  --tw-border-opacity: 0.5;
}

.hover\:border-opacity-60:hover{
  --tw-border-opacity: 0.6;
}

.hover\:border-opacity-70:hover{
  --tw-border-opacity: 0.7;
}

.hover\:border-opacity-75:hover{
  --tw-border-opacity: 0.75;
}

.hover\:border-opacity-80:hover{
  --tw-border-opacity: 0.8;
}

.hover\:border-opacity-90:hover{
  --tw-border-opacity: 0.9;
}

.hover\:border-opacity-95:hover{
  --tw-border-opacity: 0.95;
}

.hover\:border-opacity-100:hover{
  --tw-border-opacity: 1;
}

.focus\:border-opacity-0:focus{
  --tw-border-opacity: 0;
}

.focus\:border-opacity-5:focus{
  --tw-border-opacity: 0.05;
}

.focus\:border-opacity-10:focus{
  --tw-border-opacity: 0.1;
}

.focus\:border-opacity-20:focus{
  --tw-border-opacity: 0.2;
}

.focus\:border-opacity-25:focus{
  --tw-border-opacity: 0.25;
}

.focus\:border-opacity-30:focus{
  --tw-border-opacity: 0.3;
}

.focus\:border-opacity-40:focus{
  --tw-border-opacity: 0.4;
}

.focus\:border-opacity-50:focus{
  --tw-border-opacity: 0.5;
}

.focus\:border-opacity-60:focus{
  --tw-border-opacity: 0.6;
}

.focus\:border-opacity-70:focus{
  --tw-border-opacity: 0.7;
}

.focus\:border-opacity-75:focus{
  --tw-border-opacity: 0.75;
}

.focus\:border-opacity-80:focus{
  --tw-border-opacity: 0.8;
}

.focus\:border-opacity-90:focus{
  --tw-border-opacity: 0.9;
}

.focus\:border-opacity-95:focus{
  --tw-border-opacity: 0.95;
}

.focus\:border-opacity-100:focus{
  --tw-border-opacity: 1;
}

.bg-transparent{
  background-color: transparent;
}

.bg-current{
  background-color: currentColor;
}

.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}

.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}

.bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}

.bg-gray-400{
  --tw-bg-opacity: 1;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
}

.bg-gray-500{
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
}

.bg-gray-600{
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}

.bg-gray-700{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
}

.bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
}

.bg-gray-900{
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}

.bg-red-50{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
}

.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
}

.bg-red-200{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
}

.bg-red-300{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
}

.bg-red-400{
  --tw-bg-opacity: 1;
  background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
}

.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
}

.bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
}

.bg-red-700{
  --tw-bg-opacity: 1;
  background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
}

.bg-red-800{
  --tw-bg-opacity: 1;
  background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
}

.bg-red-900{
  --tw-bg-opacity: 1;
  background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
}

.bg-red-light{
  --tw-bg-opacity: 1;
  background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
}

.bg-red-default{
  --tw-bg-opacity: 1;
  background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
}

.bg-red-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
}

.bg-yellow-50{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
}

.bg-yellow-100{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
}

.bg-yellow-200{
  --tw-bg-opacity: 1;
  background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
}

.bg-yellow-300{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
}

.bg-yellow-400{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
}

.bg-yellow-500{
  --tw-bg-opacity: 1;
  background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
}

.bg-yellow-600{
  --tw-bg-opacity: 1;
  background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
}

.bg-yellow-700{
  --tw-bg-opacity: 1;
  background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
}

.bg-yellow-800{
  --tw-bg-opacity: 1;
  background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
}

.bg-yellow-900{
  --tw-bg-opacity: 1;
  background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
}

.bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
}

.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
}

.bg-green-200{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
}

.bg-green-300{
  --tw-bg-opacity: 1;
  background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
}

.bg-green-400{
  --tw-bg-opacity: 1;
  background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
}

.bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
}

.bg-green-600{
  --tw-bg-opacity: 1;
  background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
}

.bg-green-700{
  --tw-bg-opacity: 1;
  background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
}

.bg-green-800{
  --tw-bg-opacity: 1;
  background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
}

.bg-green-900{
  --tw-bg-opacity: 1;
  background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
}

.bg-green-light{
  --tw-bg-opacity: 1;
  background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
}

.bg-green-default{
  --tw-bg-opacity: 1;
  background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
}

.bg-green-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
}

.bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
}

.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
}

.bg-blue-200{
  --tw-bg-opacity: 1;
  background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
}

.bg-blue-300{
  --tw-bg-opacity: 1;
  background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
}

.bg-blue-400{
  --tw-bg-opacity: 1;
  background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
}

.bg-blue-500{
  --tw-bg-opacity: 1;
  background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
}

.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
}

.bg-blue-700{
  --tw-bg-opacity: 1;
  background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
}

.bg-blue-800{
  --tw-bg-opacity: 1;
  background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
}

.bg-blue-900{
  --tw-bg-opacity: 1;
  background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
}

.bg-indigo-50{
  --tw-bg-opacity: 1;
  background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
}

.bg-indigo-100{
  --tw-bg-opacity: 1;
  background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
}

.bg-indigo-200{
  --tw-bg-opacity: 1;
  background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
}

.bg-indigo-300{
  --tw-bg-opacity: 1;
  background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
}

.bg-indigo-400{
  --tw-bg-opacity: 1;
  background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
}

.bg-indigo-500{
  --tw-bg-opacity: 1;
  background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
}

.bg-indigo-600{
  --tw-bg-opacity: 1;
  background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
}

.bg-indigo-700{
  --tw-bg-opacity: 1;
  background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
}

.bg-indigo-800{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
}

.bg-indigo-900{
  --tw-bg-opacity: 1;
  background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
}

.bg-purple-50{
  --tw-bg-opacity: 1;
  background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
}

.bg-purple-100{
  --tw-bg-opacity: 1;
  background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
}

.bg-purple-200{
  --tw-bg-opacity: 1;
  background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
}

.bg-purple-300{
  --tw-bg-opacity: 1;
  background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
}

.bg-purple-400{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
}

.bg-purple-500{
  --tw-bg-opacity: 1;
  background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
}

.bg-purple-600{
  --tw-bg-opacity: 1;
  background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
}

.bg-purple-700{
  --tw-bg-opacity: 1;
  background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
}

.bg-purple-800{
  --tw-bg-opacity: 1;
  background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
}

.bg-purple-900{
  --tw-bg-opacity: 1;
  background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
}

.bg-pink-50{
  --tw-bg-opacity: 1;
  background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
}

.bg-pink-100{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
}

.bg-pink-200{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
}

.bg-pink-300{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
}

.bg-pink-400{
  --tw-bg-opacity: 1;
  background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
}

.bg-pink-500{
  --tw-bg-opacity: 1;
  background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
}

.bg-pink-600{
  --tw-bg-opacity: 1;
  background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
}

.bg-pink-700{
  --tw-bg-opacity: 1;
  background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
}

.bg-pink-800{
  --tw-bg-opacity: 1;
  background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
}

.bg-pink-900{
  --tw-bg-opacity: 1;
  background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
}

.bg-brown-light{
  --tw-bg-opacity: 1;
  background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
}

.bg-brown-semi{
  --tw-bg-opacity: 1;
  background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
}

.bg-brown-default{
  --tw-bg-opacity: 1;
  background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
}

.bg-brown-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
}

.bg-success-light{
  --tw-bg-opacity: 1;
  background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
}

.bg-success-default{
  --tw-bg-opacity: 1;
  background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
}

.bg-success-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
}

.bg-error-light{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
}

.bg-error-default{
  --tw-bg-opacity: 1;
  background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
}

.bg-error-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
}

.bg-navigation-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-transparent{
  background-color: transparent;
}

.group:hover .group-hover\:bg-current{
  background-color: currentColor;
}

.group:hover .group-hover\:bg-black{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-white{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-gray-400{
  --tw-bg-opacity: 1;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-gray-500{
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-gray-600{
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-gray-700{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-gray-900{
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-50{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-200{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-300{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-400{
  --tw-bg-opacity: 1;
  background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-700{
  --tw-bg-opacity: 1;
  background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-800{
  --tw-bg-opacity: 1;
  background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-900{
  --tw-bg-opacity: 1;
  background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-light{
  --tw-bg-opacity: 1;
  background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-default{
  --tw-bg-opacity: 1;
  background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-red-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-yellow-50{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-yellow-100{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-yellow-200{
  --tw-bg-opacity: 1;
  background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-yellow-300{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-yellow-400{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-yellow-500{
  --tw-bg-opacity: 1;
  background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-yellow-600{
  --tw-bg-opacity: 1;
  background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-yellow-700{
  --tw-bg-opacity: 1;
  background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-yellow-800{
  --tw-bg-opacity: 1;
  background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-yellow-900{
  --tw-bg-opacity: 1;
  background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-200{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-300{
  --tw-bg-opacity: 1;
  background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-400{
  --tw-bg-opacity: 1;
  background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-600{
  --tw-bg-opacity: 1;
  background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-700{
  --tw-bg-opacity: 1;
  background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-800{
  --tw-bg-opacity: 1;
  background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-900{
  --tw-bg-opacity: 1;
  background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-light{
  --tw-bg-opacity: 1;
  background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-default{
  --tw-bg-opacity: 1;
  background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-green-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-blue-200{
  --tw-bg-opacity: 1;
  background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-blue-300{
  --tw-bg-opacity: 1;
  background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-blue-400{
  --tw-bg-opacity: 1;
  background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-blue-500{
  --tw-bg-opacity: 1;
  background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-blue-700{
  --tw-bg-opacity: 1;
  background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-blue-800{
  --tw-bg-opacity: 1;
  background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-blue-900{
  --tw-bg-opacity: 1;
  background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-indigo-50{
  --tw-bg-opacity: 1;
  background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-indigo-100{
  --tw-bg-opacity: 1;
  background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-indigo-200{
  --tw-bg-opacity: 1;
  background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-indigo-300{
  --tw-bg-opacity: 1;
  background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-indigo-400{
  --tw-bg-opacity: 1;
  background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-indigo-500{
  --tw-bg-opacity: 1;
  background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-indigo-600{
  --tw-bg-opacity: 1;
  background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-indigo-700{
  --tw-bg-opacity: 1;
  background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-indigo-800{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-indigo-900{
  --tw-bg-opacity: 1;
  background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-purple-50{
  --tw-bg-opacity: 1;
  background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-purple-100{
  --tw-bg-opacity: 1;
  background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-purple-200{
  --tw-bg-opacity: 1;
  background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-purple-300{
  --tw-bg-opacity: 1;
  background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-purple-400{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-purple-500{
  --tw-bg-opacity: 1;
  background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-purple-600{
  --tw-bg-opacity: 1;
  background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-purple-700{
  --tw-bg-opacity: 1;
  background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-purple-800{
  --tw-bg-opacity: 1;
  background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-purple-900{
  --tw-bg-opacity: 1;
  background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-pink-50{
  --tw-bg-opacity: 1;
  background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-pink-100{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-pink-200{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-pink-300{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-pink-400{
  --tw-bg-opacity: 1;
  background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-pink-500{
  --tw-bg-opacity: 1;
  background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-pink-600{
  --tw-bg-opacity: 1;
  background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-pink-700{
  --tw-bg-opacity: 1;
  background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-pink-800{
  --tw-bg-opacity: 1;
  background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-pink-900{
  --tw-bg-opacity: 1;
  background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-brown-light{
  --tw-bg-opacity: 1;
  background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-brown-semi{
  --tw-bg-opacity: 1;
  background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-brown-default{
  --tw-bg-opacity: 1;
  background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-brown-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-success-light{
  --tw-bg-opacity: 1;
  background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-success-default{
  --tw-bg-opacity: 1;
  background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-success-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-error-light{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-error-default{
  --tw-bg-opacity: 1;
  background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-error-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-navigation-dark{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
}

.focus-within\:bg-transparent:focus-within{
  background-color: transparent;
}

.focus-within\:bg-current:focus-within{
  background-color: currentColor;
}

.focus-within\:bg-black:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.focus-within\:bg-white:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.focus-within\:bg-gray-50:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

.focus-within\:bg-gray-100:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}

.focus-within\:bg-gray-200:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}

.focus-within\:bg-gray-300:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}

.focus-within\:bg-gray-400:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
}

.focus-within\:bg-gray-500:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
}

.focus-within\:bg-gray-600:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}

.focus-within\:bg-gray-700:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
}

.focus-within\:bg-gray-800:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
}

.focus-within\:bg-gray-900:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}

.focus-within\:bg-red-50:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
}

.focus-within\:bg-red-100:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
}

.focus-within\:bg-red-200:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
}

.focus-within\:bg-red-300:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
}

.focus-within\:bg-red-400:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
}

.focus-within\:bg-red-500:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
}

.focus-within\:bg-red-600:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
}

.focus-within\:bg-red-700:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
}

.focus-within\:bg-red-800:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
}

.focus-within\:bg-red-900:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
}

.focus-within\:bg-red-light:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
}

.focus-within\:bg-red-default:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
}

.focus-within\:bg-red-dark:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
}

.focus-within\:bg-yellow-50:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
}

.focus-within\:bg-yellow-100:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
}

.focus-within\:bg-yellow-200:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
}

.focus-within\:bg-yellow-300:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
}

.focus-within\:bg-yellow-400:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
}

.focus-within\:bg-yellow-500:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
}

.focus-within\:bg-yellow-600:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
}

.focus-within\:bg-yellow-700:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
}

.focus-within\:bg-yellow-800:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
}

.focus-within\:bg-yellow-900:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
}

.focus-within\:bg-green-50:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
}

.focus-within\:bg-green-100:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
}

.focus-within\:bg-green-200:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
}

.focus-within\:bg-green-300:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
}

.focus-within\:bg-green-400:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
}

.focus-within\:bg-green-500:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
}

.focus-within\:bg-green-600:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
}

.focus-within\:bg-green-700:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
}

.focus-within\:bg-green-800:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
}

.focus-within\:bg-green-900:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
}

.focus-within\:bg-green-light:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
}

.focus-within\:bg-green-default:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
}

.focus-within\:bg-green-dark:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
}

.focus-within\:bg-blue-50:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
}

.focus-within\:bg-blue-100:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
}

.focus-within\:bg-blue-200:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
}

.focus-within\:bg-blue-300:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
}

.focus-within\:bg-blue-400:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
}

.focus-within\:bg-blue-500:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
}

.focus-within\:bg-blue-600:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
}

.focus-within\:bg-blue-700:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
}

.focus-within\:bg-blue-800:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
}

.focus-within\:bg-blue-900:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
}

.focus-within\:bg-indigo-50:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
}

.focus-within\:bg-indigo-100:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
}

.focus-within\:bg-indigo-200:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
}

.focus-within\:bg-indigo-300:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
}

.focus-within\:bg-indigo-400:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
}

.focus-within\:bg-indigo-500:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
}

.focus-within\:bg-indigo-600:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
}

.focus-within\:bg-indigo-700:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
}

.focus-within\:bg-indigo-800:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
}

.focus-within\:bg-indigo-900:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
}

.focus-within\:bg-purple-50:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
}

.focus-within\:bg-purple-100:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
}

.focus-within\:bg-purple-200:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
}

.focus-within\:bg-purple-300:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
}

.focus-within\:bg-purple-400:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
}

.focus-within\:bg-purple-500:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
}

.focus-within\:bg-purple-600:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
}

.focus-within\:bg-purple-700:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
}

.focus-within\:bg-purple-800:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
}

.focus-within\:bg-purple-900:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
}

.focus-within\:bg-pink-50:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
}

.focus-within\:bg-pink-100:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
}

.focus-within\:bg-pink-200:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
}

.focus-within\:bg-pink-300:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
}

.focus-within\:bg-pink-400:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
}

.focus-within\:bg-pink-500:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
}

.focus-within\:bg-pink-600:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
}

.focus-within\:bg-pink-700:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
}

.focus-within\:bg-pink-800:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
}

.focus-within\:bg-pink-900:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
}

.focus-within\:bg-brown-light:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
}

.focus-within\:bg-brown-semi:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
}

.focus-within\:bg-brown-default:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
}

.focus-within\:bg-brown-dark:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
}

.focus-within\:bg-success-light:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
}

.focus-within\:bg-success-default:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
}

.focus-within\:bg-success-dark:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
}

.focus-within\:bg-error-light:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
}

.focus-within\:bg-error-default:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
}

.focus-within\:bg-error-dark:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
}

.focus-within\:bg-navigation-dark:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
}

.hover\:bg-transparent:hover{
  background-color: transparent;
}

.hover\:bg-current:hover{
  background-color: currentColor;
}

.hover\:bg-black:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}

.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}

.hover\:bg-gray-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}

.hover\:bg-gray-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
}

.hover\:bg-gray-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
}

.hover\:bg-gray-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}

.hover\:bg-gray-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
}

.hover\:bg-gray-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
}

.hover\:bg-gray-900:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}

.hover\:bg-red-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
}

.hover\:bg-red-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
}

.hover\:bg-red-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
}

.hover\:bg-red-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
}

.hover\:bg-red-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
}

.hover\:bg-red-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
}

.hover\:bg-red-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
}

.hover\:bg-red-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
}

.hover\:bg-red-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
}

.hover\:bg-red-900:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
}

.hover\:bg-red-light:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
}

.hover\:bg-red-default:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
}

.hover\:bg-red-dark:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
}

.hover\:bg-yellow-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
}

.hover\:bg-yellow-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
}

.hover\:bg-yellow-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
}

.hover\:bg-yellow-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
}

.hover\:bg-yellow-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
}

.hover\:bg-yellow-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
}

.hover\:bg-yellow-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
}

.hover\:bg-yellow-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
}

.hover\:bg-yellow-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
}

.hover\:bg-yellow-900:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
}

.hover\:bg-green-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
}

.hover\:bg-green-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
}

.hover\:bg-green-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
}

.hover\:bg-green-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
}

.hover\:bg-green-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
}

.hover\:bg-green-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
}

.hover\:bg-green-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
}

.hover\:bg-green-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
}

.hover\:bg-green-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
}

.hover\:bg-green-900:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
}

.hover\:bg-green-light:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
}

.hover\:bg-green-default:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
}

.hover\:bg-green-dark:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
}

.hover\:bg-blue-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
}

.hover\:bg-blue-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
}

.hover\:bg-blue-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
}

.hover\:bg-blue-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
}

.hover\:bg-blue-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
}

.hover\:bg-blue-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
}

.hover\:bg-blue-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
}

.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
}

.hover\:bg-blue-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
}

.hover\:bg-blue-900:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
}

.hover\:bg-indigo-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
}

.hover\:bg-indigo-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
}

.hover\:bg-indigo-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
}

.hover\:bg-indigo-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
}

.hover\:bg-indigo-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
}

.hover\:bg-indigo-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
}

.hover\:bg-indigo-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
}

.hover\:bg-indigo-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
}

.hover\:bg-indigo-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
}

.hover\:bg-indigo-900:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
}

.hover\:bg-purple-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
}

.hover\:bg-purple-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
}

.hover\:bg-purple-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
}

.hover\:bg-purple-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
}

.hover\:bg-purple-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
}

.hover\:bg-purple-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
}

.hover\:bg-purple-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
}

.hover\:bg-purple-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
}

.hover\:bg-purple-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
}

.hover\:bg-purple-900:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
}

.hover\:bg-pink-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
}

.hover\:bg-pink-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
}

.hover\:bg-pink-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
}

.hover\:bg-pink-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
}

.hover\:bg-pink-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
}

.hover\:bg-pink-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
}

.hover\:bg-pink-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
}

.hover\:bg-pink-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
}

.hover\:bg-pink-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
}

.hover\:bg-pink-900:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
}

.hover\:bg-brown-light:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
}

.hover\:bg-brown-semi:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
}

.hover\:bg-brown-default:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
}

.hover\:bg-brown-dark:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
}

.hover\:bg-success-light:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
}

.hover\:bg-success-default:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
}

.hover\:bg-success-dark:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
}

.hover\:bg-error-light:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
}

.hover\:bg-error-default:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
}

.hover\:bg-error-dark:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
}

.hover\:bg-navigation-dark:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
}

.focus\:bg-transparent:focus{
  background-color: transparent;
}

.focus\:bg-current:focus{
  background-color: currentColor;
}

.focus\:bg-black:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.focus\:bg-white:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.focus\:bg-gray-50:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

.focus\:bg-gray-100:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}

.focus\:bg-gray-200:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}

.focus\:bg-gray-300:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}

.focus\:bg-gray-400:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
}

.focus\:bg-gray-500:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
}

.focus\:bg-gray-600:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
}

.focus\:bg-gray-700:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
}

.focus\:bg-gray-800:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
}

.focus\:bg-gray-900:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}

.focus\:bg-red-50:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
}

.focus\:bg-red-100:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
}

.focus\:bg-red-200:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
}

.focus\:bg-red-300:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
}

.focus\:bg-red-400:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
}

.focus\:bg-red-500:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
}

.focus\:bg-red-600:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
}

.focus\:bg-red-700:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
}

.focus\:bg-red-800:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
}

.focus\:bg-red-900:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
}

.focus\:bg-red-light:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
}

.focus\:bg-red-default:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
}

.focus\:bg-red-dark:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
}

.focus\:bg-yellow-50:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
}

.focus\:bg-yellow-100:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
}

.focus\:bg-yellow-200:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
}

.focus\:bg-yellow-300:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
}

.focus\:bg-yellow-400:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
}

.focus\:bg-yellow-500:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
}

.focus\:bg-yellow-600:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
}

.focus\:bg-yellow-700:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
}

.focus\:bg-yellow-800:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
}

.focus\:bg-yellow-900:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
}

.focus\:bg-green-50:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
}

.focus\:bg-green-100:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
}

.focus\:bg-green-200:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
}

.focus\:bg-green-300:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
}

.focus\:bg-green-400:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
}

.focus\:bg-green-500:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
}

.focus\:bg-green-600:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
}

.focus\:bg-green-700:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
}

.focus\:bg-green-800:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
}

.focus\:bg-green-900:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
}

.focus\:bg-green-light:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
}

.focus\:bg-green-default:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
}

.focus\:bg-green-dark:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
}

.focus\:bg-blue-50:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
}

.focus\:bg-blue-100:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
}

.focus\:bg-blue-200:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
}

.focus\:bg-blue-300:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
}

.focus\:bg-blue-400:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
}

.focus\:bg-blue-500:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
}

.focus\:bg-blue-600:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
}

.focus\:bg-blue-700:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
}

.focus\:bg-blue-800:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
}

.focus\:bg-blue-900:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
}

.focus\:bg-indigo-50:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
}

.focus\:bg-indigo-100:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
}

.focus\:bg-indigo-200:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
}

.focus\:bg-indigo-300:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
}

.focus\:bg-indigo-400:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
}

.focus\:bg-indigo-500:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
}

.focus\:bg-indigo-600:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
}

.focus\:bg-indigo-700:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
}

.focus\:bg-indigo-800:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
}

.focus\:bg-indigo-900:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
}

.focus\:bg-purple-50:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
}

.focus\:bg-purple-100:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
}

.focus\:bg-purple-200:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
}

.focus\:bg-purple-300:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
}

.focus\:bg-purple-400:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
}

.focus\:bg-purple-500:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
}

.focus\:bg-purple-600:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
}

.focus\:bg-purple-700:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
}

.focus\:bg-purple-800:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
}

.focus\:bg-purple-900:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
}

.focus\:bg-pink-50:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
}

.focus\:bg-pink-100:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
}

.focus\:bg-pink-200:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
}

.focus\:bg-pink-300:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
}

.focus\:bg-pink-400:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
}

.focus\:bg-pink-500:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
}

.focus\:bg-pink-600:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
}

.focus\:bg-pink-700:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
}

.focus\:bg-pink-800:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
}

.focus\:bg-pink-900:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
}

.focus\:bg-brown-light:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
}

.focus\:bg-brown-semi:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
}

.focus\:bg-brown-default:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
}

.focus\:bg-brown-dark:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
}

.focus\:bg-success-light:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
}

.focus\:bg-success-default:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
}

.focus\:bg-success-dark:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
}

.focus\:bg-error-light:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
}

.focus\:bg-error-default:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
}

.focus\:bg-error-dark:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
}

.focus\:bg-navigation-dark:focus{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
}

.bg-opacity-0{
  --tw-bg-opacity: 0;
}

.bg-opacity-5{
  --tw-bg-opacity: 0.05;
}

.bg-opacity-10{
  --tw-bg-opacity: 0.1;
}

.bg-opacity-20{
  --tw-bg-opacity: 0.2;
}

.bg-opacity-25{
  --tw-bg-opacity: 0.25;
}

.bg-opacity-30{
  --tw-bg-opacity: 0.3;
}

.bg-opacity-40{
  --tw-bg-opacity: 0.4;
}

.bg-opacity-50{
  --tw-bg-opacity: 0.5;
}

.bg-opacity-60{
  --tw-bg-opacity: 0.6;
}

.bg-opacity-70{
  --tw-bg-opacity: 0.7;
}

.bg-opacity-75{
  --tw-bg-opacity: 0.75;
}

.bg-opacity-80{
  --tw-bg-opacity: 0.8;
}

.bg-opacity-90{
  --tw-bg-opacity: 0.9;
}

.bg-opacity-95{
  --tw-bg-opacity: 0.95;
}

.bg-opacity-100{
  --tw-bg-opacity: 1;
}

.group:hover .group-hover\:bg-opacity-0{
  --tw-bg-opacity: 0;
}

.group:hover .group-hover\:bg-opacity-5{
  --tw-bg-opacity: 0.05;
}

.group:hover .group-hover\:bg-opacity-10{
  --tw-bg-opacity: 0.1;
}

.group:hover .group-hover\:bg-opacity-20{
  --tw-bg-opacity: 0.2;
}

.group:hover .group-hover\:bg-opacity-25{
  --tw-bg-opacity: 0.25;
}

.group:hover .group-hover\:bg-opacity-30{
  --tw-bg-opacity: 0.3;
}

.group:hover .group-hover\:bg-opacity-40{
  --tw-bg-opacity: 0.4;
}

.group:hover .group-hover\:bg-opacity-50{
  --tw-bg-opacity: 0.5;
}

.group:hover .group-hover\:bg-opacity-60{
  --tw-bg-opacity: 0.6;
}

.group:hover .group-hover\:bg-opacity-70{
  --tw-bg-opacity: 0.7;
}

.group:hover .group-hover\:bg-opacity-75{
  --tw-bg-opacity: 0.75;
}

.group:hover .group-hover\:bg-opacity-80{
  --tw-bg-opacity: 0.8;
}

.group:hover .group-hover\:bg-opacity-90{
  --tw-bg-opacity: 0.9;
}

.group:hover .group-hover\:bg-opacity-95{
  --tw-bg-opacity: 0.95;
}

.group:hover .group-hover\:bg-opacity-100{
  --tw-bg-opacity: 1;
}

.focus-within\:bg-opacity-0:focus-within{
  --tw-bg-opacity: 0;
}

.focus-within\:bg-opacity-5:focus-within{
  --tw-bg-opacity: 0.05;
}

.focus-within\:bg-opacity-10:focus-within{
  --tw-bg-opacity: 0.1;
}

.focus-within\:bg-opacity-20:focus-within{
  --tw-bg-opacity: 0.2;
}

.focus-within\:bg-opacity-25:focus-within{
  --tw-bg-opacity: 0.25;
}

.focus-within\:bg-opacity-30:focus-within{
  --tw-bg-opacity: 0.3;
}

.focus-within\:bg-opacity-40:focus-within{
  --tw-bg-opacity: 0.4;
}

.focus-within\:bg-opacity-50:focus-within{
  --tw-bg-opacity: 0.5;
}

.focus-within\:bg-opacity-60:focus-within{
  --tw-bg-opacity: 0.6;
}

.focus-within\:bg-opacity-70:focus-within{
  --tw-bg-opacity: 0.7;
}

.focus-within\:bg-opacity-75:focus-within{
  --tw-bg-opacity: 0.75;
}

.focus-within\:bg-opacity-80:focus-within{
  --tw-bg-opacity: 0.8;
}

.focus-within\:bg-opacity-90:focus-within{
  --tw-bg-opacity: 0.9;
}

.focus-within\:bg-opacity-95:focus-within{
  --tw-bg-opacity: 0.95;
}

.focus-within\:bg-opacity-100:focus-within{
  --tw-bg-opacity: 1;
}

.hover\:bg-opacity-0:hover{
  --tw-bg-opacity: 0;
}

.hover\:bg-opacity-5:hover{
  --tw-bg-opacity: 0.05;
}

.hover\:bg-opacity-10:hover{
  --tw-bg-opacity: 0.1;
}

.hover\:bg-opacity-20:hover{
  --tw-bg-opacity: 0.2;
}

.hover\:bg-opacity-25:hover{
  --tw-bg-opacity: 0.25;
}

.hover\:bg-opacity-30:hover{
  --tw-bg-opacity: 0.3;
}

.hover\:bg-opacity-40:hover{
  --tw-bg-opacity: 0.4;
}

.hover\:bg-opacity-50:hover{
  --tw-bg-opacity: 0.5;
}

.hover\:bg-opacity-60:hover{
  --tw-bg-opacity: 0.6;
}

.hover\:bg-opacity-70:hover{
  --tw-bg-opacity: 0.7;
}

.hover\:bg-opacity-75:hover{
  --tw-bg-opacity: 0.75;
}

.hover\:bg-opacity-80:hover{
  --tw-bg-opacity: 0.8;
}

.hover\:bg-opacity-90:hover{
  --tw-bg-opacity: 0.9;
}

.hover\:bg-opacity-95:hover{
  --tw-bg-opacity: 0.95;
}

.hover\:bg-opacity-100:hover{
  --tw-bg-opacity: 1;
}

.focus\:bg-opacity-0:focus{
  --tw-bg-opacity: 0;
}

.focus\:bg-opacity-5:focus{
  --tw-bg-opacity: 0.05;
}

.focus\:bg-opacity-10:focus{
  --tw-bg-opacity: 0.1;
}

.focus\:bg-opacity-20:focus{
  --tw-bg-opacity: 0.2;
}

.focus\:bg-opacity-25:focus{
  --tw-bg-opacity: 0.25;
}

.focus\:bg-opacity-30:focus{
  --tw-bg-opacity: 0.3;
}

.focus\:bg-opacity-40:focus{
  --tw-bg-opacity: 0.4;
}

.focus\:bg-opacity-50:focus{
  --tw-bg-opacity: 0.5;
}

.focus\:bg-opacity-60:focus{
  --tw-bg-opacity: 0.6;
}

.focus\:bg-opacity-70:focus{
  --tw-bg-opacity: 0.7;
}

.focus\:bg-opacity-75:focus{
  --tw-bg-opacity: 0.75;
}

.focus\:bg-opacity-80:focus{
  --tw-bg-opacity: 0.8;
}

.focus\:bg-opacity-90:focus{
  --tw-bg-opacity: 0.9;
}

.focus\:bg-opacity-95:focus{
  --tw-bg-opacity: 0.95;
}

.focus\:bg-opacity-100:focus{
  --tw-bg-opacity: 1;
}

.bg-none{
  background-image: none;
}

.bg-gradient-to-t{
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-gradient-to-tr{
  background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}

.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-bl{
  background-image: linear-gradient(to bottom left, var(--tw-gradient-stops));
}

.bg-gradient-to-l{
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}

.bg-gradient-to-tl{
  background-image: linear-gradient(to top left, var(--tw-gradient-stops));
}

.from-transparent{
  --tw-gradient-from: transparent;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.from-current{
  --tw-gradient-from: currentColor;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.from-black{
  --tw-gradient-from: #000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.from-white{
  --tw-gradient-from: #fff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.from-gray-50{
  --tw-gradient-from: #f9fafb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
}

.from-gray-100{
  --tw-gradient-from: #f3f4f6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
}

.from-gray-200{
  --tw-gradient-from: #e5e7eb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0));
}

.from-gray-300{
  --tw-gradient-from: #d1d5db;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0));
}

.from-gray-400{
  --tw-gradient-from: #9ca3af;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0));
}

.from-gray-500{
  --tw-gradient-from: #6b7280;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0));
}

.from-gray-600{
  --tw-gradient-from: #4b5563;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0));
}

.from-gray-700{
  --tw-gradient-from: #374151;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0));
}

.from-gray-800{
  --tw-gradient-from: #1f2937;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0));
}

.from-gray-900{
  --tw-gradient-from: #111827;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
}

.from-red-50{
  --tw-gradient-from: #fef2f2;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0));
}

.from-red-100{
  --tw-gradient-from: #fee2e2;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0));
}

.from-red-200{
  --tw-gradient-from: #fecaca;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0));
}

.from-red-300{
  --tw-gradient-from: #fca5a5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0));
}

.from-red-400{
  --tw-gradient-from: #f87171;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
}

.from-red-500{
  --tw-gradient-from: #ef4444;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
}

.from-red-600{
  --tw-gradient-from: #dc2626;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
}

.from-red-700{
  --tw-gradient-from: #b91c1c;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0));
}

.from-red-800{
  --tw-gradient-from: #991b1b;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0));
}

.from-red-900{
  --tw-gradient-from: #7f1d1d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0));
}

.from-red-light{
  --tw-gradient-from: #EA7A7A;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 122, 122, 0));
}

.from-red-default{
  --tw-gradient-from: #B90000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 0, 0, 0));
}

.from-red-dark{
  --tw-gradient-from: #580000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
}

.from-yellow-50{
  --tw-gradient-from: #fffbeb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0));
}

.from-yellow-100{
  --tw-gradient-from: #fef3c7;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0));
}

.from-yellow-200{
  --tw-gradient-from: #fde68a;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0));
}

.from-yellow-300{
  --tw-gradient-from: #fcd34d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0));
}

.from-yellow-400{
  --tw-gradient-from: #fbbf24;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
}

.from-yellow-500{
  --tw-gradient-from: #f59e0b;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
}

.from-yellow-600{
  --tw-gradient-from: #d97706;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
}

.from-yellow-700{
  --tw-gradient-from: #b45309;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0));
}

.from-yellow-800{
  --tw-gradient-from: #92400e;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0));
}

.from-yellow-900{
  --tw-gradient-from: #78350f;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0));
}

.from-green-50{
  --tw-gradient-from: #ecfdf5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0));
}

.from-green-100{
  --tw-gradient-from: #d1fae5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0));
}

.from-green-200{
  --tw-gradient-from: #a7f3d0;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0));
}

.from-green-300{
  --tw-gradient-from: #6ee7b7;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0));
}

.from-green-400{
  --tw-gradient-from: #34d399;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0));
}

.from-green-500{
  --tw-gradient-from: #10b981;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
}

.from-green-600{
  --tw-gradient-from: #059669;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
}

.from-green-700{
  --tw-gradient-from: #047857;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0));
}

.from-green-800{
  --tw-gradient-from: #065f46;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0));
}

.from-green-900{
  --tw-gradient-from: #064e3b;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
}

.from-green-light{
  --tw-gradient-from: #B5D1B9;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(181, 209, 185, 0));
}

.from-green-default{
  --tw-gradient-from: #263B29;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
}

.from-green-dark{
  --tw-gradient-from: #1C251E;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 37, 30, 0));
}

.from-blue-50{
  --tw-gradient-from: #eff6ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.from-blue-100{
  --tw-gradient-from: #dbeafe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
}

.from-blue-200{
  --tw-gradient-from: #bfdbfe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0));
}

.from-blue-300{
  --tw-gradient-from: #93c5fd;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0));
}

.from-blue-400{
  --tw-gradient-from: #60a5fa;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.from-blue-500{
  --tw-gradient-from: #3b82f6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.from-blue-600{
  --tw-gradient-from: #2563eb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
}

.from-blue-700{
  --tw-gradient-from: #1d4ed8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0));
}

.from-blue-800{
  --tw-gradient-from: #1e40af;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0));
}

.from-blue-900{
  --tw-gradient-from: #1e3a8a;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
}

.from-indigo-50{
  --tw-gradient-from: #eef2ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
}

.from-indigo-100{
  --tw-gradient-from: #e0e7ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0));
}

.from-indigo-200{
  --tw-gradient-from: #c7d2fe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0));
}

.from-indigo-300{
  --tw-gradient-from: #a5b4fc;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0));
}

.from-indigo-400{
  --tw-gradient-from: #818cf8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0));
}

.from-indigo-500{
  --tw-gradient-from: #6366f1;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
}

.from-indigo-600{
  --tw-gradient-from: #4f46e5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
}

.from-indigo-700{
  --tw-gradient-from: #4338ca;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0));
}

.from-indigo-800{
  --tw-gradient-from: #3730a3;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0));
}

.from-indigo-900{
  --tw-gradient-from: #312e81;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
}

.from-purple-50{
  --tw-gradient-from: #f5f3ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0));
}

.from-purple-100{
  --tw-gradient-from: #ede9fe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
}

.from-purple-200{
  --tw-gradient-from: #ddd6fe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0));
}

.from-purple-300{
  --tw-gradient-from: #c4b5fd;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0));
}

.from-purple-400{
  --tw-gradient-from: #a78bfa;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
}

.from-purple-500{
  --tw-gradient-from: #8b5cf6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
}

.from-purple-600{
  --tw-gradient-from: #7c3aed;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
}

.from-purple-700{
  --tw-gradient-from: #6d28d9;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0));
}

.from-purple-800{
  --tw-gradient-from: #5b21b6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0));
}

.from-purple-900{
  --tw-gradient-from: #4c1d95;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0));
}

.from-pink-50{
  --tw-gradient-from: #fdf2f8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0));
}

.from-pink-100{
  --tw-gradient-from: #fce7f3;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0));
}

.from-pink-200{
  --tw-gradient-from: #fbcfe8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0));
}

.from-pink-300{
  --tw-gradient-from: #f9a8d4;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0));
}

.from-pink-400{
  --tw-gradient-from: #f472b6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0));
}

.from-pink-500{
  --tw-gradient-from: #ec4899;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
}

.from-pink-600{
  --tw-gradient-from: #db2777;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
}

.from-pink-700{
  --tw-gradient-from: #be185d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0));
}

.from-pink-800{
  --tw-gradient-from: #9d174d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0));
}

.from-pink-900{
  --tw-gradient-from: #831843;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0));
}

.from-brown-light{
  --tw-gradient-from: #f0e9de;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 233, 222, 0));
}

.from-brown-semi{
  --tw-gradient-from: #ded6ca;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(222, 214, 202, 0));
}

.from-brown-default{
  --tw-gradient-from: #7b6c5c;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 108, 92, 0));
}

.from-brown-dark{
  --tw-gradient-from: #3d2706;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(61, 39, 6, 0));
}

.from-success-light{
  --tw-gradient-from: #91E09C;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(145, 224, 156, 0));
}

.from-success-default{
  --tw-gradient-from: #2D993C;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 153, 60, 0));
}

.from-success-dark{
  --tw-gradient-from: #263B29;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
}

.from-error-light{
  --tw-gradient-from: #F98686;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 134, 134, 0));
}

.from-error-default{
  --tw-gradient-from: #CB0707;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 7, 7, 0));
}

.from-error-dark{
  --tw-gradient-from: #580000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
}

.from-navigation-dark{
  --tw-gradient-from: #ffcd00;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 205, 0, 0));
}

.hover\:from-transparent:hover{
  --tw-gradient-from: transparent;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.hover\:from-current:hover{
  --tw-gradient-from: currentColor;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.hover\:from-black:hover{
  --tw-gradient-from: #000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.hover\:from-white:hover{
  --tw-gradient-from: #fff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.hover\:from-gray-50:hover{
  --tw-gradient-from: #f9fafb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
}

.hover\:from-gray-100:hover{
  --tw-gradient-from: #f3f4f6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
}

.hover\:from-gray-200:hover{
  --tw-gradient-from: #e5e7eb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0));
}

.hover\:from-gray-300:hover{
  --tw-gradient-from: #d1d5db;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0));
}

.hover\:from-gray-400:hover{
  --tw-gradient-from: #9ca3af;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0));
}

.hover\:from-gray-500:hover{
  --tw-gradient-from: #6b7280;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0));
}

.hover\:from-gray-600:hover{
  --tw-gradient-from: #4b5563;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0));
}

.hover\:from-gray-700:hover{
  --tw-gradient-from: #374151;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0));
}

.hover\:from-gray-800:hover{
  --tw-gradient-from: #1f2937;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0));
}

.hover\:from-gray-900:hover{
  --tw-gradient-from: #111827;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
}

.hover\:from-red-50:hover{
  --tw-gradient-from: #fef2f2;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0));
}

.hover\:from-red-100:hover{
  --tw-gradient-from: #fee2e2;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0));
}

.hover\:from-red-200:hover{
  --tw-gradient-from: #fecaca;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0));
}

.hover\:from-red-300:hover{
  --tw-gradient-from: #fca5a5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0));
}

.hover\:from-red-400:hover{
  --tw-gradient-from: #f87171;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
}

.hover\:from-red-500:hover{
  --tw-gradient-from: #ef4444;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
}

.hover\:from-red-600:hover{
  --tw-gradient-from: #dc2626;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
}

.hover\:from-red-700:hover{
  --tw-gradient-from: #b91c1c;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0));
}

.hover\:from-red-800:hover{
  --tw-gradient-from: #991b1b;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0));
}

.hover\:from-red-900:hover{
  --tw-gradient-from: #7f1d1d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0));
}

.hover\:from-red-light:hover{
  --tw-gradient-from: #EA7A7A;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 122, 122, 0));
}

.hover\:from-red-default:hover{
  --tw-gradient-from: #B90000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 0, 0, 0));
}

.hover\:from-red-dark:hover{
  --tw-gradient-from: #580000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
}

.hover\:from-yellow-50:hover{
  --tw-gradient-from: #fffbeb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0));
}

.hover\:from-yellow-100:hover{
  --tw-gradient-from: #fef3c7;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0));
}

.hover\:from-yellow-200:hover{
  --tw-gradient-from: #fde68a;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0));
}

.hover\:from-yellow-300:hover{
  --tw-gradient-from: #fcd34d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0));
}

.hover\:from-yellow-400:hover{
  --tw-gradient-from: #fbbf24;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
}

.hover\:from-yellow-500:hover{
  --tw-gradient-from: #f59e0b;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
}

.hover\:from-yellow-600:hover{
  --tw-gradient-from: #d97706;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
}

.hover\:from-yellow-700:hover{
  --tw-gradient-from: #b45309;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0));
}

.hover\:from-yellow-800:hover{
  --tw-gradient-from: #92400e;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0));
}

.hover\:from-yellow-900:hover{
  --tw-gradient-from: #78350f;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0));
}

.hover\:from-green-50:hover{
  --tw-gradient-from: #ecfdf5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0));
}

.hover\:from-green-100:hover{
  --tw-gradient-from: #d1fae5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0));
}

.hover\:from-green-200:hover{
  --tw-gradient-from: #a7f3d0;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0));
}

.hover\:from-green-300:hover{
  --tw-gradient-from: #6ee7b7;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0));
}

.hover\:from-green-400:hover{
  --tw-gradient-from: #34d399;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0));
}

.hover\:from-green-500:hover{
  --tw-gradient-from: #10b981;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
}

.hover\:from-green-600:hover{
  --tw-gradient-from: #059669;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
}

.hover\:from-green-700:hover{
  --tw-gradient-from: #047857;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0));
}

.hover\:from-green-800:hover{
  --tw-gradient-from: #065f46;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0));
}

.hover\:from-green-900:hover{
  --tw-gradient-from: #064e3b;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
}

.hover\:from-green-light:hover{
  --tw-gradient-from: #B5D1B9;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(181, 209, 185, 0));
}

.hover\:from-green-default:hover{
  --tw-gradient-from: #263B29;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
}

.hover\:from-green-dark:hover{
  --tw-gradient-from: #1C251E;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 37, 30, 0));
}

.hover\:from-blue-50:hover{
  --tw-gradient-from: #eff6ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.hover\:from-blue-100:hover{
  --tw-gradient-from: #dbeafe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
}

.hover\:from-blue-200:hover{
  --tw-gradient-from: #bfdbfe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0));
}

.hover\:from-blue-300:hover{
  --tw-gradient-from: #93c5fd;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0));
}

.hover\:from-blue-400:hover{
  --tw-gradient-from: #60a5fa;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.hover\:from-blue-500:hover{
  --tw-gradient-from: #3b82f6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.hover\:from-blue-600:hover{
  --tw-gradient-from: #2563eb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
}

.hover\:from-blue-700:hover{
  --tw-gradient-from: #1d4ed8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0));
}

.hover\:from-blue-800:hover{
  --tw-gradient-from: #1e40af;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0));
}

.hover\:from-blue-900:hover{
  --tw-gradient-from: #1e3a8a;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
}

.hover\:from-indigo-50:hover{
  --tw-gradient-from: #eef2ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
}

.hover\:from-indigo-100:hover{
  --tw-gradient-from: #e0e7ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0));
}

.hover\:from-indigo-200:hover{
  --tw-gradient-from: #c7d2fe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0));
}

.hover\:from-indigo-300:hover{
  --tw-gradient-from: #a5b4fc;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0));
}

.hover\:from-indigo-400:hover{
  --tw-gradient-from: #818cf8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0));
}

.hover\:from-indigo-500:hover{
  --tw-gradient-from: #6366f1;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
}

.hover\:from-indigo-600:hover{
  --tw-gradient-from: #4f46e5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
}

.hover\:from-indigo-700:hover{
  --tw-gradient-from: #4338ca;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0));
}

.hover\:from-indigo-800:hover{
  --tw-gradient-from: #3730a3;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0));
}

.hover\:from-indigo-900:hover{
  --tw-gradient-from: #312e81;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
}

.hover\:from-purple-50:hover{
  --tw-gradient-from: #f5f3ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0));
}

.hover\:from-purple-100:hover{
  --tw-gradient-from: #ede9fe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
}

.hover\:from-purple-200:hover{
  --tw-gradient-from: #ddd6fe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0));
}

.hover\:from-purple-300:hover{
  --tw-gradient-from: #c4b5fd;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0));
}

.hover\:from-purple-400:hover{
  --tw-gradient-from: #a78bfa;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
}

.hover\:from-purple-500:hover{
  --tw-gradient-from: #8b5cf6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
}

.hover\:from-purple-600:hover{
  --tw-gradient-from: #7c3aed;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
}

.hover\:from-purple-700:hover{
  --tw-gradient-from: #6d28d9;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0));
}

.hover\:from-purple-800:hover{
  --tw-gradient-from: #5b21b6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0));
}

.hover\:from-purple-900:hover{
  --tw-gradient-from: #4c1d95;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0));
}

.hover\:from-pink-50:hover{
  --tw-gradient-from: #fdf2f8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0));
}

.hover\:from-pink-100:hover{
  --tw-gradient-from: #fce7f3;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0));
}

.hover\:from-pink-200:hover{
  --tw-gradient-from: #fbcfe8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0));
}

.hover\:from-pink-300:hover{
  --tw-gradient-from: #f9a8d4;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0));
}

.hover\:from-pink-400:hover{
  --tw-gradient-from: #f472b6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0));
}

.hover\:from-pink-500:hover{
  --tw-gradient-from: #ec4899;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
}

.hover\:from-pink-600:hover{
  --tw-gradient-from: #db2777;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
}

.hover\:from-pink-700:hover{
  --tw-gradient-from: #be185d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0));
}

.hover\:from-pink-800:hover{
  --tw-gradient-from: #9d174d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0));
}

.hover\:from-pink-900:hover{
  --tw-gradient-from: #831843;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0));
}

.hover\:from-brown-light:hover{
  --tw-gradient-from: #f0e9de;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 233, 222, 0));
}

.hover\:from-brown-semi:hover{
  --tw-gradient-from: #ded6ca;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(222, 214, 202, 0));
}

.hover\:from-brown-default:hover{
  --tw-gradient-from: #7b6c5c;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 108, 92, 0));
}

.hover\:from-brown-dark:hover{
  --tw-gradient-from: #3d2706;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(61, 39, 6, 0));
}

.hover\:from-success-light:hover{
  --tw-gradient-from: #91E09C;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(145, 224, 156, 0));
}

.hover\:from-success-default:hover{
  --tw-gradient-from: #2D993C;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 153, 60, 0));
}

.hover\:from-success-dark:hover{
  --tw-gradient-from: #263B29;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
}

.hover\:from-error-light:hover{
  --tw-gradient-from: #F98686;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 134, 134, 0));
}

.hover\:from-error-default:hover{
  --tw-gradient-from: #CB0707;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 7, 7, 0));
}

.hover\:from-error-dark:hover{
  --tw-gradient-from: #580000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
}

.hover\:from-navigation-dark:hover{
  --tw-gradient-from: #ffcd00;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 205, 0, 0));
}

.focus\:from-transparent:focus{
  --tw-gradient-from: transparent;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.focus\:from-current:focus{
  --tw-gradient-from: currentColor;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.focus\:from-black:focus{
  --tw-gradient-from: #000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.focus\:from-white:focus{
  --tw-gradient-from: #fff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.focus\:from-gray-50:focus{
  --tw-gradient-from: #f9fafb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
}

.focus\:from-gray-100:focus{
  --tw-gradient-from: #f3f4f6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
}

.focus\:from-gray-200:focus{
  --tw-gradient-from: #e5e7eb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0));
}

.focus\:from-gray-300:focus{
  --tw-gradient-from: #d1d5db;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0));
}

.focus\:from-gray-400:focus{
  --tw-gradient-from: #9ca3af;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0));
}

.focus\:from-gray-500:focus{
  --tw-gradient-from: #6b7280;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0));
}

.focus\:from-gray-600:focus{
  --tw-gradient-from: #4b5563;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0));
}

.focus\:from-gray-700:focus{
  --tw-gradient-from: #374151;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0));
}

.focus\:from-gray-800:focus{
  --tw-gradient-from: #1f2937;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0));
}

.focus\:from-gray-900:focus{
  --tw-gradient-from: #111827;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
}

.focus\:from-red-50:focus{
  --tw-gradient-from: #fef2f2;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0));
}

.focus\:from-red-100:focus{
  --tw-gradient-from: #fee2e2;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0));
}

.focus\:from-red-200:focus{
  --tw-gradient-from: #fecaca;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0));
}

.focus\:from-red-300:focus{
  --tw-gradient-from: #fca5a5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0));
}

.focus\:from-red-400:focus{
  --tw-gradient-from: #f87171;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
}

.focus\:from-red-500:focus{
  --tw-gradient-from: #ef4444;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
}

.focus\:from-red-600:focus{
  --tw-gradient-from: #dc2626;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
}

.focus\:from-red-700:focus{
  --tw-gradient-from: #b91c1c;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0));
}

.focus\:from-red-800:focus{
  --tw-gradient-from: #991b1b;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0));
}

.focus\:from-red-900:focus{
  --tw-gradient-from: #7f1d1d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0));
}

.focus\:from-red-light:focus{
  --tw-gradient-from: #EA7A7A;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 122, 122, 0));
}

.focus\:from-red-default:focus{
  --tw-gradient-from: #B90000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 0, 0, 0));
}

.focus\:from-red-dark:focus{
  --tw-gradient-from: #580000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
}

.focus\:from-yellow-50:focus{
  --tw-gradient-from: #fffbeb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0));
}

.focus\:from-yellow-100:focus{
  --tw-gradient-from: #fef3c7;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0));
}

.focus\:from-yellow-200:focus{
  --tw-gradient-from: #fde68a;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0));
}

.focus\:from-yellow-300:focus{
  --tw-gradient-from: #fcd34d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0));
}

.focus\:from-yellow-400:focus{
  --tw-gradient-from: #fbbf24;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
}

.focus\:from-yellow-500:focus{
  --tw-gradient-from: #f59e0b;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
}

.focus\:from-yellow-600:focus{
  --tw-gradient-from: #d97706;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
}

.focus\:from-yellow-700:focus{
  --tw-gradient-from: #b45309;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0));
}

.focus\:from-yellow-800:focus{
  --tw-gradient-from: #92400e;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0));
}

.focus\:from-yellow-900:focus{
  --tw-gradient-from: #78350f;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0));
}

.focus\:from-green-50:focus{
  --tw-gradient-from: #ecfdf5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0));
}

.focus\:from-green-100:focus{
  --tw-gradient-from: #d1fae5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0));
}

.focus\:from-green-200:focus{
  --tw-gradient-from: #a7f3d0;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0));
}

.focus\:from-green-300:focus{
  --tw-gradient-from: #6ee7b7;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0));
}

.focus\:from-green-400:focus{
  --tw-gradient-from: #34d399;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0));
}

.focus\:from-green-500:focus{
  --tw-gradient-from: #10b981;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
}

.focus\:from-green-600:focus{
  --tw-gradient-from: #059669;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
}

.focus\:from-green-700:focus{
  --tw-gradient-from: #047857;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0));
}

.focus\:from-green-800:focus{
  --tw-gradient-from: #065f46;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0));
}

.focus\:from-green-900:focus{
  --tw-gradient-from: #064e3b;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
}

.focus\:from-green-light:focus{
  --tw-gradient-from: #B5D1B9;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(181, 209, 185, 0));
}

.focus\:from-green-default:focus{
  --tw-gradient-from: #263B29;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
}

.focus\:from-green-dark:focus{
  --tw-gradient-from: #1C251E;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 37, 30, 0));
}

.focus\:from-blue-50:focus{
  --tw-gradient-from: #eff6ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.focus\:from-blue-100:focus{
  --tw-gradient-from: #dbeafe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
}

.focus\:from-blue-200:focus{
  --tw-gradient-from: #bfdbfe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0));
}

.focus\:from-blue-300:focus{
  --tw-gradient-from: #93c5fd;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0));
}

.focus\:from-blue-400:focus{
  --tw-gradient-from: #60a5fa;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.focus\:from-blue-500:focus{
  --tw-gradient-from: #3b82f6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.focus\:from-blue-600:focus{
  --tw-gradient-from: #2563eb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
}

.focus\:from-blue-700:focus{
  --tw-gradient-from: #1d4ed8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0));
}

.focus\:from-blue-800:focus{
  --tw-gradient-from: #1e40af;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0));
}

.focus\:from-blue-900:focus{
  --tw-gradient-from: #1e3a8a;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
}

.focus\:from-indigo-50:focus{
  --tw-gradient-from: #eef2ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
}

.focus\:from-indigo-100:focus{
  --tw-gradient-from: #e0e7ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0));
}

.focus\:from-indigo-200:focus{
  --tw-gradient-from: #c7d2fe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0));
}

.focus\:from-indigo-300:focus{
  --tw-gradient-from: #a5b4fc;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0));
}

.focus\:from-indigo-400:focus{
  --tw-gradient-from: #818cf8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0));
}

.focus\:from-indigo-500:focus{
  --tw-gradient-from: #6366f1;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
}

.focus\:from-indigo-600:focus{
  --tw-gradient-from: #4f46e5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
}

.focus\:from-indigo-700:focus{
  --tw-gradient-from: #4338ca;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0));
}

.focus\:from-indigo-800:focus{
  --tw-gradient-from: #3730a3;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0));
}

.focus\:from-indigo-900:focus{
  --tw-gradient-from: #312e81;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
}

.focus\:from-purple-50:focus{
  --tw-gradient-from: #f5f3ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0));
}

.focus\:from-purple-100:focus{
  --tw-gradient-from: #ede9fe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
}

.focus\:from-purple-200:focus{
  --tw-gradient-from: #ddd6fe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0));
}

.focus\:from-purple-300:focus{
  --tw-gradient-from: #c4b5fd;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0));
}

.focus\:from-purple-400:focus{
  --tw-gradient-from: #a78bfa;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
}

.focus\:from-purple-500:focus{
  --tw-gradient-from: #8b5cf6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
}

.focus\:from-purple-600:focus{
  --tw-gradient-from: #7c3aed;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
}

.focus\:from-purple-700:focus{
  --tw-gradient-from: #6d28d9;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0));
}

.focus\:from-purple-800:focus{
  --tw-gradient-from: #5b21b6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0));
}

.focus\:from-purple-900:focus{
  --tw-gradient-from: #4c1d95;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0));
}

.focus\:from-pink-50:focus{
  --tw-gradient-from: #fdf2f8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0));
}

.focus\:from-pink-100:focus{
  --tw-gradient-from: #fce7f3;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0));
}

.focus\:from-pink-200:focus{
  --tw-gradient-from: #fbcfe8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0));
}

.focus\:from-pink-300:focus{
  --tw-gradient-from: #f9a8d4;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0));
}

.focus\:from-pink-400:focus{
  --tw-gradient-from: #f472b6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0));
}

.focus\:from-pink-500:focus{
  --tw-gradient-from: #ec4899;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
}

.focus\:from-pink-600:focus{
  --tw-gradient-from: #db2777;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
}

.focus\:from-pink-700:focus{
  --tw-gradient-from: #be185d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0));
}

.focus\:from-pink-800:focus{
  --tw-gradient-from: #9d174d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0));
}

.focus\:from-pink-900:focus{
  --tw-gradient-from: #831843;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0));
}

.focus\:from-brown-light:focus{
  --tw-gradient-from: #f0e9de;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 233, 222, 0));
}

.focus\:from-brown-semi:focus{
  --tw-gradient-from: #ded6ca;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(222, 214, 202, 0));
}

.focus\:from-brown-default:focus{
  --tw-gradient-from: #7b6c5c;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 108, 92, 0));
}

.focus\:from-brown-dark:focus{
  --tw-gradient-from: #3d2706;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(61, 39, 6, 0));
}

.focus\:from-success-light:focus{
  --tw-gradient-from: #91E09C;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(145, 224, 156, 0));
}

.focus\:from-success-default:focus{
  --tw-gradient-from: #2D993C;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 153, 60, 0));
}

.focus\:from-success-dark:focus{
  --tw-gradient-from: #263B29;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
}

.focus\:from-error-light:focus{
  --tw-gradient-from: #F98686;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 134, 134, 0));
}

.focus\:from-error-default:focus{
  --tw-gradient-from: #CB0707;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 7, 7, 0));
}

.focus\:from-error-dark:focus{
  --tw-gradient-from: #580000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
}

.focus\:from-navigation-dark:focus{
  --tw-gradient-from: #ffcd00;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 205, 0, 0));
}

.via-transparent{
  --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.via-current{
  --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.via-black{
  --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.via-white{
  --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.via-gray-50{
  --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0));
}

.via-gray-100{
  --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0));
}

.via-gray-200{
  --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0));
}

.via-gray-300{
  --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0));
}

.via-gray-400{
  --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0));
}

.via-gray-500{
  --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0));
}

.via-gray-600{
  --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0));
}

.via-gray-700{
  --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0));
}

.via-gray-800{
  --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0));
}

.via-gray-900{
  --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
}

.via-red-50{
  --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
}

.via-red-100{
  --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0));
}

.via-red-200{
  --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0));
}

.via-red-300{
  --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0));
}

.via-red-400{
  --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0));
}

.via-red-500{
  --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0));
}

.via-red-600{
  --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0));
}

.via-red-700{
  --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0));
}

.via-red-800{
  --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0));
}

.via-red-900{
  --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0));
}

.via-red-light{
  --tw-gradient-stops: var(--tw-gradient-from), #EA7A7A, var(--tw-gradient-to, rgba(234, 122, 122, 0));
}

.via-red-default{
  --tw-gradient-stops: var(--tw-gradient-from), #B90000, var(--tw-gradient-to, rgba(185, 0, 0, 0));
}

.via-red-dark{
  --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
}

.via-yellow-50{
  --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
}

.via-yellow-100{
  --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0));
}

.via-yellow-200{
  --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0));
}

.via-yellow-300{
  --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0));
}

.via-yellow-400{
  --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0));
}

.via-yellow-500{
  --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0));
}

.via-yellow-600{
  --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0));
}

.via-yellow-700{
  --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0));
}

.via-yellow-800{
  --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0));
}

.via-yellow-900{
  --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0));
}

.via-green-50{
  --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0));
}

.via-green-100{
  --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0));
}

.via-green-200{
  --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0));
}

.via-green-300{
  --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0));
}

.via-green-400{
  --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0));
}

.via-green-500{
  --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0));
}

.via-green-600{
  --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0));
}

.via-green-700{
  --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0));
}

.via-green-800{
  --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0));
}

.via-green-900{
  --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0));
}

.via-green-light{
  --tw-gradient-stops: var(--tw-gradient-from), #B5D1B9, var(--tw-gradient-to, rgba(181, 209, 185, 0));
}

.via-green-default{
  --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
}

.via-green-dark{
  --tw-gradient-stops: var(--tw-gradient-from), #1C251E, var(--tw-gradient-to, rgba(28, 37, 30, 0));
}

.via-blue-50{
  --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.via-blue-100{
  --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
}

.via-blue-200{
  --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0));
}

.via-blue-300{
  --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
}

.via-blue-400{
  --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.via-blue-500{
  --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.via-blue-600{
  --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0));
}

.via-blue-700{
  --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0));
}

.via-blue-800{
  --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0));
}

.via-blue-900{
  --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
}

.via-indigo-50{
  --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0));
}

.via-indigo-100{
  --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0));
}

.via-indigo-200{
  --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0));
}

.via-indigo-300{
  --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0));
}

.via-indigo-400{
  --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0));
}

.via-indigo-500{
  --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0));
}

.via-indigo-600{
  --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0));
}

.via-indigo-700{
  --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
}

.via-indigo-800{
  --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0));
}

.via-indigo-900{
  --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0));
}

.via-purple-50{
  --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0));
}

.via-purple-100{
  --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0));
}

.via-purple-200{
  --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0));
}

.via-purple-300{
  --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0));
}

.via-purple-400{
  --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
}

.via-purple-500{
  --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0));
}

.via-purple-600{
  --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0));
}

.via-purple-700{
  --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0));
}

.via-purple-800{
  --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0));
}

.via-purple-900{
  --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0));
}

.via-pink-50{
  --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0));
}

.via-pink-100{
  --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0));
}

.via-pink-200{
  --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0));
}

.via-pink-300{
  --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0));
}

.via-pink-400{
  --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0));
}

.via-pink-500{
  --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0));
}

.via-pink-600{
  --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0));
}

.via-pink-700{
  --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0));
}

.via-pink-800{
  --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0));
}

.via-pink-900{
  --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0));
}

.via-brown-light{
  --tw-gradient-stops: var(--tw-gradient-from), #f0e9de, var(--tw-gradient-to, rgba(240, 233, 222, 0));
}

.via-brown-semi{
  --tw-gradient-stops: var(--tw-gradient-from), #ded6ca, var(--tw-gradient-to, rgba(222, 214, 202, 0));
}

.via-brown-default{
  --tw-gradient-stops: var(--tw-gradient-from), #7b6c5c, var(--tw-gradient-to, rgba(123, 108, 92, 0));
}

.via-brown-dark{
  --tw-gradient-stops: var(--tw-gradient-from), #3d2706, var(--tw-gradient-to, rgba(61, 39, 6, 0));
}

.via-success-light{
  --tw-gradient-stops: var(--tw-gradient-from), #91E09C, var(--tw-gradient-to, rgba(145, 224, 156, 0));
}

.via-success-default{
  --tw-gradient-stops: var(--tw-gradient-from), #2D993C, var(--tw-gradient-to, rgba(45, 153, 60, 0));
}

.via-success-dark{
  --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
}

.via-error-light{
  --tw-gradient-stops: var(--tw-gradient-from), #F98686, var(--tw-gradient-to, rgba(249, 134, 134, 0));
}

.via-error-default{
  --tw-gradient-stops: var(--tw-gradient-from), #CB0707, var(--tw-gradient-to, rgba(203, 7, 7, 0));
}

.via-error-dark{
  --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
}

.via-navigation-dark{
  --tw-gradient-stops: var(--tw-gradient-from), #ffcd00, var(--tw-gradient-to, rgba(255, 205, 0, 0));
}

.hover\:via-transparent:hover{
  --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.hover\:via-current:hover{
  --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.hover\:via-black:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.hover\:via-white:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.hover\:via-gray-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0));
}

.hover\:via-gray-100:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0));
}

.hover\:via-gray-200:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0));
}

.hover\:via-gray-300:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0));
}

.hover\:via-gray-400:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0));
}

.hover\:via-gray-500:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0));
}

.hover\:via-gray-600:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0));
}

.hover\:via-gray-700:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0));
}

.hover\:via-gray-800:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0));
}

.hover\:via-gray-900:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
}

.hover\:via-red-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
}

.hover\:via-red-100:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0));
}

.hover\:via-red-200:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0));
}

.hover\:via-red-300:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0));
}

.hover\:via-red-400:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0));
}

.hover\:via-red-500:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0));
}

.hover\:via-red-600:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0));
}

.hover\:via-red-700:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0));
}

.hover\:via-red-800:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0));
}

.hover\:via-red-900:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0));
}

.hover\:via-red-light:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #EA7A7A, var(--tw-gradient-to, rgba(234, 122, 122, 0));
}

.hover\:via-red-default:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #B90000, var(--tw-gradient-to, rgba(185, 0, 0, 0));
}

.hover\:via-red-dark:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
}

.hover\:via-yellow-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
}

.hover\:via-yellow-100:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0));
}

.hover\:via-yellow-200:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0));
}

.hover\:via-yellow-300:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0));
}

.hover\:via-yellow-400:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0));
}

.hover\:via-yellow-500:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0));
}

.hover\:via-yellow-600:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0));
}

.hover\:via-yellow-700:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0));
}

.hover\:via-yellow-800:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0));
}

.hover\:via-yellow-900:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0));
}

.hover\:via-green-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0));
}

.hover\:via-green-100:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0));
}

.hover\:via-green-200:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0));
}

.hover\:via-green-300:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0));
}

.hover\:via-green-400:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0));
}

.hover\:via-green-500:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0));
}

.hover\:via-green-600:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0));
}

.hover\:via-green-700:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0));
}

.hover\:via-green-800:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0));
}

.hover\:via-green-900:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0));
}

.hover\:via-green-light:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #B5D1B9, var(--tw-gradient-to, rgba(181, 209, 185, 0));
}

.hover\:via-green-default:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
}

.hover\:via-green-dark:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #1C251E, var(--tw-gradient-to, rgba(28, 37, 30, 0));
}

.hover\:via-blue-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.hover\:via-blue-100:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
}

.hover\:via-blue-200:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0));
}

.hover\:via-blue-300:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
}

.hover\:via-blue-400:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.hover\:via-blue-500:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.hover\:via-blue-600:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0));
}

.hover\:via-blue-700:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0));
}

.hover\:via-blue-800:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0));
}

.hover\:via-blue-900:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
}

.hover\:via-indigo-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0));
}

.hover\:via-indigo-100:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0));
}

.hover\:via-indigo-200:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0));
}

.hover\:via-indigo-300:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0));
}

.hover\:via-indigo-400:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0));
}

.hover\:via-indigo-500:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0));
}

.hover\:via-indigo-600:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0));
}

.hover\:via-indigo-700:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
}

.hover\:via-indigo-800:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0));
}

.hover\:via-indigo-900:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0));
}

.hover\:via-purple-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0));
}

.hover\:via-purple-100:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0));
}

.hover\:via-purple-200:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0));
}

.hover\:via-purple-300:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0));
}

.hover\:via-purple-400:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
}

.hover\:via-purple-500:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0));
}

.hover\:via-purple-600:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0));
}

.hover\:via-purple-700:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0));
}

.hover\:via-purple-800:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0));
}

.hover\:via-purple-900:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0));
}

.hover\:via-pink-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0));
}

.hover\:via-pink-100:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0));
}

.hover\:via-pink-200:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0));
}

.hover\:via-pink-300:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0));
}

.hover\:via-pink-400:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0));
}

.hover\:via-pink-500:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0));
}

.hover\:via-pink-600:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0));
}

.hover\:via-pink-700:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0));
}

.hover\:via-pink-800:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0));
}

.hover\:via-pink-900:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0));
}

.hover\:via-brown-light:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #f0e9de, var(--tw-gradient-to, rgba(240, 233, 222, 0));
}

.hover\:via-brown-semi:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #ded6ca, var(--tw-gradient-to, rgba(222, 214, 202, 0));
}

.hover\:via-brown-default:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #7b6c5c, var(--tw-gradient-to, rgba(123, 108, 92, 0));
}

.hover\:via-brown-dark:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #3d2706, var(--tw-gradient-to, rgba(61, 39, 6, 0));
}

.hover\:via-success-light:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #91E09C, var(--tw-gradient-to, rgba(145, 224, 156, 0));
}

.hover\:via-success-default:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #2D993C, var(--tw-gradient-to, rgba(45, 153, 60, 0));
}

.hover\:via-success-dark:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
}

.hover\:via-error-light:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #F98686, var(--tw-gradient-to, rgba(249, 134, 134, 0));
}

.hover\:via-error-default:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #CB0707, var(--tw-gradient-to, rgba(203, 7, 7, 0));
}

.hover\:via-error-dark:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
}

.hover\:via-navigation-dark:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #ffcd00, var(--tw-gradient-to, rgba(255, 205, 0, 0));
}

.focus\:via-transparent:focus{
  --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.focus\:via-current:focus{
  --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.focus\:via-black:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.focus\:via-white:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.focus\:via-gray-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0));
}

.focus\:via-gray-100:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0));
}

.focus\:via-gray-200:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0));
}

.focus\:via-gray-300:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0));
}

.focus\:via-gray-400:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0));
}

.focus\:via-gray-500:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0));
}

.focus\:via-gray-600:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0));
}

.focus\:via-gray-700:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0));
}

.focus\:via-gray-800:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0));
}

.focus\:via-gray-900:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
}

.focus\:via-red-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
}

.focus\:via-red-100:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0));
}

.focus\:via-red-200:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0));
}

.focus\:via-red-300:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0));
}

.focus\:via-red-400:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0));
}

.focus\:via-red-500:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0));
}

.focus\:via-red-600:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0));
}

.focus\:via-red-700:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0));
}

.focus\:via-red-800:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0));
}

.focus\:via-red-900:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0));
}

.focus\:via-red-light:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #EA7A7A, var(--tw-gradient-to, rgba(234, 122, 122, 0));
}

.focus\:via-red-default:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #B90000, var(--tw-gradient-to, rgba(185, 0, 0, 0));
}

.focus\:via-red-dark:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
}

.focus\:via-yellow-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
}

.focus\:via-yellow-100:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0));
}

.focus\:via-yellow-200:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0));
}

.focus\:via-yellow-300:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0));
}

.focus\:via-yellow-400:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0));
}

.focus\:via-yellow-500:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0));
}

.focus\:via-yellow-600:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0));
}

.focus\:via-yellow-700:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0));
}

.focus\:via-yellow-800:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0));
}

.focus\:via-yellow-900:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0));
}

.focus\:via-green-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0));
}

.focus\:via-green-100:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0));
}

.focus\:via-green-200:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0));
}

.focus\:via-green-300:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0));
}

.focus\:via-green-400:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0));
}

.focus\:via-green-500:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0));
}

.focus\:via-green-600:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0));
}

.focus\:via-green-700:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0));
}

.focus\:via-green-800:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0));
}

.focus\:via-green-900:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0));
}

.focus\:via-green-light:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #B5D1B9, var(--tw-gradient-to, rgba(181, 209, 185, 0));
}

.focus\:via-green-default:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
}

.focus\:via-green-dark:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #1C251E, var(--tw-gradient-to, rgba(28, 37, 30, 0));
}

.focus\:via-blue-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.focus\:via-blue-100:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
}

.focus\:via-blue-200:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0));
}

.focus\:via-blue-300:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
}

.focus\:via-blue-400:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0));
}

.focus\:via-blue-500:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.focus\:via-blue-600:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0));
}

.focus\:via-blue-700:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0));
}

.focus\:via-blue-800:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0));
}

.focus\:via-blue-900:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
}

.focus\:via-indigo-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0));
}

.focus\:via-indigo-100:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0));
}

.focus\:via-indigo-200:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0));
}

.focus\:via-indigo-300:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0));
}

.focus\:via-indigo-400:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0));
}

.focus\:via-indigo-500:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0));
}

.focus\:via-indigo-600:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0));
}

.focus\:via-indigo-700:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
}

.focus\:via-indigo-800:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0));
}

.focus\:via-indigo-900:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0));
}

.focus\:via-purple-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0));
}

.focus\:via-purple-100:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0));
}

.focus\:via-purple-200:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0));
}

.focus\:via-purple-300:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0));
}

.focus\:via-purple-400:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
}

.focus\:via-purple-500:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0));
}

.focus\:via-purple-600:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0));
}

.focus\:via-purple-700:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0));
}

.focus\:via-purple-800:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0));
}

.focus\:via-purple-900:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0));
}

.focus\:via-pink-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0));
}

.focus\:via-pink-100:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0));
}

.focus\:via-pink-200:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0));
}

.focus\:via-pink-300:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0));
}

.focus\:via-pink-400:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0));
}

.focus\:via-pink-500:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0));
}

.focus\:via-pink-600:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0));
}

.focus\:via-pink-700:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0));
}

.focus\:via-pink-800:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0));
}

.focus\:via-pink-900:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0));
}

.focus\:via-brown-light:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #f0e9de, var(--tw-gradient-to, rgba(240, 233, 222, 0));
}

.focus\:via-brown-semi:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #ded6ca, var(--tw-gradient-to, rgba(222, 214, 202, 0));
}

.focus\:via-brown-default:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #7b6c5c, var(--tw-gradient-to, rgba(123, 108, 92, 0));
}

.focus\:via-brown-dark:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #3d2706, var(--tw-gradient-to, rgba(61, 39, 6, 0));
}

.focus\:via-success-light:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #91E09C, var(--tw-gradient-to, rgba(145, 224, 156, 0));
}

.focus\:via-success-default:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #2D993C, var(--tw-gradient-to, rgba(45, 153, 60, 0));
}

.focus\:via-success-dark:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
}

.focus\:via-error-light:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #F98686, var(--tw-gradient-to, rgba(249, 134, 134, 0));
}

.focus\:via-error-default:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #CB0707, var(--tw-gradient-to, rgba(203, 7, 7, 0));
}

.focus\:via-error-dark:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
}

.focus\:via-navigation-dark:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #ffcd00, var(--tw-gradient-to, rgba(255, 205, 0, 0));
}

.to-transparent{
  --tw-gradient-to: transparent;
}

.to-current{
  --tw-gradient-to: currentColor;
}

.to-black{
  --tw-gradient-to: #000;
}

.to-white{
  --tw-gradient-to: #fff;
}

.to-gray-50{
  --tw-gradient-to: #f9fafb;
}

.to-gray-100{
  --tw-gradient-to: #f3f4f6;
}

.to-gray-200{
  --tw-gradient-to: #e5e7eb;
}

.to-gray-300{
  --tw-gradient-to: #d1d5db;
}

.to-gray-400{
  --tw-gradient-to: #9ca3af;
}

.to-gray-500{
  --tw-gradient-to: #6b7280;
}

.to-gray-600{
  --tw-gradient-to: #4b5563;
}

.to-gray-700{
  --tw-gradient-to: #374151;
}

.to-gray-800{
  --tw-gradient-to: #1f2937;
}

.to-gray-900{
  --tw-gradient-to: #111827;
}

.to-red-50{
  --tw-gradient-to: #fef2f2;
}

.to-red-100{
  --tw-gradient-to: #fee2e2;
}

.to-red-200{
  --tw-gradient-to: #fecaca;
}

.to-red-300{
  --tw-gradient-to: #fca5a5;
}

.to-red-400{
  --tw-gradient-to: #f87171;
}

.to-red-500{
  --tw-gradient-to: #ef4444;
}

.to-red-600{
  --tw-gradient-to: #dc2626;
}

.to-red-700{
  --tw-gradient-to: #b91c1c;
}

.to-red-800{
  --tw-gradient-to: #991b1b;
}

.to-red-900{
  --tw-gradient-to: #7f1d1d;
}

.to-red-light{
  --tw-gradient-to: #EA7A7A;
}

.to-red-default{
  --tw-gradient-to: #B90000;
}

.to-red-dark{
  --tw-gradient-to: #580000;
}

.to-yellow-50{
  --tw-gradient-to: #fffbeb;
}

.to-yellow-100{
  --tw-gradient-to: #fef3c7;
}

.to-yellow-200{
  --tw-gradient-to: #fde68a;
}

.to-yellow-300{
  --tw-gradient-to: #fcd34d;
}

.to-yellow-400{
  --tw-gradient-to: #fbbf24;
}

.to-yellow-500{
  --tw-gradient-to: #f59e0b;
}

.to-yellow-600{
  --tw-gradient-to: #d97706;
}

.to-yellow-700{
  --tw-gradient-to: #b45309;
}

.to-yellow-800{
  --tw-gradient-to: #92400e;
}

.to-yellow-900{
  --tw-gradient-to: #78350f;
}

.to-green-50{
  --tw-gradient-to: #ecfdf5;
}

.to-green-100{
  --tw-gradient-to: #d1fae5;
}

.to-green-200{
  --tw-gradient-to: #a7f3d0;
}

.to-green-300{
  --tw-gradient-to: #6ee7b7;
}

.to-green-400{
  --tw-gradient-to: #34d399;
}

.to-green-500{
  --tw-gradient-to: #10b981;
}

.to-green-600{
  --tw-gradient-to: #059669;
}

.to-green-700{
  --tw-gradient-to: #047857;
}

.to-green-800{
  --tw-gradient-to: #065f46;
}

.to-green-900{
  --tw-gradient-to: #064e3b;
}

.to-green-light{
  --tw-gradient-to: #B5D1B9;
}

.to-green-default{
  --tw-gradient-to: #263B29;
}

.to-green-dark{
  --tw-gradient-to: #1C251E;
}

.to-blue-50{
  --tw-gradient-to: #eff6ff;
}

.to-blue-100{
  --tw-gradient-to: #dbeafe;
}

.to-blue-200{
  --tw-gradient-to: #bfdbfe;
}

.to-blue-300{
  --tw-gradient-to: #93c5fd;
}

.to-blue-400{
  --tw-gradient-to: #60a5fa;
}

.to-blue-500{
  --tw-gradient-to: #3b82f6;
}

.to-blue-600{
  --tw-gradient-to: #2563eb;
}

.to-blue-700{
  --tw-gradient-to: #1d4ed8;
}

.to-blue-800{
  --tw-gradient-to: #1e40af;
}

.to-blue-900{
  --tw-gradient-to: #1e3a8a;
}

.to-indigo-50{
  --tw-gradient-to: #eef2ff;
}

.to-indigo-100{
  --tw-gradient-to: #e0e7ff;
}

.to-indigo-200{
  --tw-gradient-to: #c7d2fe;
}

.to-indigo-300{
  --tw-gradient-to: #a5b4fc;
}

.to-indigo-400{
  --tw-gradient-to: #818cf8;
}

.to-indigo-500{
  --tw-gradient-to: #6366f1;
}

.to-indigo-600{
  --tw-gradient-to: #4f46e5;
}

.to-indigo-700{
  --tw-gradient-to: #4338ca;
}

.to-indigo-800{
  --tw-gradient-to: #3730a3;
}

.to-indigo-900{
  --tw-gradient-to: #312e81;
}

.to-purple-50{
  --tw-gradient-to: #f5f3ff;
}

.to-purple-100{
  --tw-gradient-to: #ede9fe;
}

.to-purple-200{
  --tw-gradient-to: #ddd6fe;
}

.to-purple-300{
  --tw-gradient-to: #c4b5fd;
}

.to-purple-400{
  --tw-gradient-to: #a78bfa;
}

.to-purple-500{
  --tw-gradient-to: #8b5cf6;
}

.to-purple-600{
  --tw-gradient-to: #7c3aed;
}

.to-purple-700{
  --tw-gradient-to: #6d28d9;
}

.to-purple-800{
  --tw-gradient-to: #5b21b6;
}

.to-purple-900{
  --tw-gradient-to: #4c1d95;
}

.to-pink-50{
  --tw-gradient-to: #fdf2f8;
}

.to-pink-100{
  --tw-gradient-to: #fce7f3;
}

.to-pink-200{
  --tw-gradient-to: #fbcfe8;
}

.to-pink-300{
  --tw-gradient-to: #f9a8d4;
}

.to-pink-400{
  --tw-gradient-to: #f472b6;
}

.to-pink-500{
  --tw-gradient-to: #ec4899;
}

.to-pink-600{
  --tw-gradient-to: #db2777;
}

.to-pink-700{
  --tw-gradient-to: #be185d;
}

.to-pink-800{
  --tw-gradient-to: #9d174d;
}

.to-pink-900{
  --tw-gradient-to: #831843;
}

.to-brown-light{
  --tw-gradient-to: #f0e9de;
}

.to-brown-semi{
  --tw-gradient-to: #ded6ca;
}

.to-brown-default{
  --tw-gradient-to: #7b6c5c;
}

.to-brown-dark{
  --tw-gradient-to: #3d2706;
}

.to-success-light{
  --tw-gradient-to: #91E09C;
}

.to-success-default{
  --tw-gradient-to: #2D993C;
}

.to-success-dark{
  --tw-gradient-to: #263B29;
}

.to-error-light{
  --tw-gradient-to: #F98686;
}

.to-error-default{
  --tw-gradient-to: #CB0707;
}

.to-error-dark{
  --tw-gradient-to: #580000;
}

.to-navigation-dark{
  --tw-gradient-to: #ffcd00;
}

.hover\:to-transparent:hover{
  --tw-gradient-to: transparent;
}

.hover\:to-current:hover{
  --tw-gradient-to: currentColor;
}

.hover\:to-black:hover{
  --tw-gradient-to: #000;
}

.hover\:to-white:hover{
  --tw-gradient-to: #fff;
}

.hover\:to-gray-50:hover{
  --tw-gradient-to: #f9fafb;
}

.hover\:to-gray-100:hover{
  --tw-gradient-to: #f3f4f6;
}

.hover\:to-gray-200:hover{
  --tw-gradient-to: #e5e7eb;
}

.hover\:to-gray-300:hover{
  --tw-gradient-to: #d1d5db;
}

.hover\:to-gray-400:hover{
  --tw-gradient-to: #9ca3af;
}

.hover\:to-gray-500:hover{
  --tw-gradient-to: #6b7280;
}

.hover\:to-gray-600:hover{
  --tw-gradient-to: #4b5563;
}

.hover\:to-gray-700:hover{
  --tw-gradient-to: #374151;
}

.hover\:to-gray-800:hover{
  --tw-gradient-to: #1f2937;
}

.hover\:to-gray-900:hover{
  --tw-gradient-to: #111827;
}

.hover\:to-red-50:hover{
  --tw-gradient-to: #fef2f2;
}

.hover\:to-red-100:hover{
  --tw-gradient-to: #fee2e2;
}

.hover\:to-red-200:hover{
  --tw-gradient-to: #fecaca;
}

.hover\:to-red-300:hover{
  --tw-gradient-to: #fca5a5;
}

.hover\:to-red-400:hover{
  --tw-gradient-to: #f87171;
}

.hover\:to-red-500:hover{
  --tw-gradient-to: #ef4444;
}

.hover\:to-red-600:hover{
  --tw-gradient-to: #dc2626;
}

.hover\:to-red-700:hover{
  --tw-gradient-to: #b91c1c;
}

.hover\:to-red-800:hover{
  --tw-gradient-to: #991b1b;
}

.hover\:to-red-900:hover{
  --tw-gradient-to: #7f1d1d;
}

.hover\:to-red-light:hover{
  --tw-gradient-to: #EA7A7A;
}

.hover\:to-red-default:hover{
  --tw-gradient-to: #B90000;
}

.hover\:to-red-dark:hover{
  --tw-gradient-to: #580000;
}

.hover\:to-yellow-50:hover{
  --tw-gradient-to: #fffbeb;
}

.hover\:to-yellow-100:hover{
  --tw-gradient-to: #fef3c7;
}

.hover\:to-yellow-200:hover{
  --tw-gradient-to: #fde68a;
}

.hover\:to-yellow-300:hover{
  --tw-gradient-to: #fcd34d;
}

.hover\:to-yellow-400:hover{
  --tw-gradient-to: #fbbf24;
}

.hover\:to-yellow-500:hover{
  --tw-gradient-to: #f59e0b;
}

.hover\:to-yellow-600:hover{
  --tw-gradient-to: #d97706;
}

.hover\:to-yellow-700:hover{
  --tw-gradient-to: #b45309;
}

.hover\:to-yellow-800:hover{
  --tw-gradient-to: #92400e;
}

.hover\:to-yellow-900:hover{
  --tw-gradient-to: #78350f;
}

.hover\:to-green-50:hover{
  --tw-gradient-to: #ecfdf5;
}

.hover\:to-green-100:hover{
  --tw-gradient-to: #d1fae5;
}

.hover\:to-green-200:hover{
  --tw-gradient-to: #a7f3d0;
}

.hover\:to-green-300:hover{
  --tw-gradient-to: #6ee7b7;
}

.hover\:to-green-400:hover{
  --tw-gradient-to: #34d399;
}

.hover\:to-green-500:hover{
  --tw-gradient-to: #10b981;
}

.hover\:to-green-600:hover{
  --tw-gradient-to: #059669;
}

.hover\:to-green-700:hover{
  --tw-gradient-to: #047857;
}

.hover\:to-green-800:hover{
  --tw-gradient-to: #065f46;
}

.hover\:to-green-900:hover{
  --tw-gradient-to: #064e3b;
}

.hover\:to-green-light:hover{
  --tw-gradient-to: #B5D1B9;
}

.hover\:to-green-default:hover{
  --tw-gradient-to: #263B29;
}

.hover\:to-green-dark:hover{
  --tw-gradient-to: #1C251E;
}

.hover\:to-blue-50:hover{
  --tw-gradient-to: #eff6ff;
}

.hover\:to-blue-100:hover{
  --tw-gradient-to: #dbeafe;
}

.hover\:to-blue-200:hover{
  --tw-gradient-to: #bfdbfe;
}

.hover\:to-blue-300:hover{
  --tw-gradient-to: #93c5fd;
}

.hover\:to-blue-400:hover{
  --tw-gradient-to: #60a5fa;
}

.hover\:to-blue-500:hover{
  --tw-gradient-to: #3b82f6;
}

.hover\:to-blue-600:hover{
  --tw-gradient-to: #2563eb;
}

.hover\:to-blue-700:hover{
  --tw-gradient-to: #1d4ed8;
}

.hover\:to-blue-800:hover{
  --tw-gradient-to: #1e40af;
}

.hover\:to-blue-900:hover{
  --tw-gradient-to: #1e3a8a;
}

.hover\:to-indigo-50:hover{
  --tw-gradient-to: #eef2ff;
}

.hover\:to-indigo-100:hover{
  --tw-gradient-to: #e0e7ff;
}

.hover\:to-indigo-200:hover{
  --tw-gradient-to: #c7d2fe;
}

.hover\:to-indigo-300:hover{
  --tw-gradient-to: #a5b4fc;
}

.hover\:to-indigo-400:hover{
  --tw-gradient-to: #818cf8;
}

.hover\:to-indigo-500:hover{
  --tw-gradient-to: #6366f1;
}

.hover\:to-indigo-600:hover{
  --tw-gradient-to: #4f46e5;
}

.hover\:to-indigo-700:hover{
  --tw-gradient-to: #4338ca;
}

.hover\:to-indigo-800:hover{
  --tw-gradient-to: #3730a3;
}

.hover\:to-indigo-900:hover{
  --tw-gradient-to: #312e81;
}

.hover\:to-purple-50:hover{
  --tw-gradient-to: #f5f3ff;
}

.hover\:to-purple-100:hover{
  --tw-gradient-to: #ede9fe;
}

.hover\:to-purple-200:hover{
  --tw-gradient-to: #ddd6fe;
}

.hover\:to-purple-300:hover{
  --tw-gradient-to: #c4b5fd;
}

.hover\:to-purple-400:hover{
  --tw-gradient-to: #a78bfa;
}

.hover\:to-purple-500:hover{
  --tw-gradient-to: #8b5cf6;
}

.hover\:to-purple-600:hover{
  --tw-gradient-to: #7c3aed;
}

.hover\:to-purple-700:hover{
  --tw-gradient-to: #6d28d9;
}

.hover\:to-purple-800:hover{
  --tw-gradient-to: #5b21b6;
}

.hover\:to-purple-900:hover{
  --tw-gradient-to: #4c1d95;
}

.hover\:to-pink-50:hover{
  --tw-gradient-to: #fdf2f8;
}

.hover\:to-pink-100:hover{
  --tw-gradient-to: #fce7f3;
}

.hover\:to-pink-200:hover{
  --tw-gradient-to: #fbcfe8;
}

.hover\:to-pink-300:hover{
  --tw-gradient-to: #f9a8d4;
}

.hover\:to-pink-400:hover{
  --tw-gradient-to: #f472b6;
}

.hover\:to-pink-500:hover{
  --tw-gradient-to: #ec4899;
}

.hover\:to-pink-600:hover{
  --tw-gradient-to: #db2777;
}

.hover\:to-pink-700:hover{
  --tw-gradient-to: #be185d;
}

.hover\:to-pink-800:hover{
  --tw-gradient-to: #9d174d;
}

.hover\:to-pink-900:hover{
  --tw-gradient-to: #831843;
}

.hover\:to-brown-light:hover{
  --tw-gradient-to: #f0e9de;
}

.hover\:to-brown-semi:hover{
  --tw-gradient-to: #ded6ca;
}

.hover\:to-brown-default:hover{
  --tw-gradient-to: #7b6c5c;
}

.hover\:to-brown-dark:hover{
  --tw-gradient-to: #3d2706;
}

.hover\:to-success-light:hover{
  --tw-gradient-to: #91E09C;
}

.hover\:to-success-default:hover{
  --tw-gradient-to: #2D993C;
}

.hover\:to-success-dark:hover{
  --tw-gradient-to: #263B29;
}

.hover\:to-error-light:hover{
  --tw-gradient-to: #F98686;
}

.hover\:to-error-default:hover{
  --tw-gradient-to: #CB0707;
}

.hover\:to-error-dark:hover{
  --tw-gradient-to: #580000;
}

.hover\:to-navigation-dark:hover{
  --tw-gradient-to: #ffcd00;
}

.focus\:to-transparent:focus{
  --tw-gradient-to: transparent;
}

.focus\:to-current:focus{
  --tw-gradient-to: currentColor;
}

.focus\:to-black:focus{
  --tw-gradient-to: #000;
}

.focus\:to-white:focus{
  --tw-gradient-to: #fff;
}

.focus\:to-gray-50:focus{
  --tw-gradient-to: #f9fafb;
}

.focus\:to-gray-100:focus{
  --tw-gradient-to: #f3f4f6;
}

.focus\:to-gray-200:focus{
  --tw-gradient-to: #e5e7eb;
}

.focus\:to-gray-300:focus{
  --tw-gradient-to: #d1d5db;
}

.focus\:to-gray-400:focus{
  --tw-gradient-to: #9ca3af;
}

.focus\:to-gray-500:focus{
  --tw-gradient-to: #6b7280;
}

.focus\:to-gray-600:focus{
  --tw-gradient-to: #4b5563;
}

.focus\:to-gray-700:focus{
  --tw-gradient-to: #374151;
}

.focus\:to-gray-800:focus{
  --tw-gradient-to: #1f2937;
}

.focus\:to-gray-900:focus{
  --tw-gradient-to: #111827;
}

.focus\:to-red-50:focus{
  --tw-gradient-to: #fef2f2;
}

.focus\:to-red-100:focus{
  --tw-gradient-to: #fee2e2;
}

.focus\:to-red-200:focus{
  --tw-gradient-to: #fecaca;
}

.focus\:to-red-300:focus{
  --tw-gradient-to: #fca5a5;
}

.focus\:to-red-400:focus{
  --tw-gradient-to: #f87171;
}

.focus\:to-red-500:focus{
  --tw-gradient-to: #ef4444;
}

.focus\:to-red-600:focus{
  --tw-gradient-to: #dc2626;
}

.focus\:to-red-700:focus{
  --tw-gradient-to: #b91c1c;
}

.focus\:to-red-800:focus{
  --tw-gradient-to: #991b1b;
}

.focus\:to-red-900:focus{
  --tw-gradient-to: #7f1d1d;
}

.focus\:to-red-light:focus{
  --tw-gradient-to: #EA7A7A;
}

.focus\:to-red-default:focus{
  --tw-gradient-to: #B90000;
}

.focus\:to-red-dark:focus{
  --tw-gradient-to: #580000;
}

.focus\:to-yellow-50:focus{
  --tw-gradient-to: #fffbeb;
}

.focus\:to-yellow-100:focus{
  --tw-gradient-to: #fef3c7;
}

.focus\:to-yellow-200:focus{
  --tw-gradient-to: #fde68a;
}

.focus\:to-yellow-300:focus{
  --tw-gradient-to: #fcd34d;
}

.focus\:to-yellow-400:focus{
  --tw-gradient-to: #fbbf24;
}

.focus\:to-yellow-500:focus{
  --tw-gradient-to: #f59e0b;
}

.focus\:to-yellow-600:focus{
  --tw-gradient-to: #d97706;
}

.focus\:to-yellow-700:focus{
  --tw-gradient-to: #b45309;
}

.focus\:to-yellow-800:focus{
  --tw-gradient-to: #92400e;
}

.focus\:to-yellow-900:focus{
  --tw-gradient-to: #78350f;
}

.focus\:to-green-50:focus{
  --tw-gradient-to: #ecfdf5;
}

.focus\:to-green-100:focus{
  --tw-gradient-to: #d1fae5;
}

.focus\:to-green-200:focus{
  --tw-gradient-to: #a7f3d0;
}

.focus\:to-green-300:focus{
  --tw-gradient-to: #6ee7b7;
}

.focus\:to-green-400:focus{
  --tw-gradient-to: #34d399;
}

.focus\:to-green-500:focus{
  --tw-gradient-to: #10b981;
}

.focus\:to-green-600:focus{
  --tw-gradient-to: #059669;
}

.focus\:to-green-700:focus{
  --tw-gradient-to: #047857;
}

.focus\:to-green-800:focus{
  --tw-gradient-to: #065f46;
}

.focus\:to-green-900:focus{
  --tw-gradient-to: #064e3b;
}

.focus\:to-green-light:focus{
  --tw-gradient-to: #B5D1B9;
}

.focus\:to-green-default:focus{
  --tw-gradient-to: #263B29;
}

.focus\:to-green-dark:focus{
  --tw-gradient-to: #1C251E;
}

.focus\:to-blue-50:focus{
  --tw-gradient-to: #eff6ff;
}

.focus\:to-blue-100:focus{
  --tw-gradient-to: #dbeafe;
}

.focus\:to-blue-200:focus{
  --tw-gradient-to: #bfdbfe;
}

.focus\:to-blue-300:focus{
  --tw-gradient-to: #93c5fd;
}

.focus\:to-blue-400:focus{
  --tw-gradient-to: #60a5fa;
}

.focus\:to-blue-500:focus{
  --tw-gradient-to: #3b82f6;
}

.focus\:to-blue-600:focus{
  --tw-gradient-to: #2563eb;
}

.focus\:to-blue-700:focus{
  --tw-gradient-to: #1d4ed8;
}

.focus\:to-blue-800:focus{
  --tw-gradient-to: #1e40af;
}

.focus\:to-blue-900:focus{
  --tw-gradient-to: #1e3a8a;
}

.focus\:to-indigo-50:focus{
  --tw-gradient-to: #eef2ff;
}

.focus\:to-indigo-100:focus{
  --tw-gradient-to: #e0e7ff;
}

.focus\:to-indigo-200:focus{
  --tw-gradient-to: #c7d2fe;
}

.focus\:to-indigo-300:focus{
  --tw-gradient-to: #a5b4fc;
}

.focus\:to-indigo-400:focus{
  --tw-gradient-to: #818cf8;
}

.focus\:to-indigo-500:focus{
  --tw-gradient-to: #6366f1;
}

.focus\:to-indigo-600:focus{
  --tw-gradient-to: #4f46e5;
}

.focus\:to-indigo-700:focus{
  --tw-gradient-to: #4338ca;
}

.focus\:to-indigo-800:focus{
  --tw-gradient-to: #3730a3;
}

.focus\:to-indigo-900:focus{
  --tw-gradient-to: #312e81;
}

.focus\:to-purple-50:focus{
  --tw-gradient-to: #f5f3ff;
}

.focus\:to-purple-100:focus{
  --tw-gradient-to: #ede9fe;
}

.focus\:to-purple-200:focus{
  --tw-gradient-to: #ddd6fe;
}

.focus\:to-purple-300:focus{
  --tw-gradient-to: #c4b5fd;
}

.focus\:to-purple-400:focus{
  --tw-gradient-to: #a78bfa;
}

.focus\:to-purple-500:focus{
  --tw-gradient-to: #8b5cf6;
}

.focus\:to-purple-600:focus{
  --tw-gradient-to: #7c3aed;
}

.focus\:to-purple-700:focus{
  --tw-gradient-to: #6d28d9;
}

.focus\:to-purple-800:focus{
  --tw-gradient-to: #5b21b6;
}

.focus\:to-purple-900:focus{
  --tw-gradient-to: #4c1d95;
}

.focus\:to-pink-50:focus{
  --tw-gradient-to: #fdf2f8;
}

.focus\:to-pink-100:focus{
  --tw-gradient-to: #fce7f3;
}

.focus\:to-pink-200:focus{
  --tw-gradient-to: #fbcfe8;
}

.focus\:to-pink-300:focus{
  --tw-gradient-to: #f9a8d4;
}

.focus\:to-pink-400:focus{
  --tw-gradient-to: #f472b6;
}

.focus\:to-pink-500:focus{
  --tw-gradient-to: #ec4899;
}

.focus\:to-pink-600:focus{
  --tw-gradient-to: #db2777;
}

.focus\:to-pink-700:focus{
  --tw-gradient-to: #be185d;
}

.focus\:to-pink-800:focus{
  --tw-gradient-to: #9d174d;
}

.focus\:to-pink-900:focus{
  --tw-gradient-to: #831843;
}

.focus\:to-brown-light:focus{
  --tw-gradient-to: #f0e9de;
}

.focus\:to-brown-semi:focus{
  --tw-gradient-to: #ded6ca;
}

.focus\:to-brown-default:focus{
  --tw-gradient-to: #7b6c5c;
}

.focus\:to-brown-dark:focus{
  --tw-gradient-to: #3d2706;
}

.focus\:to-success-light:focus{
  --tw-gradient-to: #91E09C;
}

.focus\:to-success-default:focus{
  --tw-gradient-to: #2D993C;
}

.focus\:to-success-dark:focus{
  --tw-gradient-to: #263B29;
}

.focus\:to-error-light:focus{
  --tw-gradient-to: #F98686;
}

.focus\:to-error-default:focus{
  --tw-gradient-to: #CB0707;
}

.focus\:to-error-dark:focus{
  --tw-gradient-to: #580000;
}

.focus\:to-navigation-dark:focus{
  --tw-gradient-to: #ffcd00;
}

.decoration-slice{
  -webkit-box-decoration-break: slice;
          box-decoration-break: slice;
}

.decoration-clone{
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

.bg-auto{
  background-size: auto;
}

.bg-cover{
  background-size: cover;
}

.bg-contain{
  background-size: contain;
}

.bg-fixed{
  background-attachment: fixed;
}

.bg-local{
  background-attachment: local;
}

.bg-scroll{
  background-attachment: scroll;
}

.bg-clip-border{
  background-clip: border-box;
}

.bg-clip-padding{
  background-clip: padding-box;
}

.bg-clip-content{
  background-clip: content-box;
}

.bg-clip-text{
  -webkit-background-clip: text;
          background-clip: text;
}

.bg-bottom{
  background-position: bottom;
}

.bg-center{
  background-position: center;
}

.bg-left{
  background-position: left;
}

.bg-left-bottom{
  background-position: left bottom;
}

.bg-left-top{
  background-position: left top;
}

.bg-right{
  background-position: right;
}

.bg-right-bottom{
  background-position: right bottom;
}

.bg-right-top{
  background-position: right top;
}

.bg-top{
  background-position: top;
}

.bg-repeat{
  background-repeat: repeat;
}

.bg-no-repeat{
  background-repeat: no-repeat;
}

.bg-repeat-x{
  background-repeat: repeat-x;
}

.bg-repeat-y{
  background-repeat: repeat-y;
}

.bg-repeat-round{
  background-repeat: round;
}

.bg-repeat-space{
  background-repeat: space;
}

.bg-origin-border{
  background-origin: border-box;
}

.bg-origin-padding{
  background-origin: padding-box;
}

.bg-origin-content{
  background-origin: content-box;
}

.fill-current{
  fill: currentColor;
}

.stroke-current{
  stroke: currentColor;
}

.stroke-0{
  stroke-width: 0;
}

.stroke-1{
  stroke-width: 1;
}

.stroke-2{
  stroke-width: 2;
}

.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}

.object-fill{
  -o-object-fit: fill;
     object-fit: fill;
}

.object-none{
  -o-object-fit: none;
     object-fit: none;
}

.object-scale-down{
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.object-bottom{
  -o-object-position: bottom;
     object-position: bottom;
}

.object-center{
  -o-object-position: center;
     object-position: center;
}

.object-left{
  -o-object-position: left;
     object-position: left;
}

.object-left-bottom{
  -o-object-position: left bottom;
     object-position: left bottom;
}

.object-left-top{
  -o-object-position: left top;
     object-position: left top;
}

.object-right{
  -o-object-position: right;
     object-position: right;
}

.object-right-bottom{
  -o-object-position: right bottom;
     object-position: right bottom;
}

.object-right-top{
  -o-object-position: right top;
     object-position: right top;
}

.object-top{
  -o-object-position: top;
     object-position: top;
}

.p-0{
  padding: 0px;
}

.p-1{
  padding: 0.25rem;
}

.p-2{
  padding: 0.5rem;
}

.p-3{
  padding: 0.75rem;
}

.p-4{
  padding: 1rem;
}

.p-5{
  padding: 1.25rem;
}

.p-6{
  padding: 1.5rem;
}

.p-7{
  padding: 1.75rem;
}

.p-8{
  padding: 2rem;
}

.p-9{
  padding: 2.25rem;
}

.p-10{
  padding: 2.5rem;
}

.p-11{
  padding: 2.75rem;
}

.p-12{
  padding: 3rem;
}

.p-14{
  padding: 3.5rem;
}

.p-16{
  padding: 4rem;
}

.p-20{
  padding: 5rem;
}

.p-24{
  padding: 6rem;
}

.p-28{
  padding: 7rem;
}

.p-32{
  padding: 8rem;
}

.p-36{
  padding: 9rem;
}

.p-40{
  padding: 10rem;
}

.p-44{
  padding: 11rem;
}

.p-48{
  padding: 12rem;
}

.p-52{
  padding: 13rem;
}

.p-56{
  padding: 14rem;
}

.p-60{
  padding: 15rem;
}

.p-64{
  padding: 16rem;
}

.p-72{
  padding: 18rem;
}

.p-80{
  padding: 20rem;
}

.p-96{
  padding: 24rem;
}

.p-px{
  padding: 1px;
}

.p-0\.5{
  padding: 0.125rem;
}

.p-1\.5{
  padding: 0.375rem;
}

.p-2\.5{
  padding: 0.625rem;
}

.p-3\.5{
  padding: 0.875rem;
}

.last\:p-0:last-child{
  padding: 0px;
}

.last\:p-1:last-child{
  padding: 0.25rem;
}

.last\:p-2:last-child{
  padding: 0.5rem;
}

.last\:p-3:last-child{
  padding: 0.75rem;
}

.last\:p-4:last-child{
  padding: 1rem;
}

.last\:p-5:last-child{
  padding: 1.25rem;
}

.last\:p-6:last-child{
  padding: 1.5rem;
}

.last\:p-7:last-child{
  padding: 1.75rem;
}

.last\:p-8:last-child{
  padding: 2rem;
}

.last\:p-9:last-child{
  padding: 2.25rem;
}

.last\:p-10:last-child{
  padding: 2.5rem;
}

.last\:p-11:last-child{
  padding: 2.75rem;
}

.last\:p-12:last-child{
  padding: 3rem;
}

.last\:p-14:last-child{
  padding: 3.5rem;
}

.last\:p-16:last-child{
  padding: 4rem;
}

.last\:p-20:last-child{
  padding: 5rem;
}

.last\:p-24:last-child{
  padding: 6rem;
}

.last\:p-28:last-child{
  padding: 7rem;
}

.last\:p-32:last-child{
  padding: 8rem;
}

.last\:p-36:last-child{
  padding: 9rem;
}

.last\:p-40:last-child{
  padding: 10rem;
}

.last\:p-44:last-child{
  padding: 11rem;
}

.last\:p-48:last-child{
  padding: 12rem;
}

.last\:p-52:last-child{
  padding: 13rem;
}

.last\:p-56:last-child{
  padding: 14rem;
}

.last\:p-60:last-child{
  padding: 15rem;
}

.last\:p-64:last-child{
  padding: 16rem;
}

.last\:p-72:last-child{
  padding: 18rem;
}

.last\:p-80:last-child{
  padding: 20rem;
}

.last\:p-96:last-child{
  padding: 24rem;
}

.last\:p-px:last-child{
  padding: 1px;
}

.last\:p-0\.5:last-child{
  padding: 0.125rem;
}

.last\:p-1\.5:last-child{
  padding: 0.375rem;
}

.last\:p-2\.5:last-child{
  padding: 0.625rem;
}

.last\:p-3\.5:last-child{
  padding: 0.875rem;
}

.hover\:p-0:hover{
  padding: 0px;
}

.hover\:p-1:hover{
  padding: 0.25rem;
}

.hover\:p-2:hover{
  padding: 0.5rem;
}

.hover\:p-3:hover{
  padding: 0.75rem;
}

.hover\:p-4:hover{
  padding: 1rem;
}

.hover\:p-5:hover{
  padding: 1.25rem;
}

.hover\:p-6:hover{
  padding: 1.5rem;
}

.hover\:p-7:hover{
  padding: 1.75rem;
}

.hover\:p-8:hover{
  padding: 2rem;
}

.hover\:p-9:hover{
  padding: 2.25rem;
}

.hover\:p-10:hover{
  padding: 2.5rem;
}

.hover\:p-11:hover{
  padding: 2.75rem;
}

.hover\:p-12:hover{
  padding: 3rem;
}

.hover\:p-14:hover{
  padding: 3.5rem;
}

.hover\:p-16:hover{
  padding: 4rem;
}

.hover\:p-20:hover{
  padding: 5rem;
}

.hover\:p-24:hover{
  padding: 6rem;
}

.hover\:p-28:hover{
  padding: 7rem;
}

.hover\:p-32:hover{
  padding: 8rem;
}

.hover\:p-36:hover{
  padding: 9rem;
}

.hover\:p-40:hover{
  padding: 10rem;
}

.hover\:p-44:hover{
  padding: 11rem;
}

.hover\:p-48:hover{
  padding: 12rem;
}

.hover\:p-52:hover{
  padding: 13rem;
}

.hover\:p-56:hover{
  padding: 14rem;
}

.hover\:p-60:hover{
  padding: 15rem;
}

.hover\:p-64:hover{
  padding: 16rem;
}

.hover\:p-72:hover{
  padding: 18rem;
}

.hover\:p-80:hover{
  padding: 20rem;
}

.hover\:p-96:hover{
  padding: 24rem;
}

.hover\:p-px:hover{
  padding: 1px;
}

.hover\:p-0\.5:hover{
  padding: 0.125rem;
}

.hover\:p-1\.5:hover{
  padding: 0.375rem;
}

.hover\:p-2\.5:hover{
  padding: 0.625rem;
}

.hover\:p-3\.5:hover{
  padding: 0.875rem;
}

.focus\:p-0:focus{
  padding: 0px;
}

.focus\:p-1:focus{
  padding: 0.25rem;
}

.focus\:p-2:focus{
  padding: 0.5rem;
}

.focus\:p-3:focus{
  padding: 0.75rem;
}

.focus\:p-4:focus{
  padding: 1rem;
}

.focus\:p-5:focus{
  padding: 1.25rem;
}

.focus\:p-6:focus{
  padding: 1.5rem;
}

.focus\:p-7:focus{
  padding: 1.75rem;
}

.focus\:p-8:focus{
  padding: 2rem;
}

.focus\:p-9:focus{
  padding: 2.25rem;
}

.focus\:p-10:focus{
  padding: 2.5rem;
}

.focus\:p-11:focus{
  padding: 2.75rem;
}

.focus\:p-12:focus{
  padding: 3rem;
}

.focus\:p-14:focus{
  padding: 3.5rem;
}

.focus\:p-16:focus{
  padding: 4rem;
}

.focus\:p-20:focus{
  padding: 5rem;
}

.focus\:p-24:focus{
  padding: 6rem;
}

.focus\:p-28:focus{
  padding: 7rem;
}

.focus\:p-32:focus{
  padding: 8rem;
}

.focus\:p-36:focus{
  padding: 9rem;
}

.focus\:p-40:focus{
  padding: 10rem;
}

.focus\:p-44:focus{
  padding: 11rem;
}

.focus\:p-48:focus{
  padding: 12rem;
}

.focus\:p-52:focus{
  padding: 13rem;
}

.focus\:p-56:focus{
  padding: 14rem;
}

.focus\:p-60:focus{
  padding: 15rem;
}

.focus\:p-64:focus{
  padding: 16rem;
}

.focus\:p-72:focus{
  padding: 18rem;
}

.focus\:p-80:focus{
  padding: 20rem;
}

.focus\:p-96:focus{
  padding: 24rem;
}

.focus\:p-px:focus{
  padding: 1px;
}

.focus\:p-0\.5:focus{
  padding: 0.125rem;
}

.focus\:p-1\.5:focus{
  padding: 0.375rem;
}

.focus\:p-2\.5:focus{
  padding: 0.625rem;
}

.focus\:p-3\.5:focus{
  padding: 0.875rem;
}

.first\:p-0:first-child{
  padding: 0px;
}

.first\:p-1:first-child{
  padding: 0.25rem;
}

.first\:p-2:first-child{
  padding: 0.5rem;
}

.first\:p-3:first-child{
  padding: 0.75rem;
}

.first\:p-4:first-child{
  padding: 1rem;
}

.first\:p-5:first-child{
  padding: 1.25rem;
}

.first\:p-6:first-child{
  padding: 1.5rem;
}

.first\:p-7:first-child{
  padding: 1.75rem;
}

.first\:p-8:first-child{
  padding: 2rem;
}

.first\:p-9:first-child{
  padding: 2.25rem;
}

.first\:p-10:first-child{
  padding: 2.5rem;
}

.first\:p-11:first-child{
  padding: 2.75rem;
}

.first\:p-12:first-child{
  padding: 3rem;
}

.first\:p-14:first-child{
  padding: 3.5rem;
}

.first\:p-16:first-child{
  padding: 4rem;
}

.first\:p-20:first-child{
  padding: 5rem;
}

.first\:p-24:first-child{
  padding: 6rem;
}

.first\:p-28:first-child{
  padding: 7rem;
}

.first\:p-32:first-child{
  padding: 8rem;
}

.first\:p-36:first-child{
  padding: 9rem;
}

.first\:p-40:first-child{
  padding: 10rem;
}

.first\:p-44:first-child{
  padding: 11rem;
}

.first\:p-48:first-child{
  padding: 12rem;
}

.first\:p-52:first-child{
  padding: 13rem;
}

.first\:p-56:first-child{
  padding: 14rem;
}

.first\:p-60:first-child{
  padding: 15rem;
}

.first\:p-64:first-child{
  padding: 16rem;
}

.first\:p-72:first-child{
  padding: 18rem;
}

.first\:p-80:first-child{
  padding: 20rem;
}

.first\:p-96:first-child{
  padding: 24rem;
}

.first\:p-px:first-child{
  padding: 1px;
}

.first\:p-0\.5:first-child{
  padding: 0.125rem;
}

.first\:p-1\.5:first-child{
  padding: 0.375rem;
}

.first\:p-2\.5:first-child{
  padding: 0.625rem;
}

.first\:p-3\.5:first-child{
  padding: 0.875rem;
}

.last\:p-0:last-child{
  padding: 0px;
}

.last\:p-1:last-child{
  padding: 0.25rem;
}

.last\:p-2:last-child{
  padding: 0.5rem;
}

.last\:p-3:last-child{
  padding: 0.75rem;
}

.last\:p-4:last-child{
  padding: 1rem;
}

.last\:p-5:last-child{
  padding: 1.25rem;
}

.last\:p-6:last-child{
  padding: 1.5rem;
}

.last\:p-7:last-child{
  padding: 1.75rem;
}

.last\:p-8:last-child{
  padding: 2rem;
}

.last\:p-9:last-child{
  padding: 2.25rem;
}

.last\:p-10:last-child{
  padding: 2.5rem;
}

.last\:p-11:last-child{
  padding: 2.75rem;
}

.last\:p-12:last-child{
  padding: 3rem;
}

.last\:p-14:last-child{
  padding: 3.5rem;
}

.last\:p-16:last-child{
  padding: 4rem;
}

.last\:p-20:last-child{
  padding: 5rem;
}

.last\:p-24:last-child{
  padding: 6rem;
}

.last\:p-28:last-child{
  padding: 7rem;
}

.last\:p-32:last-child{
  padding: 8rem;
}

.last\:p-36:last-child{
  padding: 9rem;
}

.last\:p-40:last-child{
  padding: 10rem;
}

.last\:p-44:last-child{
  padding: 11rem;
}

.last\:p-48:last-child{
  padding: 12rem;
}

.last\:p-52:last-child{
  padding: 13rem;
}

.last\:p-56:last-child{
  padding: 14rem;
}

.last\:p-60:last-child{
  padding: 15rem;
}

.last\:p-64:last-child{
  padding: 16rem;
}

.last\:p-72:last-child{
  padding: 18rem;
}

.last\:p-80:last-child{
  padding: 20rem;
}

.last\:p-96:last-child{
  padding: 24rem;
}

.last\:p-px:last-child{
  padding: 1px;
}

.last\:p-0\.5:last-child{
  padding: 0.125rem;
}

.last\:p-1\.5:last-child{
  padding: 0.375rem;
}

.last\:p-2\.5:last-child{
  padding: 0.625rem;
}

.last\:p-3\.5:last-child{
  padding: 0.875rem;
}

.px-0{
  padding-left: 0px;
  padding-right: 0px;
}

.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-7{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-9{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-11{
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-14{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.px-16{
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-20{
  padding-left: 5rem;
  padding-right: 5rem;
}

.px-24{
  padding-left: 6rem;
  padding-right: 6rem;
}

.px-28{
  padding-left: 7rem;
  padding-right: 7rem;
}

.px-32{
  padding-left: 8rem;
  padding-right: 8rem;
}

.px-36{
  padding-left: 9rem;
  padding-right: 9rem;
}

.px-40{
  padding-left: 10rem;
  padding-right: 10rem;
}

.px-44{
  padding-left: 11rem;
  padding-right: 11rem;
}

.px-48{
  padding-left: 12rem;
  padding-right: 12rem;
}

.px-52{
  padding-left: 13rem;
  padding-right: 13rem;
}

.px-56{
  padding-left: 14rem;
  padding-right: 14rem;
}

.px-60{
  padding-left: 15rem;
  padding-right: 15rem;
}

.px-64{
  padding-left: 16rem;
  padding-right: 16rem;
}

.px-72{
  padding-left: 18rem;
  padding-right: 18rem;
}

.px-80{
  padding-left: 20rem;
  padding-right: 20rem;
}

.px-96{
  padding-left: 24rem;
  padding-right: 24rem;
}

.px-px{
  padding-left: 1px;
  padding-right: 1px;
}

.px-0\.5{
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.px-3\.5{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.py-0{
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-7{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-9{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-11{
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-14{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-28{
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.py-32{
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.py-36{
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.py-40{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.py-44{
  padding-top: 11rem;
  padding-bottom: 11rem;
}

.py-48{
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.py-52{
  padding-top: 13rem;
  padding-bottom: 13rem;
}

.py-56{
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.py-60{
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.py-64{
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.py-72{
  padding-top: 18rem;
  padding-bottom: 18rem;
}

.py-80{
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.py-96{
  padding-top: 24rem;
  padding-bottom: 24rem;
}

.py-px{
  padding-top: 1px;
  padding-bottom: 1px;
}

.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3\.5{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.last\:px-0:last-child{
  padding-left: 0px;
  padding-right: 0px;
}

.last\:px-1:last-child{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.last\:px-2:last-child{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.last\:px-3:last-child{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.last\:px-4:last-child{
  padding-left: 1rem;
  padding-right: 1rem;
}

.last\:px-5:last-child{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.last\:px-6:last-child{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.last\:px-7:last-child{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.last\:px-8:last-child{
  padding-left: 2rem;
  padding-right: 2rem;
}

.last\:px-9:last-child{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.last\:px-10:last-child{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.last\:px-11:last-child{
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.last\:px-12:last-child{
  padding-left: 3rem;
  padding-right: 3rem;
}

.last\:px-14:last-child{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.last\:px-16:last-child{
  padding-left: 4rem;
  padding-right: 4rem;
}

.last\:px-20:last-child{
  padding-left: 5rem;
  padding-right: 5rem;
}

.last\:px-24:last-child{
  padding-left: 6rem;
  padding-right: 6rem;
}

.last\:px-28:last-child{
  padding-left: 7rem;
  padding-right: 7rem;
}

.last\:px-32:last-child{
  padding-left: 8rem;
  padding-right: 8rem;
}

.last\:px-36:last-child{
  padding-left: 9rem;
  padding-right: 9rem;
}

.last\:px-40:last-child{
  padding-left: 10rem;
  padding-right: 10rem;
}

.last\:px-44:last-child{
  padding-left: 11rem;
  padding-right: 11rem;
}

.last\:px-48:last-child{
  padding-left: 12rem;
  padding-right: 12rem;
}

.last\:px-52:last-child{
  padding-left: 13rem;
  padding-right: 13rem;
}

.last\:px-56:last-child{
  padding-left: 14rem;
  padding-right: 14rem;
}

.last\:px-60:last-child{
  padding-left: 15rem;
  padding-right: 15rem;
}

.last\:px-64:last-child{
  padding-left: 16rem;
  padding-right: 16rem;
}

.last\:px-72:last-child{
  padding-left: 18rem;
  padding-right: 18rem;
}

.last\:px-80:last-child{
  padding-left: 20rem;
  padding-right: 20rem;
}

.last\:px-96:last-child{
  padding-left: 24rem;
  padding-right: 24rem;
}

.last\:px-px:last-child{
  padding-left: 1px;
  padding-right: 1px;
}

.last\:px-0\.5:last-child{
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.last\:px-1\.5:last-child{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.last\:px-2\.5:last-child{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.last\:px-3\.5:last-child{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.last\:py-0:last-child{
  padding-top: 0px;
  padding-bottom: 0px;
}

.last\:py-1:last-child{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.last\:py-2:last-child{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.last\:py-3:last-child{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.last\:py-4:last-child{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.last\:py-5:last-child{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.last\:py-6:last-child{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.last\:py-7:last-child{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.last\:py-8:last-child{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.last\:py-9:last-child{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.last\:py-10:last-child{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.last\:py-11:last-child{
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.last\:py-12:last-child{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.last\:py-14:last-child{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.last\:py-16:last-child{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.last\:py-20:last-child{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.last\:py-24:last-child{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.last\:py-28:last-child{
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.last\:py-32:last-child{
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.last\:py-36:last-child{
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.last\:py-40:last-child{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.last\:py-44:last-child{
  padding-top: 11rem;
  padding-bottom: 11rem;
}

.last\:py-48:last-child{
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.last\:py-52:last-child{
  padding-top: 13rem;
  padding-bottom: 13rem;
}

.last\:py-56:last-child{
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.last\:py-60:last-child{
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.last\:py-64:last-child{
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.last\:py-72:last-child{
  padding-top: 18rem;
  padding-bottom: 18rem;
}

.last\:py-80:last-child{
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.last\:py-96:last-child{
  padding-top: 24rem;
  padding-bottom: 24rem;
}

.last\:py-px:last-child{
  padding-top: 1px;
  padding-bottom: 1px;
}

.last\:py-0\.5:last-child{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.last\:py-1\.5:last-child{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.last\:py-2\.5:last-child{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.last\:py-3\.5:last-child{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.hover\:px-0:hover{
  padding-left: 0px;
  padding-right: 0px;
}

.hover\:px-1:hover{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.hover\:px-2:hover{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.hover\:px-3:hover{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hover\:px-4:hover{
  padding-left: 1rem;
  padding-right: 1rem;
}

.hover\:px-5:hover{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hover\:px-6:hover{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hover\:px-7:hover{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.hover\:px-8:hover{
  padding-left: 2rem;
  padding-right: 2rem;
}

.hover\:px-9:hover{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.hover\:px-10:hover{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.hover\:px-11:hover{
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.hover\:px-12:hover{
  padding-left: 3rem;
  padding-right: 3rem;
}

.hover\:px-14:hover{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.hover\:px-16:hover{
  padding-left: 4rem;
  padding-right: 4rem;
}

.hover\:px-20:hover{
  padding-left: 5rem;
  padding-right: 5rem;
}

.hover\:px-24:hover{
  padding-left: 6rem;
  padding-right: 6rem;
}

.hover\:px-28:hover{
  padding-left: 7rem;
  padding-right: 7rem;
}

.hover\:px-32:hover{
  padding-left: 8rem;
  padding-right: 8rem;
}

.hover\:px-36:hover{
  padding-left: 9rem;
  padding-right: 9rem;
}

.hover\:px-40:hover{
  padding-left: 10rem;
  padding-right: 10rem;
}

.hover\:px-44:hover{
  padding-left: 11rem;
  padding-right: 11rem;
}

.hover\:px-48:hover{
  padding-left: 12rem;
  padding-right: 12rem;
}

.hover\:px-52:hover{
  padding-left: 13rem;
  padding-right: 13rem;
}

.hover\:px-56:hover{
  padding-left: 14rem;
  padding-right: 14rem;
}

.hover\:px-60:hover{
  padding-left: 15rem;
  padding-right: 15rem;
}

.hover\:px-64:hover{
  padding-left: 16rem;
  padding-right: 16rem;
}

.hover\:px-72:hover{
  padding-left: 18rem;
  padding-right: 18rem;
}

.hover\:px-80:hover{
  padding-left: 20rem;
  padding-right: 20rem;
}

.hover\:px-96:hover{
  padding-left: 24rem;
  padding-right: 24rem;
}

.hover\:px-px:hover{
  padding-left: 1px;
  padding-right: 1px;
}

.hover\:px-0\.5:hover{
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.hover\:px-1\.5:hover{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.hover\:px-2\.5:hover{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.hover\:px-3\.5:hover{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.hover\:py-0:hover{
  padding-top: 0px;
  padding-bottom: 0px;
}

.hover\:py-1:hover{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.hover\:py-2:hover{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.hover\:py-3:hover{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.hover\:py-4:hover{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.hover\:py-5:hover{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.hover\:py-6:hover{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.hover\:py-7:hover{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.hover\:py-8:hover{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hover\:py-9:hover{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.hover\:py-10:hover{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.hover\:py-11:hover{
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.hover\:py-12:hover{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hover\:py-14:hover{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hover\:py-16:hover{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hover\:py-20:hover{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hover\:py-24:hover{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hover\:py-28:hover{
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hover\:py-32:hover{
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.hover\:py-36:hover{
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.hover\:py-40:hover{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.hover\:py-44:hover{
  padding-top: 11rem;
  padding-bottom: 11rem;
}

.hover\:py-48:hover{
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.hover\:py-52:hover{
  padding-top: 13rem;
  padding-bottom: 13rem;
}

.hover\:py-56:hover{
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.hover\:py-60:hover{
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.hover\:py-64:hover{
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.hover\:py-72:hover{
  padding-top: 18rem;
  padding-bottom: 18rem;
}

.hover\:py-80:hover{
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.hover\:py-96:hover{
  padding-top: 24rem;
  padding-bottom: 24rem;
}

.hover\:py-px:hover{
  padding-top: 1px;
  padding-bottom: 1px;
}

.hover\:py-0\.5:hover{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.hover\:py-1\.5:hover{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.hover\:py-2\.5:hover{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.hover\:py-3\.5:hover{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.focus\:px-0:focus{
  padding-left: 0px;
  padding-right: 0px;
}

.focus\:px-1:focus{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.focus\:px-2:focus{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.focus\:px-3:focus{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.focus\:px-4:focus{
  padding-left: 1rem;
  padding-right: 1rem;
}

.focus\:px-5:focus{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.focus\:px-6:focus{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.focus\:px-7:focus{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.focus\:px-8:focus{
  padding-left: 2rem;
  padding-right: 2rem;
}

.focus\:px-9:focus{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.focus\:px-10:focus{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.focus\:px-11:focus{
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.focus\:px-12:focus{
  padding-left: 3rem;
  padding-right: 3rem;
}

.focus\:px-14:focus{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.focus\:px-16:focus{
  padding-left: 4rem;
  padding-right: 4rem;
}

.focus\:px-20:focus{
  padding-left: 5rem;
  padding-right: 5rem;
}

.focus\:px-24:focus{
  padding-left: 6rem;
  padding-right: 6rem;
}

.focus\:px-28:focus{
  padding-left: 7rem;
  padding-right: 7rem;
}

.focus\:px-32:focus{
  padding-left: 8rem;
  padding-right: 8rem;
}

.focus\:px-36:focus{
  padding-left: 9rem;
  padding-right: 9rem;
}

.focus\:px-40:focus{
  padding-left: 10rem;
  padding-right: 10rem;
}

.focus\:px-44:focus{
  padding-left: 11rem;
  padding-right: 11rem;
}

.focus\:px-48:focus{
  padding-left: 12rem;
  padding-right: 12rem;
}

.focus\:px-52:focus{
  padding-left: 13rem;
  padding-right: 13rem;
}

.focus\:px-56:focus{
  padding-left: 14rem;
  padding-right: 14rem;
}

.focus\:px-60:focus{
  padding-left: 15rem;
  padding-right: 15rem;
}

.focus\:px-64:focus{
  padding-left: 16rem;
  padding-right: 16rem;
}

.focus\:px-72:focus{
  padding-left: 18rem;
  padding-right: 18rem;
}

.focus\:px-80:focus{
  padding-left: 20rem;
  padding-right: 20rem;
}

.focus\:px-96:focus{
  padding-left: 24rem;
  padding-right: 24rem;
}

.focus\:px-px:focus{
  padding-left: 1px;
  padding-right: 1px;
}

.focus\:px-0\.5:focus{
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.focus\:px-1\.5:focus{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.focus\:px-2\.5:focus{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.focus\:px-3\.5:focus{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.focus\:py-0:focus{
  padding-top: 0px;
  padding-bottom: 0px;
}

.focus\:py-1:focus{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.focus\:py-2:focus{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.focus\:py-3:focus{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.focus\:py-4:focus{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.focus\:py-5:focus{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.focus\:py-6:focus{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.focus\:py-7:focus{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.focus\:py-8:focus{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.focus\:py-9:focus{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.focus\:py-10:focus{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.focus\:py-11:focus{
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.focus\:py-12:focus{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.focus\:py-14:focus{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.focus\:py-16:focus{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.focus\:py-20:focus{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.focus\:py-24:focus{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.focus\:py-28:focus{
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.focus\:py-32:focus{
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.focus\:py-36:focus{
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.focus\:py-40:focus{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.focus\:py-44:focus{
  padding-top: 11rem;
  padding-bottom: 11rem;
}

.focus\:py-48:focus{
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.focus\:py-52:focus{
  padding-top: 13rem;
  padding-bottom: 13rem;
}

.focus\:py-56:focus{
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.focus\:py-60:focus{
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.focus\:py-64:focus{
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.focus\:py-72:focus{
  padding-top: 18rem;
  padding-bottom: 18rem;
}

.focus\:py-80:focus{
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.focus\:py-96:focus{
  padding-top: 24rem;
  padding-bottom: 24rem;
}

.focus\:py-px:focus{
  padding-top: 1px;
  padding-bottom: 1px;
}

.focus\:py-0\.5:focus{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.focus\:py-1\.5:focus{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.focus\:py-2\.5:focus{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.focus\:py-3\.5:focus{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.first\:px-0:first-child{
  padding-left: 0px;
  padding-right: 0px;
}

.first\:px-1:first-child{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.first\:px-2:first-child{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.first\:px-3:first-child{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.first\:px-4:first-child{
  padding-left: 1rem;
  padding-right: 1rem;
}

.first\:px-5:first-child{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.first\:px-6:first-child{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.first\:px-7:first-child{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.first\:px-8:first-child{
  padding-left: 2rem;
  padding-right: 2rem;
}

.first\:px-9:first-child{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.first\:px-10:first-child{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.first\:px-11:first-child{
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.first\:px-12:first-child{
  padding-left: 3rem;
  padding-right: 3rem;
}

.first\:px-14:first-child{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.first\:px-16:first-child{
  padding-left: 4rem;
  padding-right: 4rem;
}

.first\:px-20:first-child{
  padding-left: 5rem;
  padding-right: 5rem;
}

.first\:px-24:first-child{
  padding-left: 6rem;
  padding-right: 6rem;
}

.first\:px-28:first-child{
  padding-left: 7rem;
  padding-right: 7rem;
}

.first\:px-32:first-child{
  padding-left: 8rem;
  padding-right: 8rem;
}

.first\:px-36:first-child{
  padding-left: 9rem;
  padding-right: 9rem;
}

.first\:px-40:first-child{
  padding-left: 10rem;
  padding-right: 10rem;
}

.first\:px-44:first-child{
  padding-left: 11rem;
  padding-right: 11rem;
}

.first\:px-48:first-child{
  padding-left: 12rem;
  padding-right: 12rem;
}

.first\:px-52:first-child{
  padding-left: 13rem;
  padding-right: 13rem;
}

.first\:px-56:first-child{
  padding-left: 14rem;
  padding-right: 14rem;
}

.first\:px-60:first-child{
  padding-left: 15rem;
  padding-right: 15rem;
}

.first\:px-64:first-child{
  padding-left: 16rem;
  padding-right: 16rem;
}

.first\:px-72:first-child{
  padding-left: 18rem;
  padding-right: 18rem;
}

.first\:px-80:first-child{
  padding-left: 20rem;
  padding-right: 20rem;
}

.first\:px-96:first-child{
  padding-left: 24rem;
  padding-right: 24rem;
}

.first\:px-px:first-child{
  padding-left: 1px;
  padding-right: 1px;
}

.first\:px-0\.5:first-child{
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.first\:px-1\.5:first-child{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.first\:px-2\.5:first-child{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.first\:px-3\.5:first-child{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.first\:py-0:first-child{
  padding-top: 0px;
  padding-bottom: 0px;
}

.first\:py-1:first-child{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.first\:py-2:first-child{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.first\:py-3:first-child{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.first\:py-4:first-child{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.first\:py-5:first-child{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.first\:py-6:first-child{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.first\:py-7:first-child{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.first\:py-8:first-child{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.first\:py-9:first-child{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.first\:py-10:first-child{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.first\:py-11:first-child{
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.first\:py-12:first-child{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.first\:py-14:first-child{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.first\:py-16:first-child{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.first\:py-20:first-child{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.first\:py-24:first-child{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.first\:py-28:first-child{
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.first\:py-32:first-child{
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.first\:py-36:first-child{
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.first\:py-40:first-child{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.first\:py-44:first-child{
  padding-top: 11rem;
  padding-bottom: 11rem;
}

.first\:py-48:first-child{
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.first\:py-52:first-child{
  padding-top: 13rem;
  padding-bottom: 13rem;
}

.first\:py-56:first-child{
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.first\:py-60:first-child{
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.first\:py-64:first-child{
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.first\:py-72:first-child{
  padding-top: 18rem;
  padding-bottom: 18rem;
}

.first\:py-80:first-child{
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.first\:py-96:first-child{
  padding-top: 24rem;
  padding-bottom: 24rem;
}

.first\:py-px:first-child{
  padding-top: 1px;
  padding-bottom: 1px;
}

.first\:py-0\.5:first-child{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.first\:py-1\.5:first-child{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.first\:py-2\.5:first-child{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.first\:py-3\.5:first-child{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.last\:px-0:last-child{
  padding-left: 0px;
  padding-right: 0px;
}

.last\:px-1:last-child{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.last\:px-2:last-child{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.last\:px-3:last-child{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.last\:px-4:last-child{
  padding-left: 1rem;
  padding-right: 1rem;
}

.last\:px-5:last-child{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.last\:px-6:last-child{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.last\:px-7:last-child{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.last\:px-8:last-child{
  padding-left: 2rem;
  padding-right: 2rem;
}

.last\:px-9:last-child{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.last\:px-10:last-child{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.last\:px-11:last-child{
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

.last\:px-12:last-child{
  padding-left: 3rem;
  padding-right: 3rem;
}

.last\:px-14:last-child{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.last\:px-16:last-child{
  padding-left: 4rem;
  padding-right: 4rem;
}

.last\:px-20:last-child{
  padding-left: 5rem;
  padding-right: 5rem;
}

.last\:px-24:last-child{
  padding-left: 6rem;
  padding-right: 6rem;
}

.last\:px-28:last-child{
  padding-left: 7rem;
  padding-right: 7rem;
}

.last\:px-32:last-child{
  padding-left: 8rem;
  padding-right: 8rem;
}

.last\:px-36:last-child{
  padding-left: 9rem;
  padding-right: 9rem;
}

.last\:px-40:last-child{
  padding-left: 10rem;
  padding-right: 10rem;
}

.last\:px-44:last-child{
  padding-left: 11rem;
  padding-right: 11rem;
}

.last\:px-48:last-child{
  padding-left: 12rem;
  padding-right: 12rem;
}

.last\:px-52:last-child{
  padding-left: 13rem;
  padding-right: 13rem;
}

.last\:px-56:last-child{
  padding-left: 14rem;
  padding-right: 14rem;
}

.last\:px-60:last-child{
  padding-left: 15rem;
  padding-right: 15rem;
}

.last\:px-64:last-child{
  padding-left: 16rem;
  padding-right: 16rem;
}

.last\:px-72:last-child{
  padding-left: 18rem;
  padding-right: 18rem;
}

.last\:px-80:last-child{
  padding-left: 20rem;
  padding-right: 20rem;
}

.last\:px-96:last-child{
  padding-left: 24rem;
  padding-right: 24rem;
}

.last\:px-px:last-child{
  padding-left: 1px;
  padding-right: 1px;
}

.last\:px-0\.5:last-child{
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.last\:px-1\.5:last-child{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.last\:px-2\.5:last-child{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.last\:px-3\.5:last-child{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.last\:py-0:last-child{
  padding-top: 0px;
  padding-bottom: 0px;
}

.last\:py-1:last-child{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.last\:py-2:last-child{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.last\:py-3:last-child{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.last\:py-4:last-child{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.last\:py-5:last-child{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.last\:py-6:last-child{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.last\:py-7:last-child{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.last\:py-8:last-child{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.last\:py-9:last-child{
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.last\:py-10:last-child{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.last\:py-11:last-child{
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.last\:py-12:last-child{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.last\:py-14:last-child{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.last\:py-16:last-child{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.last\:py-20:last-child{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.last\:py-24:last-child{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.last\:py-28:last-child{
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.last\:py-32:last-child{
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.last\:py-36:last-child{
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.last\:py-40:last-child{
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.last\:py-44:last-child{
  padding-top: 11rem;
  padding-bottom: 11rem;
}

.last\:py-48:last-child{
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.last\:py-52:last-child{
  padding-top: 13rem;
  padding-bottom: 13rem;
}

.last\:py-56:last-child{
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.last\:py-60:last-child{
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.last\:py-64:last-child{
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.last\:py-72:last-child{
  padding-top: 18rem;
  padding-bottom: 18rem;
}

.last\:py-80:last-child{
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.last\:py-96:last-child{
  padding-top: 24rem;
  padding-bottom: 24rem;
}

.last\:py-px:last-child{
  padding-top: 1px;
  padding-bottom: 1px;
}

.last\:py-0\.5:last-child{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.last\:py-1\.5:last-child{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.last\:py-2\.5:last-child{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.last\:py-3\.5:last-child{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.pt-0{
  padding-top: 0px;
}

.pt-1{
  padding-top: 0.25rem;
}

.pt-2{
  padding-top: 0.5rem;
}

.pt-3{
  padding-top: 0.75rem;
}

.pt-4{
  padding-top: 1rem;
}

.pt-5{
  padding-top: 1.25rem;
}

.pt-6{
  padding-top: 1.5rem;
}

.pt-7{
  padding-top: 1.75rem;
}

.pt-8{
  padding-top: 2rem;
}

.pt-9{
  padding-top: 2.25rem;
}

.pt-10{
  padding-top: 2.5rem;
}

.pt-11{
  padding-top: 2.75rem;
}

.pt-12{
  padding-top: 3rem;
}

.pt-14{
  padding-top: 3.5rem;
}

.pt-16{
  padding-top: 4rem;
}

.pt-20{
  padding-top: 5rem;
}

.pt-24{
  padding-top: 6rem;
}

.pt-28{
  padding-top: 7rem;
}

.pt-32{
  padding-top: 8rem;
}

.pt-36{
  padding-top: 9rem;
}

.pt-40{
  padding-top: 10rem;
}

.pt-44{
  padding-top: 11rem;
}

.pt-48{
  padding-top: 12rem;
}

.pt-52{
  padding-top: 13rem;
}

.pt-56{
  padding-top: 14rem;
}

.pt-60{
  padding-top: 15rem;
}

.pt-64{
  padding-top: 16rem;
}

.pt-72{
  padding-top: 18rem;
}

.pt-80{
  padding-top: 20rem;
}

.pt-96{
  padding-top: 24rem;
}

.pt-px{
  padding-top: 1px;
}

.pt-0\.5{
  padding-top: 0.125rem;
}

.pt-1\.5{
  padding-top: 0.375rem;
}

.pt-2\.5{
  padding-top: 0.625rem;
}

.pt-3\.5{
  padding-top: 0.875rem;
}

.pr-0{
  padding-right: 0px;
}

.pr-1{
  padding-right: 0.25rem;
}

.pr-2{
  padding-right: 0.5rem;
}

.pr-3{
  padding-right: 0.75rem;
}

.pr-4{
  padding-right: 1rem;
}

.pr-5{
  padding-right: 1.25rem;
}

.pr-6{
  padding-right: 1.5rem;
}

.pr-7{
  padding-right: 1.75rem;
}

.pr-8{
  padding-right: 2rem;
}

.pr-9{
  padding-right: 2.25rem;
}

.pr-10{
  padding-right: 2.5rem;
}

.pr-11{
  padding-right: 2.75rem;
}

.pr-12{
  padding-right: 3rem;
}

.pr-14{
  padding-right: 3.5rem;
}

.pr-16{
  padding-right: 4rem;
}

.pr-20{
  padding-right: 5rem;
}

.pr-24{
  padding-right: 6rem;
}

.pr-28{
  padding-right: 7rem;
}

.pr-32{
  padding-right: 8rem;
}

.pr-36{
  padding-right: 9rem;
}

.pr-40{
  padding-right: 10rem;
}

.pr-44{
  padding-right: 11rem;
}

.pr-48{
  padding-right: 12rem;
}

.pr-52{
  padding-right: 13rem;
}

.pr-56{
  padding-right: 14rem;
}

.pr-60{
  padding-right: 15rem;
}

.pr-64{
  padding-right: 16rem;
}

.pr-72{
  padding-right: 18rem;
}

.pr-80{
  padding-right: 20rem;
}

.pr-96{
  padding-right: 24rem;
}

.pr-px{
  padding-right: 1px;
}

.pr-0\.5{
  padding-right: 0.125rem;
}

.pr-1\.5{
  padding-right: 0.375rem;
}

.pr-2\.5{
  padding-right: 0.625rem;
}

.pr-3\.5{
  padding-right: 0.875rem;
}

.pb-0{
  padding-bottom: 0px;
}

.pb-1{
  padding-bottom: 0.25rem;
}

.pb-2{
  padding-bottom: 0.5rem;
}

.pb-3{
  padding-bottom: 0.75rem;
}

.pb-4{
  padding-bottom: 1rem;
}

.pb-5{
  padding-bottom: 1.25rem;
}

.pb-6{
  padding-bottom: 1.5rem;
}

.pb-7{
  padding-bottom: 1.75rem;
}

.pb-8{
  padding-bottom: 2rem;
}

.pb-9{
  padding-bottom: 2.25rem;
}

.pb-10{
  padding-bottom: 2.5rem;
}

.pb-11{
  padding-bottom: 2.75rem;
}

.pb-12{
  padding-bottom: 3rem;
}

.pb-14{
  padding-bottom: 3.5rem;
}

.pb-16{
  padding-bottom: 4rem;
}

.pb-20{
  padding-bottom: 5rem;
}

.pb-24{
  padding-bottom: 6rem;
}

.pb-28{
  padding-bottom: 7rem;
}

.pb-32{
  padding-bottom: 8rem;
}

.pb-36{
  padding-bottom: 9rem;
}

.pb-40{
  padding-bottom: 10rem;
}

.pb-44{
  padding-bottom: 11rem;
}

.pb-48{
  padding-bottom: 12rem;
}

.pb-52{
  padding-bottom: 13rem;
}

.pb-56{
  padding-bottom: 14rem;
}

.pb-60{
  padding-bottom: 15rem;
}

.pb-64{
  padding-bottom: 16rem;
}

.pb-72{
  padding-bottom: 18rem;
}

.pb-80{
  padding-bottom: 20rem;
}

.pb-96{
  padding-bottom: 24rem;
}

.pb-px{
  padding-bottom: 1px;
}

.pb-0\.5{
  padding-bottom: 0.125rem;
}

.pb-1\.5{
  padding-bottom: 0.375rem;
}

.pb-2\.5{
  padding-bottom: 0.625rem;
}

.pb-3\.5{
  padding-bottom: 0.875rem;
}

.pl-0{
  padding-left: 0px;
}

.pl-1{
  padding-left: 0.25rem;
}

.pl-2{
  padding-left: 0.5rem;
}

.pl-3{
  padding-left: 0.75rem;
}

.pl-4{
  padding-left: 1rem;
}

.pl-5{
  padding-left: 1.25rem;
}

.pl-6{
  padding-left: 1.5rem;
}

.pl-7{
  padding-left: 1.75rem;
}

.pl-8{
  padding-left: 2rem;
}

.pl-9{
  padding-left: 2.25rem;
}

.pl-10{
  padding-left: 2.5rem;
}

.pl-11{
  padding-left: 2.75rem;
}

.pl-12{
  padding-left: 3rem;
}

.pl-14{
  padding-left: 3.5rem;
}

.pl-16{
  padding-left: 4rem;
}

.pl-20{
  padding-left: 5rem;
}

.pl-24{
  padding-left: 6rem;
}

.pl-28{
  padding-left: 7rem;
}

.pl-32{
  padding-left: 8rem;
}

.pl-36{
  padding-left: 9rem;
}

.pl-40{
  padding-left: 10rem;
}

.pl-44{
  padding-left: 11rem;
}

.pl-48{
  padding-left: 12rem;
}

.pl-52{
  padding-left: 13rem;
}

.pl-56{
  padding-left: 14rem;
}

.pl-60{
  padding-left: 15rem;
}

.pl-64{
  padding-left: 16rem;
}

.pl-72{
  padding-left: 18rem;
}

.pl-80{
  padding-left: 20rem;
}

.pl-96{
  padding-left: 24rem;
}

.pl-px{
  padding-left: 1px;
}

.pl-0\.5{
  padding-left: 0.125rem;
}

.pl-1\.5{
  padding-left: 0.375rem;
}

.pl-2\.5{
  padding-left: 0.625rem;
}

.pl-3\.5{
  padding-left: 0.875rem;
}

.last\:pt-0:last-child{
  padding-top: 0px;
}

.last\:pt-1:last-child{
  padding-top: 0.25rem;
}

.last\:pt-2:last-child{
  padding-top: 0.5rem;
}

.last\:pt-3:last-child{
  padding-top: 0.75rem;
}

.last\:pt-4:last-child{
  padding-top: 1rem;
}

.last\:pt-5:last-child{
  padding-top: 1.25rem;
}

.last\:pt-6:last-child{
  padding-top: 1.5rem;
}

.last\:pt-7:last-child{
  padding-top: 1.75rem;
}

.last\:pt-8:last-child{
  padding-top: 2rem;
}

.last\:pt-9:last-child{
  padding-top: 2.25rem;
}

.last\:pt-10:last-child{
  padding-top: 2.5rem;
}

.last\:pt-11:last-child{
  padding-top: 2.75rem;
}

.last\:pt-12:last-child{
  padding-top: 3rem;
}

.last\:pt-14:last-child{
  padding-top: 3.5rem;
}

.last\:pt-16:last-child{
  padding-top: 4rem;
}

.last\:pt-20:last-child{
  padding-top: 5rem;
}

.last\:pt-24:last-child{
  padding-top: 6rem;
}

.last\:pt-28:last-child{
  padding-top: 7rem;
}

.last\:pt-32:last-child{
  padding-top: 8rem;
}

.last\:pt-36:last-child{
  padding-top: 9rem;
}

.last\:pt-40:last-child{
  padding-top: 10rem;
}

.last\:pt-44:last-child{
  padding-top: 11rem;
}

.last\:pt-48:last-child{
  padding-top: 12rem;
}

.last\:pt-52:last-child{
  padding-top: 13rem;
}

.last\:pt-56:last-child{
  padding-top: 14rem;
}

.last\:pt-60:last-child{
  padding-top: 15rem;
}

.last\:pt-64:last-child{
  padding-top: 16rem;
}

.last\:pt-72:last-child{
  padding-top: 18rem;
}

.last\:pt-80:last-child{
  padding-top: 20rem;
}

.last\:pt-96:last-child{
  padding-top: 24rem;
}

.last\:pt-px:last-child{
  padding-top: 1px;
}

.last\:pt-0\.5:last-child{
  padding-top: 0.125rem;
}

.last\:pt-1\.5:last-child{
  padding-top: 0.375rem;
}

.last\:pt-2\.5:last-child{
  padding-top: 0.625rem;
}

.last\:pt-3\.5:last-child{
  padding-top: 0.875rem;
}

.last\:pr-0:last-child{
  padding-right: 0px;
}

.last\:pr-1:last-child{
  padding-right: 0.25rem;
}

.last\:pr-2:last-child{
  padding-right: 0.5rem;
}

.last\:pr-3:last-child{
  padding-right: 0.75rem;
}

.last\:pr-4:last-child{
  padding-right: 1rem;
}

.last\:pr-5:last-child{
  padding-right: 1.25rem;
}

.last\:pr-6:last-child{
  padding-right: 1.5rem;
}

.last\:pr-7:last-child{
  padding-right: 1.75rem;
}

.last\:pr-8:last-child{
  padding-right: 2rem;
}

.last\:pr-9:last-child{
  padding-right: 2.25rem;
}

.last\:pr-10:last-child{
  padding-right: 2.5rem;
}

.last\:pr-11:last-child{
  padding-right: 2.75rem;
}

.last\:pr-12:last-child{
  padding-right: 3rem;
}

.last\:pr-14:last-child{
  padding-right: 3.5rem;
}

.last\:pr-16:last-child{
  padding-right: 4rem;
}

.last\:pr-20:last-child{
  padding-right: 5rem;
}

.last\:pr-24:last-child{
  padding-right: 6rem;
}

.last\:pr-28:last-child{
  padding-right: 7rem;
}

.last\:pr-32:last-child{
  padding-right: 8rem;
}

.last\:pr-36:last-child{
  padding-right: 9rem;
}

.last\:pr-40:last-child{
  padding-right: 10rem;
}

.last\:pr-44:last-child{
  padding-right: 11rem;
}

.last\:pr-48:last-child{
  padding-right: 12rem;
}

.last\:pr-52:last-child{
  padding-right: 13rem;
}

.last\:pr-56:last-child{
  padding-right: 14rem;
}

.last\:pr-60:last-child{
  padding-right: 15rem;
}

.last\:pr-64:last-child{
  padding-right: 16rem;
}

.last\:pr-72:last-child{
  padding-right: 18rem;
}

.last\:pr-80:last-child{
  padding-right: 20rem;
}

.last\:pr-96:last-child{
  padding-right: 24rem;
}

.last\:pr-px:last-child{
  padding-right: 1px;
}

.last\:pr-0\.5:last-child{
  padding-right: 0.125rem;
}

.last\:pr-1\.5:last-child{
  padding-right: 0.375rem;
}

.last\:pr-2\.5:last-child{
  padding-right: 0.625rem;
}

.last\:pr-3\.5:last-child{
  padding-right: 0.875rem;
}

.last\:pb-0:last-child{
  padding-bottom: 0px;
}

.last\:pb-1:last-child{
  padding-bottom: 0.25rem;
}

.last\:pb-2:last-child{
  padding-bottom: 0.5rem;
}

.last\:pb-3:last-child{
  padding-bottom: 0.75rem;
}

.last\:pb-4:last-child{
  padding-bottom: 1rem;
}

.last\:pb-5:last-child{
  padding-bottom: 1.25rem;
}

.last\:pb-6:last-child{
  padding-bottom: 1.5rem;
}

.last\:pb-7:last-child{
  padding-bottom: 1.75rem;
}

.last\:pb-8:last-child{
  padding-bottom: 2rem;
}

.last\:pb-9:last-child{
  padding-bottom: 2.25rem;
}

.last\:pb-10:last-child{
  padding-bottom: 2.5rem;
}

.last\:pb-11:last-child{
  padding-bottom: 2.75rem;
}

.last\:pb-12:last-child{
  padding-bottom: 3rem;
}

.last\:pb-14:last-child{
  padding-bottom: 3.5rem;
}

.last\:pb-16:last-child{
  padding-bottom: 4rem;
}

.last\:pb-20:last-child{
  padding-bottom: 5rem;
}

.last\:pb-24:last-child{
  padding-bottom: 6rem;
}

.last\:pb-28:last-child{
  padding-bottom: 7rem;
}

.last\:pb-32:last-child{
  padding-bottom: 8rem;
}

.last\:pb-36:last-child{
  padding-bottom: 9rem;
}

.last\:pb-40:last-child{
  padding-bottom: 10rem;
}

.last\:pb-44:last-child{
  padding-bottom: 11rem;
}

.last\:pb-48:last-child{
  padding-bottom: 12rem;
}

.last\:pb-52:last-child{
  padding-bottom: 13rem;
}

.last\:pb-56:last-child{
  padding-bottom: 14rem;
}

.last\:pb-60:last-child{
  padding-bottom: 15rem;
}

.last\:pb-64:last-child{
  padding-bottom: 16rem;
}

.last\:pb-72:last-child{
  padding-bottom: 18rem;
}

.last\:pb-80:last-child{
  padding-bottom: 20rem;
}

.last\:pb-96:last-child{
  padding-bottom: 24rem;
}

.last\:pb-px:last-child{
  padding-bottom: 1px;
}

.last\:pb-0\.5:last-child{
  padding-bottom: 0.125rem;
}

.last\:pb-1\.5:last-child{
  padding-bottom: 0.375rem;
}

.last\:pb-2\.5:last-child{
  padding-bottom: 0.625rem;
}

.last\:pb-3\.5:last-child{
  padding-bottom: 0.875rem;
}

.last\:pl-0:last-child{
  padding-left: 0px;
}

.last\:pl-1:last-child{
  padding-left: 0.25rem;
}

.last\:pl-2:last-child{
  padding-left: 0.5rem;
}

.last\:pl-3:last-child{
  padding-left: 0.75rem;
}

.last\:pl-4:last-child{
  padding-left: 1rem;
}

.last\:pl-5:last-child{
  padding-left: 1.25rem;
}

.last\:pl-6:last-child{
  padding-left: 1.5rem;
}

.last\:pl-7:last-child{
  padding-left: 1.75rem;
}

.last\:pl-8:last-child{
  padding-left: 2rem;
}

.last\:pl-9:last-child{
  padding-left: 2.25rem;
}

.last\:pl-10:last-child{
  padding-left: 2.5rem;
}

.last\:pl-11:last-child{
  padding-left: 2.75rem;
}

.last\:pl-12:last-child{
  padding-left: 3rem;
}

.last\:pl-14:last-child{
  padding-left: 3.5rem;
}

.last\:pl-16:last-child{
  padding-left: 4rem;
}

.last\:pl-20:last-child{
  padding-left: 5rem;
}

.last\:pl-24:last-child{
  padding-left: 6rem;
}

.last\:pl-28:last-child{
  padding-left: 7rem;
}

.last\:pl-32:last-child{
  padding-left: 8rem;
}

.last\:pl-36:last-child{
  padding-left: 9rem;
}

.last\:pl-40:last-child{
  padding-left: 10rem;
}

.last\:pl-44:last-child{
  padding-left: 11rem;
}

.last\:pl-48:last-child{
  padding-left: 12rem;
}

.last\:pl-52:last-child{
  padding-left: 13rem;
}

.last\:pl-56:last-child{
  padding-left: 14rem;
}

.last\:pl-60:last-child{
  padding-left: 15rem;
}

.last\:pl-64:last-child{
  padding-left: 16rem;
}

.last\:pl-72:last-child{
  padding-left: 18rem;
}

.last\:pl-80:last-child{
  padding-left: 20rem;
}

.last\:pl-96:last-child{
  padding-left: 24rem;
}

.last\:pl-px:last-child{
  padding-left: 1px;
}

.last\:pl-0\.5:last-child{
  padding-left: 0.125rem;
}

.last\:pl-1\.5:last-child{
  padding-left: 0.375rem;
}

.last\:pl-2\.5:last-child{
  padding-left: 0.625rem;
}

.last\:pl-3\.5:last-child{
  padding-left: 0.875rem;
}

.hover\:pt-0:hover{
  padding-top: 0px;
}

.hover\:pt-1:hover{
  padding-top: 0.25rem;
}

.hover\:pt-2:hover{
  padding-top: 0.5rem;
}

.hover\:pt-3:hover{
  padding-top: 0.75rem;
}

.hover\:pt-4:hover{
  padding-top: 1rem;
}

.hover\:pt-5:hover{
  padding-top: 1.25rem;
}

.hover\:pt-6:hover{
  padding-top: 1.5rem;
}

.hover\:pt-7:hover{
  padding-top: 1.75rem;
}

.hover\:pt-8:hover{
  padding-top: 2rem;
}

.hover\:pt-9:hover{
  padding-top: 2.25rem;
}

.hover\:pt-10:hover{
  padding-top: 2.5rem;
}

.hover\:pt-11:hover{
  padding-top: 2.75rem;
}

.hover\:pt-12:hover{
  padding-top: 3rem;
}

.hover\:pt-14:hover{
  padding-top: 3.5rem;
}

.hover\:pt-16:hover{
  padding-top: 4rem;
}

.hover\:pt-20:hover{
  padding-top: 5rem;
}

.hover\:pt-24:hover{
  padding-top: 6rem;
}

.hover\:pt-28:hover{
  padding-top: 7rem;
}

.hover\:pt-32:hover{
  padding-top: 8rem;
}

.hover\:pt-36:hover{
  padding-top: 9rem;
}

.hover\:pt-40:hover{
  padding-top: 10rem;
}

.hover\:pt-44:hover{
  padding-top: 11rem;
}

.hover\:pt-48:hover{
  padding-top: 12rem;
}

.hover\:pt-52:hover{
  padding-top: 13rem;
}

.hover\:pt-56:hover{
  padding-top: 14rem;
}

.hover\:pt-60:hover{
  padding-top: 15rem;
}

.hover\:pt-64:hover{
  padding-top: 16rem;
}

.hover\:pt-72:hover{
  padding-top: 18rem;
}

.hover\:pt-80:hover{
  padding-top: 20rem;
}

.hover\:pt-96:hover{
  padding-top: 24rem;
}

.hover\:pt-px:hover{
  padding-top: 1px;
}

.hover\:pt-0\.5:hover{
  padding-top: 0.125rem;
}

.hover\:pt-1\.5:hover{
  padding-top: 0.375rem;
}

.hover\:pt-2\.5:hover{
  padding-top: 0.625rem;
}

.hover\:pt-3\.5:hover{
  padding-top: 0.875rem;
}

.hover\:pr-0:hover{
  padding-right: 0px;
}

.hover\:pr-1:hover{
  padding-right: 0.25rem;
}

.hover\:pr-2:hover{
  padding-right: 0.5rem;
}

.hover\:pr-3:hover{
  padding-right: 0.75rem;
}

.hover\:pr-4:hover{
  padding-right: 1rem;
}

.hover\:pr-5:hover{
  padding-right: 1.25rem;
}

.hover\:pr-6:hover{
  padding-right: 1.5rem;
}

.hover\:pr-7:hover{
  padding-right: 1.75rem;
}

.hover\:pr-8:hover{
  padding-right: 2rem;
}

.hover\:pr-9:hover{
  padding-right: 2.25rem;
}

.hover\:pr-10:hover{
  padding-right: 2.5rem;
}

.hover\:pr-11:hover{
  padding-right: 2.75rem;
}

.hover\:pr-12:hover{
  padding-right: 3rem;
}

.hover\:pr-14:hover{
  padding-right: 3.5rem;
}

.hover\:pr-16:hover{
  padding-right: 4rem;
}

.hover\:pr-20:hover{
  padding-right: 5rem;
}

.hover\:pr-24:hover{
  padding-right: 6rem;
}

.hover\:pr-28:hover{
  padding-right: 7rem;
}

.hover\:pr-32:hover{
  padding-right: 8rem;
}

.hover\:pr-36:hover{
  padding-right: 9rem;
}

.hover\:pr-40:hover{
  padding-right: 10rem;
}

.hover\:pr-44:hover{
  padding-right: 11rem;
}

.hover\:pr-48:hover{
  padding-right: 12rem;
}

.hover\:pr-52:hover{
  padding-right: 13rem;
}

.hover\:pr-56:hover{
  padding-right: 14rem;
}

.hover\:pr-60:hover{
  padding-right: 15rem;
}

.hover\:pr-64:hover{
  padding-right: 16rem;
}

.hover\:pr-72:hover{
  padding-right: 18rem;
}

.hover\:pr-80:hover{
  padding-right: 20rem;
}

.hover\:pr-96:hover{
  padding-right: 24rem;
}

.hover\:pr-px:hover{
  padding-right: 1px;
}

.hover\:pr-0\.5:hover{
  padding-right: 0.125rem;
}

.hover\:pr-1\.5:hover{
  padding-right: 0.375rem;
}

.hover\:pr-2\.5:hover{
  padding-right: 0.625rem;
}

.hover\:pr-3\.5:hover{
  padding-right: 0.875rem;
}

.hover\:pb-0:hover{
  padding-bottom: 0px;
}

.hover\:pb-1:hover{
  padding-bottom: 0.25rem;
}

.hover\:pb-2:hover{
  padding-bottom: 0.5rem;
}

.hover\:pb-3:hover{
  padding-bottom: 0.75rem;
}

.hover\:pb-4:hover{
  padding-bottom: 1rem;
}

.hover\:pb-5:hover{
  padding-bottom: 1.25rem;
}

.hover\:pb-6:hover{
  padding-bottom: 1.5rem;
}

.hover\:pb-7:hover{
  padding-bottom: 1.75rem;
}

.hover\:pb-8:hover{
  padding-bottom: 2rem;
}

.hover\:pb-9:hover{
  padding-bottom: 2.25rem;
}

.hover\:pb-10:hover{
  padding-bottom: 2.5rem;
}

.hover\:pb-11:hover{
  padding-bottom: 2.75rem;
}

.hover\:pb-12:hover{
  padding-bottom: 3rem;
}

.hover\:pb-14:hover{
  padding-bottom: 3.5rem;
}

.hover\:pb-16:hover{
  padding-bottom: 4rem;
}

.hover\:pb-20:hover{
  padding-bottom: 5rem;
}

.hover\:pb-24:hover{
  padding-bottom: 6rem;
}

.hover\:pb-28:hover{
  padding-bottom: 7rem;
}

.hover\:pb-32:hover{
  padding-bottom: 8rem;
}

.hover\:pb-36:hover{
  padding-bottom: 9rem;
}

.hover\:pb-40:hover{
  padding-bottom: 10rem;
}

.hover\:pb-44:hover{
  padding-bottom: 11rem;
}

.hover\:pb-48:hover{
  padding-bottom: 12rem;
}

.hover\:pb-52:hover{
  padding-bottom: 13rem;
}

.hover\:pb-56:hover{
  padding-bottom: 14rem;
}

.hover\:pb-60:hover{
  padding-bottom: 15rem;
}

.hover\:pb-64:hover{
  padding-bottom: 16rem;
}

.hover\:pb-72:hover{
  padding-bottom: 18rem;
}

.hover\:pb-80:hover{
  padding-bottom: 20rem;
}

.hover\:pb-96:hover{
  padding-bottom: 24rem;
}

.hover\:pb-px:hover{
  padding-bottom: 1px;
}

.hover\:pb-0\.5:hover{
  padding-bottom: 0.125rem;
}

.hover\:pb-1\.5:hover{
  padding-bottom: 0.375rem;
}

.hover\:pb-2\.5:hover{
  padding-bottom: 0.625rem;
}

.hover\:pb-3\.5:hover{
  padding-bottom: 0.875rem;
}

.hover\:pl-0:hover{
  padding-left: 0px;
}

.hover\:pl-1:hover{
  padding-left: 0.25rem;
}

.hover\:pl-2:hover{
  padding-left: 0.5rem;
}

.hover\:pl-3:hover{
  padding-left: 0.75rem;
}

.hover\:pl-4:hover{
  padding-left: 1rem;
}

.hover\:pl-5:hover{
  padding-left: 1.25rem;
}

.hover\:pl-6:hover{
  padding-left: 1.5rem;
}

.hover\:pl-7:hover{
  padding-left: 1.75rem;
}

.hover\:pl-8:hover{
  padding-left: 2rem;
}

.hover\:pl-9:hover{
  padding-left: 2.25rem;
}

.hover\:pl-10:hover{
  padding-left: 2.5rem;
}

.hover\:pl-11:hover{
  padding-left: 2.75rem;
}

.hover\:pl-12:hover{
  padding-left: 3rem;
}

.hover\:pl-14:hover{
  padding-left: 3.5rem;
}

.hover\:pl-16:hover{
  padding-left: 4rem;
}

.hover\:pl-20:hover{
  padding-left: 5rem;
}

.hover\:pl-24:hover{
  padding-left: 6rem;
}

.hover\:pl-28:hover{
  padding-left: 7rem;
}

.hover\:pl-32:hover{
  padding-left: 8rem;
}

.hover\:pl-36:hover{
  padding-left: 9rem;
}

.hover\:pl-40:hover{
  padding-left: 10rem;
}

.hover\:pl-44:hover{
  padding-left: 11rem;
}

.hover\:pl-48:hover{
  padding-left: 12rem;
}

.hover\:pl-52:hover{
  padding-left: 13rem;
}

.hover\:pl-56:hover{
  padding-left: 14rem;
}

.hover\:pl-60:hover{
  padding-left: 15rem;
}

.hover\:pl-64:hover{
  padding-left: 16rem;
}

.hover\:pl-72:hover{
  padding-left: 18rem;
}

.hover\:pl-80:hover{
  padding-left: 20rem;
}

.hover\:pl-96:hover{
  padding-left: 24rem;
}

.hover\:pl-px:hover{
  padding-left: 1px;
}

.hover\:pl-0\.5:hover{
  padding-left: 0.125rem;
}

.hover\:pl-1\.5:hover{
  padding-left: 0.375rem;
}

.hover\:pl-2\.5:hover{
  padding-left: 0.625rem;
}

.hover\:pl-3\.5:hover{
  padding-left: 0.875rem;
}

.focus\:pt-0:focus{
  padding-top: 0px;
}

.focus\:pt-1:focus{
  padding-top: 0.25rem;
}

.focus\:pt-2:focus{
  padding-top: 0.5rem;
}

.focus\:pt-3:focus{
  padding-top: 0.75rem;
}

.focus\:pt-4:focus{
  padding-top: 1rem;
}

.focus\:pt-5:focus{
  padding-top: 1.25rem;
}

.focus\:pt-6:focus{
  padding-top: 1.5rem;
}

.focus\:pt-7:focus{
  padding-top: 1.75rem;
}

.focus\:pt-8:focus{
  padding-top: 2rem;
}

.focus\:pt-9:focus{
  padding-top: 2.25rem;
}

.focus\:pt-10:focus{
  padding-top: 2.5rem;
}

.focus\:pt-11:focus{
  padding-top: 2.75rem;
}

.focus\:pt-12:focus{
  padding-top: 3rem;
}

.focus\:pt-14:focus{
  padding-top: 3.5rem;
}

.focus\:pt-16:focus{
  padding-top: 4rem;
}

.focus\:pt-20:focus{
  padding-top: 5rem;
}

.focus\:pt-24:focus{
  padding-top: 6rem;
}

.focus\:pt-28:focus{
  padding-top: 7rem;
}

.focus\:pt-32:focus{
  padding-top: 8rem;
}

.focus\:pt-36:focus{
  padding-top: 9rem;
}

.focus\:pt-40:focus{
  padding-top: 10rem;
}

.focus\:pt-44:focus{
  padding-top: 11rem;
}

.focus\:pt-48:focus{
  padding-top: 12rem;
}

.focus\:pt-52:focus{
  padding-top: 13rem;
}

.focus\:pt-56:focus{
  padding-top: 14rem;
}

.focus\:pt-60:focus{
  padding-top: 15rem;
}

.focus\:pt-64:focus{
  padding-top: 16rem;
}

.focus\:pt-72:focus{
  padding-top: 18rem;
}

.focus\:pt-80:focus{
  padding-top: 20rem;
}

.focus\:pt-96:focus{
  padding-top: 24rem;
}

.focus\:pt-px:focus{
  padding-top: 1px;
}

.focus\:pt-0\.5:focus{
  padding-top: 0.125rem;
}

.focus\:pt-1\.5:focus{
  padding-top: 0.375rem;
}

.focus\:pt-2\.5:focus{
  padding-top: 0.625rem;
}

.focus\:pt-3\.5:focus{
  padding-top: 0.875rem;
}

.focus\:pr-0:focus{
  padding-right: 0px;
}

.focus\:pr-1:focus{
  padding-right: 0.25rem;
}

.focus\:pr-2:focus{
  padding-right: 0.5rem;
}

.focus\:pr-3:focus{
  padding-right: 0.75rem;
}

.focus\:pr-4:focus{
  padding-right: 1rem;
}

.focus\:pr-5:focus{
  padding-right: 1.25rem;
}

.focus\:pr-6:focus{
  padding-right: 1.5rem;
}

.focus\:pr-7:focus{
  padding-right: 1.75rem;
}

.focus\:pr-8:focus{
  padding-right: 2rem;
}

.focus\:pr-9:focus{
  padding-right: 2.25rem;
}

.focus\:pr-10:focus{
  padding-right: 2.5rem;
}

.focus\:pr-11:focus{
  padding-right: 2.75rem;
}

.focus\:pr-12:focus{
  padding-right: 3rem;
}

.focus\:pr-14:focus{
  padding-right: 3.5rem;
}

.focus\:pr-16:focus{
  padding-right: 4rem;
}

.focus\:pr-20:focus{
  padding-right: 5rem;
}

.focus\:pr-24:focus{
  padding-right: 6rem;
}

.focus\:pr-28:focus{
  padding-right: 7rem;
}

.focus\:pr-32:focus{
  padding-right: 8rem;
}

.focus\:pr-36:focus{
  padding-right: 9rem;
}

.focus\:pr-40:focus{
  padding-right: 10rem;
}

.focus\:pr-44:focus{
  padding-right: 11rem;
}

.focus\:pr-48:focus{
  padding-right: 12rem;
}

.focus\:pr-52:focus{
  padding-right: 13rem;
}

.focus\:pr-56:focus{
  padding-right: 14rem;
}

.focus\:pr-60:focus{
  padding-right: 15rem;
}

.focus\:pr-64:focus{
  padding-right: 16rem;
}

.focus\:pr-72:focus{
  padding-right: 18rem;
}

.focus\:pr-80:focus{
  padding-right: 20rem;
}

.focus\:pr-96:focus{
  padding-right: 24rem;
}

.focus\:pr-px:focus{
  padding-right: 1px;
}

.focus\:pr-0\.5:focus{
  padding-right: 0.125rem;
}

.focus\:pr-1\.5:focus{
  padding-right: 0.375rem;
}

.focus\:pr-2\.5:focus{
  padding-right: 0.625rem;
}

.focus\:pr-3\.5:focus{
  padding-right: 0.875rem;
}

.focus\:pb-0:focus{
  padding-bottom: 0px;
}

.focus\:pb-1:focus{
  padding-bottom: 0.25rem;
}

.focus\:pb-2:focus{
  padding-bottom: 0.5rem;
}

.focus\:pb-3:focus{
  padding-bottom: 0.75rem;
}

.focus\:pb-4:focus{
  padding-bottom: 1rem;
}

.focus\:pb-5:focus{
  padding-bottom: 1.25rem;
}

.focus\:pb-6:focus{
  padding-bottom: 1.5rem;
}

.focus\:pb-7:focus{
  padding-bottom: 1.75rem;
}

.focus\:pb-8:focus{
  padding-bottom: 2rem;
}

.focus\:pb-9:focus{
  padding-bottom: 2.25rem;
}

.focus\:pb-10:focus{
  padding-bottom: 2.5rem;
}

.focus\:pb-11:focus{
  padding-bottom: 2.75rem;
}

.focus\:pb-12:focus{
  padding-bottom: 3rem;
}

.focus\:pb-14:focus{
  padding-bottom: 3.5rem;
}

.focus\:pb-16:focus{
  padding-bottom: 4rem;
}

.focus\:pb-20:focus{
  padding-bottom: 5rem;
}

.focus\:pb-24:focus{
  padding-bottom: 6rem;
}

.focus\:pb-28:focus{
  padding-bottom: 7rem;
}

.focus\:pb-32:focus{
  padding-bottom: 8rem;
}

.focus\:pb-36:focus{
  padding-bottom: 9rem;
}

.focus\:pb-40:focus{
  padding-bottom: 10rem;
}

.focus\:pb-44:focus{
  padding-bottom: 11rem;
}

.focus\:pb-48:focus{
  padding-bottom: 12rem;
}

.focus\:pb-52:focus{
  padding-bottom: 13rem;
}

.focus\:pb-56:focus{
  padding-bottom: 14rem;
}

.focus\:pb-60:focus{
  padding-bottom: 15rem;
}

.focus\:pb-64:focus{
  padding-bottom: 16rem;
}

.focus\:pb-72:focus{
  padding-bottom: 18rem;
}

.focus\:pb-80:focus{
  padding-bottom: 20rem;
}

.focus\:pb-96:focus{
  padding-bottom: 24rem;
}

.focus\:pb-px:focus{
  padding-bottom: 1px;
}

.focus\:pb-0\.5:focus{
  padding-bottom: 0.125rem;
}

.focus\:pb-1\.5:focus{
  padding-bottom: 0.375rem;
}

.focus\:pb-2\.5:focus{
  padding-bottom: 0.625rem;
}

.focus\:pb-3\.5:focus{
  padding-bottom: 0.875rem;
}

.focus\:pl-0:focus{
  padding-left: 0px;
}

.focus\:pl-1:focus{
  padding-left: 0.25rem;
}

.focus\:pl-2:focus{
  padding-left: 0.5rem;
}

.focus\:pl-3:focus{
  padding-left: 0.75rem;
}

.focus\:pl-4:focus{
  padding-left: 1rem;
}

.focus\:pl-5:focus{
  padding-left: 1.25rem;
}

.focus\:pl-6:focus{
  padding-left: 1.5rem;
}

.focus\:pl-7:focus{
  padding-left: 1.75rem;
}

.focus\:pl-8:focus{
  padding-left: 2rem;
}

.focus\:pl-9:focus{
  padding-left: 2.25rem;
}

.focus\:pl-10:focus{
  padding-left: 2.5rem;
}

.focus\:pl-11:focus{
  padding-left: 2.75rem;
}

.focus\:pl-12:focus{
  padding-left: 3rem;
}

.focus\:pl-14:focus{
  padding-left: 3.5rem;
}

.focus\:pl-16:focus{
  padding-left: 4rem;
}

.focus\:pl-20:focus{
  padding-left: 5rem;
}

.focus\:pl-24:focus{
  padding-left: 6rem;
}

.focus\:pl-28:focus{
  padding-left: 7rem;
}

.focus\:pl-32:focus{
  padding-left: 8rem;
}

.focus\:pl-36:focus{
  padding-left: 9rem;
}

.focus\:pl-40:focus{
  padding-left: 10rem;
}

.focus\:pl-44:focus{
  padding-left: 11rem;
}

.focus\:pl-48:focus{
  padding-left: 12rem;
}

.focus\:pl-52:focus{
  padding-left: 13rem;
}

.focus\:pl-56:focus{
  padding-left: 14rem;
}

.focus\:pl-60:focus{
  padding-left: 15rem;
}

.focus\:pl-64:focus{
  padding-left: 16rem;
}

.focus\:pl-72:focus{
  padding-left: 18rem;
}

.focus\:pl-80:focus{
  padding-left: 20rem;
}

.focus\:pl-96:focus{
  padding-left: 24rem;
}

.focus\:pl-px:focus{
  padding-left: 1px;
}

.focus\:pl-0\.5:focus{
  padding-left: 0.125rem;
}

.focus\:pl-1\.5:focus{
  padding-left: 0.375rem;
}

.focus\:pl-2\.5:focus{
  padding-left: 0.625rem;
}

.focus\:pl-3\.5:focus{
  padding-left: 0.875rem;
}

.first\:pt-0:first-child{
  padding-top: 0px;
}

.first\:pt-1:first-child{
  padding-top: 0.25rem;
}

.first\:pt-2:first-child{
  padding-top: 0.5rem;
}

.first\:pt-3:first-child{
  padding-top: 0.75rem;
}

.first\:pt-4:first-child{
  padding-top: 1rem;
}

.first\:pt-5:first-child{
  padding-top: 1.25rem;
}

.first\:pt-6:first-child{
  padding-top: 1.5rem;
}

.first\:pt-7:first-child{
  padding-top: 1.75rem;
}

.first\:pt-8:first-child{
  padding-top: 2rem;
}

.first\:pt-9:first-child{
  padding-top: 2.25rem;
}

.first\:pt-10:first-child{
  padding-top: 2.5rem;
}

.first\:pt-11:first-child{
  padding-top: 2.75rem;
}

.first\:pt-12:first-child{
  padding-top: 3rem;
}

.first\:pt-14:first-child{
  padding-top: 3.5rem;
}

.first\:pt-16:first-child{
  padding-top: 4rem;
}

.first\:pt-20:first-child{
  padding-top: 5rem;
}

.first\:pt-24:first-child{
  padding-top: 6rem;
}

.first\:pt-28:first-child{
  padding-top: 7rem;
}

.first\:pt-32:first-child{
  padding-top: 8rem;
}

.first\:pt-36:first-child{
  padding-top: 9rem;
}

.first\:pt-40:first-child{
  padding-top: 10rem;
}

.first\:pt-44:first-child{
  padding-top: 11rem;
}

.first\:pt-48:first-child{
  padding-top: 12rem;
}

.first\:pt-52:first-child{
  padding-top: 13rem;
}

.first\:pt-56:first-child{
  padding-top: 14rem;
}

.first\:pt-60:first-child{
  padding-top: 15rem;
}

.first\:pt-64:first-child{
  padding-top: 16rem;
}

.first\:pt-72:first-child{
  padding-top: 18rem;
}

.first\:pt-80:first-child{
  padding-top: 20rem;
}

.first\:pt-96:first-child{
  padding-top: 24rem;
}

.first\:pt-px:first-child{
  padding-top: 1px;
}

.first\:pt-0\.5:first-child{
  padding-top: 0.125rem;
}

.first\:pt-1\.5:first-child{
  padding-top: 0.375rem;
}

.first\:pt-2\.5:first-child{
  padding-top: 0.625rem;
}

.first\:pt-3\.5:first-child{
  padding-top: 0.875rem;
}

.first\:pr-0:first-child{
  padding-right: 0px;
}

.first\:pr-1:first-child{
  padding-right: 0.25rem;
}

.first\:pr-2:first-child{
  padding-right: 0.5rem;
}

.first\:pr-3:first-child{
  padding-right: 0.75rem;
}

.first\:pr-4:first-child{
  padding-right: 1rem;
}

.first\:pr-5:first-child{
  padding-right: 1.25rem;
}

.first\:pr-6:first-child{
  padding-right: 1.5rem;
}

.first\:pr-7:first-child{
  padding-right: 1.75rem;
}

.first\:pr-8:first-child{
  padding-right: 2rem;
}

.first\:pr-9:first-child{
  padding-right: 2.25rem;
}

.first\:pr-10:first-child{
  padding-right: 2.5rem;
}

.first\:pr-11:first-child{
  padding-right: 2.75rem;
}

.first\:pr-12:first-child{
  padding-right: 3rem;
}

.first\:pr-14:first-child{
  padding-right: 3.5rem;
}

.first\:pr-16:first-child{
  padding-right: 4rem;
}

.first\:pr-20:first-child{
  padding-right: 5rem;
}

.first\:pr-24:first-child{
  padding-right: 6rem;
}

.first\:pr-28:first-child{
  padding-right: 7rem;
}

.first\:pr-32:first-child{
  padding-right: 8rem;
}

.first\:pr-36:first-child{
  padding-right: 9rem;
}

.first\:pr-40:first-child{
  padding-right: 10rem;
}

.first\:pr-44:first-child{
  padding-right: 11rem;
}

.first\:pr-48:first-child{
  padding-right: 12rem;
}

.first\:pr-52:first-child{
  padding-right: 13rem;
}

.first\:pr-56:first-child{
  padding-right: 14rem;
}

.first\:pr-60:first-child{
  padding-right: 15rem;
}

.first\:pr-64:first-child{
  padding-right: 16rem;
}

.first\:pr-72:first-child{
  padding-right: 18rem;
}

.first\:pr-80:first-child{
  padding-right: 20rem;
}

.first\:pr-96:first-child{
  padding-right: 24rem;
}

.first\:pr-px:first-child{
  padding-right: 1px;
}

.first\:pr-0\.5:first-child{
  padding-right: 0.125rem;
}

.first\:pr-1\.5:first-child{
  padding-right: 0.375rem;
}

.first\:pr-2\.5:first-child{
  padding-right: 0.625rem;
}

.first\:pr-3\.5:first-child{
  padding-right: 0.875rem;
}

.first\:pb-0:first-child{
  padding-bottom: 0px;
}

.first\:pb-1:first-child{
  padding-bottom: 0.25rem;
}

.first\:pb-2:first-child{
  padding-bottom: 0.5rem;
}

.first\:pb-3:first-child{
  padding-bottom: 0.75rem;
}

.first\:pb-4:first-child{
  padding-bottom: 1rem;
}

.first\:pb-5:first-child{
  padding-bottom: 1.25rem;
}

.first\:pb-6:first-child{
  padding-bottom: 1.5rem;
}

.first\:pb-7:first-child{
  padding-bottom: 1.75rem;
}

.first\:pb-8:first-child{
  padding-bottom: 2rem;
}

.first\:pb-9:first-child{
  padding-bottom: 2.25rem;
}

.first\:pb-10:first-child{
  padding-bottom: 2.5rem;
}

.first\:pb-11:first-child{
  padding-bottom: 2.75rem;
}

.first\:pb-12:first-child{
  padding-bottom: 3rem;
}

.first\:pb-14:first-child{
  padding-bottom: 3.5rem;
}

.first\:pb-16:first-child{
  padding-bottom: 4rem;
}

.first\:pb-20:first-child{
  padding-bottom: 5rem;
}

.first\:pb-24:first-child{
  padding-bottom: 6rem;
}

.first\:pb-28:first-child{
  padding-bottom: 7rem;
}

.first\:pb-32:first-child{
  padding-bottom: 8rem;
}

.first\:pb-36:first-child{
  padding-bottom: 9rem;
}

.first\:pb-40:first-child{
  padding-bottom: 10rem;
}

.first\:pb-44:first-child{
  padding-bottom: 11rem;
}

.first\:pb-48:first-child{
  padding-bottom: 12rem;
}

.first\:pb-52:first-child{
  padding-bottom: 13rem;
}

.first\:pb-56:first-child{
  padding-bottom: 14rem;
}

.first\:pb-60:first-child{
  padding-bottom: 15rem;
}

.first\:pb-64:first-child{
  padding-bottom: 16rem;
}

.first\:pb-72:first-child{
  padding-bottom: 18rem;
}

.first\:pb-80:first-child{
  padding-bottom: 20rem;
}

.first\:pb-96:first-child{
  padding-bottom: 24rem;
}

.first\:pb-px:first-child{
  padding-bottom: 1px;
}

.first\:pb-0\.5:first-child{
  padding-bottom: 0.125rem;
}

.first\:pb-1\.5:first-child{
  padding-bottom: 0.375rem;
}

.first\:pb-2\.5:first-child{
  padding-bottom: 0.625rem;
}

.first\:pb-3\.5:first-child{
  padding-bottom: 0.875rem;
}

.first\:pl-0:first-child{
  padding-left: 0px;
}

.first\:pl-1:first-child{
  padding-left: 0.25rem;
}

.first\:pl-2:first-child{
  padding-left: 0.5rem;
}

.first\:pl-3:first-child{
  padding-left: 0.75rem;
}

.first\:pl-4:first-child{
  padding-left: 1rem;
}

.first\:pl-5:first-child{
  padding-left: 1.25rem;
}

.first\:pl-6:first-child{
  padding-left: 1.5rem;
}

.first\:pl-7:first-child{
  padding-left: 1.75rem;
}

.first\:pl-8:first-child{
  padding-left: 2rem;
}

.first\:pl-9:first-child{
  padding-left: 2.25rem;
}

.first\:pl-10:first-child{
  padding-left: 2.5rem;
}

.first\:pl-11:first-child{
  padding-left: 2.75rem;
}

.first\:pl-12:first-child{
  padding-left: 3rem;
}

.first\:pl-14:first-child{
  padding-left: 3.5rem;
}

.first\:pl-16:first-child{
  padding-left: 4rem;
}

.first\:pl-20:first-child{
  padding-left: 5rem;
}

.first\:pl-24:first-child{
  padding-left: 6rem;
}

.first\:pl-28:first-child{
  padding-left: 7rem;
}

.first\:pl-32:first-child{
  padding-left: 8rem;
}

.first\:pl-36:first-child{
  padding-left: 9rem;
}

.first\:pl-40:first-child{
  padding-left: 10rem;
}

.first\:pl-44:first-child{
  padding-left: 11rem;
}

.first\:pl-48:first-child{
  padding-left: 12rem;
}

.first\:pl-52:first-child{
  padding-left: 13rem;
}

.first\:pl-56:first-child{
  padding-left: 14rem;
}

.first\:pl-60:first-child{
  padding-left: 15rem;
}

.first\:pl-64:first-child{
  padding-left: 16rem;
}

.first\:pl-72:first-child{
  padding-left: 18rem;
}

.first\:pl-80:first-child{
  padding-left: 20rem;
}

.first\:pl-96:first-child{
  padding-left: 24rem;
}

.first\:pl-px:first-child{
  padding-left: 1px;
}

.first\:pl-0\.5:first-child{
  padding-left: 0.125rem;
}

.first\:pl-1\.5:first-child{
  padding-left: 0.375rem;
}

.first\:pl-2\.5:first-child{
  padding-left: 0.625rem;
}

.first\:pl-3\.5:first-child{
  padding-left: 0.875rem;
}

.last\:pt-0:last-child{
  padding-top: 0px;
}

.last\:pt-1:last-child{
  padding-top: 0.25rem;
}

.last\:pt-2:last-child{
  padding-top: 0.5rem;
}

.last\:pt-3:last-child{
  padding-top: 0.75rem;
}

.last\:pt-4:last-child{
  padding-top: 1rem;
}

.last\:pt-5:last-child{
  padding-top: 1.25rem;
}

.last\:pt-6:last-child{
  padding-top: 1.5rem;
}

.last\:pt-7:last-child{
  padding-top: 1.75rem;
}

.last\:pt-8:last-child{
  padding-top: 2rem;
}

.last\:pt-9:last-child{
  padding-top: 2.25rem;
}

.last\:pt-10:last-child{
  padding-top: 2.5rem;
}

.last\:pt-11:last-child{
  padding-top: 2.75rem;
}

.last\:pt-12:last-child{
  padding-top: 3rem;
}

.last\:pt-14:last-child{
  padding-top: 3.5rem;
}

.last\:pt-16:last-child{
  padding-top: 4rem;
}

.last\:pt-20:last-child{
  padding-top: 5rem;
}

.last\:pt-24:last-child{
  padding-top: 6rem;
}

.last\:pt-28:last-child{
  padding-top: 7rem;
}

.last\:pt-32:last-child{
  padding-top: 8rem;
}

.last\:pt-36:last-child{
  padding-top: 9rem;
}

.last\:pt-40:last-child{
  padding-top: 10rem;
}

.last\:pt-44:last-child{
  padding-top: 11rem;
}

.last\:pt-48:last-child{
  padding-top: 12rem;
}

.last\:pt-52:last-child{
  padding-top: 13rem;
}

.last\:pt-56:last-child{
  padding-top: 14rem;
}

.last\:pt-60:last-child{
  padding-top: 15rem;
}

.last\:pt-64:last-child{
  padding-top: 16rem;
}

.last\:pt-72:last-child{
  padding-top: 18rem;
}

.last\:pt-80:last-child{
  padding-top: 20rem;
}

.last\:pt-96:last-child{
  padding-top: 24rem;
}

.last\:pt-px:last-child{
  padding-top: 1px;
}

.last\:pt-0\.5:last-child{
  padding-top: 0.125rem;
}

.last\:pt-1\.5:last-child{
  padding-top: 0.375rem;
}

.last\:pt-2\.5:last-child{
  padding-top: 0.625rem;
}

.last\:pt-3\.5:last-child{
  padding-top: 0.875rem;
}

.last\:pr-0:last-child{
  padding-right: 0px;
}

.last\:pr-1:last-child{
  padding-right: 0.25rem;
}

.last\:pr-2:last-child{
  padding-right: 0.5rem;
}

.last\:pr-3:last-child{
  padding-right: 0.75rem;
}

.last\:pr-4:last-child{
  padding-right: 1rem;
}

.last\:pr-5:last-child{
  padding-right: 1.25rem;
}

.last\:pr-6:last-child{
  padding-right: 1.5rem;
}

.last\:pr-7:last-child{
  padding-right: 1.75rem;
}

.last\:pr-8:last-child{
  padding-right: 2rem;
}

.last\:pr-9:last-child{
  padding-right: 2.25rem;
}

.last\:pr-10:last-child{
  padding-right: 2.5rem;
}

.last\:pr-11:last-child{
  padding-right: 2.75rem;
}

.last\:pr-12:last-child{
  padding-right: 3rem;
}

.last\:pr-14:last-child{
  padding-right: 3.5rem;
}

.last\:pr-16:last-child{
  padding-right: 4rem;
}

.last\:pr-20:last-child{
  padding-right: 5rem;
}

.last\:pr-24:last-child{
  padding-right: 6rem;
}

.last\:pr-28:last-child{
  padding-right: 7rem;
}

.last\:pr-32:last-child{
  padding-right: 8rem;
}

.last\:pr-36:last-child{
  padding-right: 9rem;
}

.last\:pr-40:last-child{
  padding-right: 10rem;
}

.last\:pr-44:last-child{
  padding-right: 11rem;
}

.last\:pr-48:last-child{
  padding-right: 12rem;
}

.last\:pr-52:last-child{
  padding-right: 13rem;
}

.last\:pr-56:last-child{
  padding-right: 14rem;
}

.last\:pr-60:last-child{
  padding-right: 15rem;
}

.last\:pr-64:last-child{
  padding-right: 16rem;
}

.last\:pr-72:last-child{
  padding-right: 18rem;
}

.last\:pr-80:last-child{
  padding-right: 20rem;
}

.last\:pr-96:last-child{
  padding-right: 24rem;
}

.last\:pr-px:last-child{
  padding-right: 1px;
}

.last\:pr-0\.5:last-child{
  padding-right: 0.125rem;
}

.last\:pr-1\.5:last-child{
  padding-right: 0.375rem;
}

.last\:pr-2\.5:last-child{
  padding-right: 0.625rem;
}

.last\:pr-3\.5:last-child{
  padding-right: 0.875rem;
}

.last\:pb-0:last-child{
  padding-bottom: 0px;
}

.last\:pb-1:last-child{
  padding-bottom: 0.25rem;
}

.last\:pb-2:last-child{
  padding-bottom: 0.5rem;
}

.last\:pb-3:last-child{
  padding-bottom: 0.75rem;
}

.last\:pb-4:last-child{
  padding-bottom: 1rem;
}

.last\:pb-5:last-child{
  padding-bottom: 1.25rem;
}

.last\:pb-6:last-child{
  padding-bottom: 1.5rem;
}

.last\:pb-7:last-child{
  padding-bottom: 1.75rem;
}

.last\:pb-8:last-child{
  padding-bottom: 2rem;
}

.last\:pb-9:last-child{
  padding-bottom: 2.25rem;
}

.last\:pb-10:last-child{
  padding-bottom: 2.5rem;
}

.last\:pb-11:last-child{
  padding-bottom: 2.75rem;
}

.last\:pb-12:last-child{
  padding-bottom: 3rem;
}

.last\:pb-14:last-child{
  padding-bottom: 3.5rem;
}

.last\:pb-16:last-child{
  padding-bottom: 4rem;
}

.last\:pb-20:last-child{
  padding-bottom: 5rem;
}

.last\:pb-24:last-child{
  padding-bottom: 6rem;
}

.last\:pb-28:last-child{
  padding-bottom: 7rem;
}

.last\:pb-32:last-child{
  padding-bottom: 8rem;
}

.last\:pb-36:last-child{
  padding-bottom: 9rem;
}

.last\:pb-40:last-child{
  padding-bottom: 10rem;
}

.last\:pb-44:last-child{
  padding-bottom: 11rem;
}

.last\:pb-48:last-child{
  padding-bottom: 12rem;
}

.last\:pb-52:last-child{
  padding-bottom: 13rem;
}

.last\:pb-56:last-child{
  padding-bottom: 14rem;
}

.last\:pb-60:last-child{
  padding-bottom: 15rem;
}

.last\:pb-64:last-child{
  padding-bottom: 16rem;
}

.last\:pb-72:last-child{
  padding-bottom: 18rem;
}

.last\:pb-80:last-child{
  padding-bottom: 20rem;
}

.last\:pb-96:last-child{
  padding-bottom: 24rem;
}

.last\:pb-px:last-child{
  padding-bottom: 1px;
}

.last\:pb-0\.5:last-child{
  padding-bottom: 0.125rem;
}

.last\:pb-1\.5:last-child{
  padding-bottom: 0.375rem;
}

.last\:pb-2\.5:last-child{
  padding-bottom: 0.625rem;
}

.last\:pb-3\.5:last-child{
  padding-bottom: 0.875rem;
}

.last\:pl-0:last-child{
  padding-left: 0px;
}

.last\:pl-1:last-child{
  padding-left: 0.25rem;
}

.last\:pl-2:last-child{
  padding-left: 0.5rem;
}

.last\:pl-3:last-child{
  padding-left: 0.75rem;
}

.last\:pl-4:last-child{
  padding-left: 1rem;
}

.last\:pl-5:last-child{
  padding-left: 1.25rem;
}

.last\:pl-6:last-child{
  padding-left: 1.5rem;
}

.last\:pl-7:last-child{
  padding-left: 1.75rem;
}

.last\:pl-8:last-child{
  padding-left: 2rem;
}

.last\:pl-9:last-child{
  padding-left: 2.25rem;
}

.last\:pl-10:last-child{
  padding-left: 2.5rem;
}

.last\:pl-11:last-child{
  padding-left: 2.75rem;
}

.last\:pl-12:last-child{
  padding-left: 3rem;
}

.last\:pl-14:last-child{
  padding-left: 3.5rem;
}

.last\:pl-16:last-child{
  padding-left: 4rem;
}

.last\:pl-20:last-child{
  padding-left: 5rem;
}

.last\:pl-24:last-child{
  padding-left: 6rem;
}

.last\:pl-28:last-child{
  padding-left: 7rem;
}

.last\:pl-32:last-child{
  padding-left: 8rem;
}

.last\:pl-36:last-child{
  padding-left: 9rem;
}

.last\:pl-40:last-child{
  padding-left: 10rem;
}

.last\:pl-44:last-child{
  padding-left: 11rem;
}

.last\:pl-48:last-child{
  padding-left: 12rem;
}

.last\:pl-52:last-child{
  padding-left: 13rem;
}

.last\:pl-56:last-child{
  padding-left: 14rem;
}

.last\:pl-60:last-child{
  padding-left: 15rem;
}

.last\:pl-64:last-child{
  padding-left: 16rem;
}

.last\:pl-72:last-child{
  padding-left: 18rem;
}

.last\:pl-80:last-child{
  padding-left: 20rem;
}

.last\:pl-96:last-child{
  padding-left: 24rem;
}

.last\:pl-px:last-child{
  padding-left: 1px;
}

.last\:pl-0\.5:last-child{
  padding-left: 0.125rem;
}

.last\:pl-1\.5:last-child{
  padding-left: 0.375rem;
}

.last\:pl-2\.5:last-child{
  padding-left: 0.625rem;
}

.last\:pl-3\.5:last-child{
  padding-left: 0.875rem;
}

.text-left{
  text-align: left;
}

.text-center{
  text-align: center;
}

.text-right{
  text-align: right;
}

.text-justify{
  text-align: justify;
}

.align-baseline{
  vertical-align: baseline;
}

.align-top{
  vertical-align: top;
}

.align-middle{
  vertical-align: middle;
}

.align-bottom{
  vertical-align: bottom;
}

.align-text-top{
  vertical-align: text-top;
}

.align-text-bottom{
  vertical-align: text-bottom;
}

.font-klint-bold{
  font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
}

.font-klint-regular{
  font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
}

.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl{
  font-size: 3rem;
  line-height: 1;
}

.text-6xl{
  font-size: 3.75rem;
  line-height: 1;
}

.text-7xl{
  font-size: 5rem;
}

.text-8xl{
  font-size: 6rem;
}

.text-9xl{
  font-size: 7rem;
}

.font-thin{
  font-weight: 100;
}

.font-extralight{
  font-weight: 200;
}

.font-light{
  font-weight: 300;
}

.font-normal{
  font-weight: 400;
}

.font-medium{
  font-weight: 500;
}

.font-semibold{
  font-weight: 600;
}

.font-bold{
  font-weight: 700;
}

.font-extrabold{
  font-weight: 800;
}

.font-black{
  font-weight: 900;
}

.uppercase{
  text-transform: uppercase;
}

.lowercase{
  text-transform: lowercase;
}

.capitalize{
  text-transform: capitalize;
}

.normal-case{
  text-transform: none;
}

.italic{
  font-style: italic;
}

.not-italic{
  font-style: normal;
}

.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions{
  --tw-ordinal: var(--tw-empty,/*!*/ /*!*/);
  --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/);
  --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/);
  --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/);
  --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/);
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}

.normal-nums{
  font-variant-numeric: normal;
}

.ordinal{
  --tw-ordinal: ordinal;
}

.slashed-zero{
  --tw-slashed-zero: slashed-zero;
}

.lining-nums{
  --tw-numeric-figure: lining-nums;
}

.oldstyle-nums{
  --tw-numeric-figure: oldstyle-nums;
}

.proportional-nums{
  --tw-numeric-spacing: proportional-nums;
}

.tabular-nums{
  --tw-numeric-spacing: tabular-nums;
}

.diagonal-fractions{
  --tw-numeric-fraction: diagonal-fractions;
}

.stacked-fractions{
  --tw-numeric-fraction: stacked-fractions;
}

.leading-3{
  line-height: .75rem;
}

.leading-4{
  line-height: 1rem;
}

.leading-5{
  line-height: 1.25rem;
}

.leading-6{
  line-height: 1.5rem;
}

.leading-7{
  line-height: 1.75rem;
}

.leading-8{
  line-height: 2rem;
}

.leading-9{
  line-height: 2.25rem;
}

.leading-10{
  line-height: 2.5rem;
}

.leading-none{
  line-height: 1;
}

.leading-tight{
  line-height: 1.25;
}

.leading-snug{
  line-height: 1.375;
}

.leading-normal{
  line-height: 1.5;
}

.leading-relaxed{
  line-height: 1.625;
}

.leading-loose{
  line-height: 2;
}

.tracking-tighter{
  letter-spacing: -0.05em;
}

.tracking-tight{
  letter-spacing: -0.025em;
}

.tracking-normal{
  letter-spacing: 0em;
}

.tracking-wide{
  letter-spacing: 0.025em;
}

.tracking-wider{
  letter-spacing: 0.05em;
}

.tracking-widest{
  letter-spacing: 0.1em;
}

.text-transparent{
  color: transparent;
}

.text-current{
  color: currentColor;
}

.text-black{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.text-white{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-gray-50{
  --tw-text-opacity: 1;
  color: rgba(249, 250, 251, var(--tw-text-opacity));
}

.text-gray-100{
  --tw-text-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-text-opacity));
}

.text-gray-200{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-text-opacity));
}

.text-gray-300{
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}

.text-gray-400{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

.text-gray-500{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

.text-gray-600{
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}

.text-gray-700{
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

.text-gray-800{
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-text-opacity));
}

.text-gray-900{
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}

.text-red-50{
  --tw-text-opacity: 1;
  color: rgba(254, 242, 242, var(--tw-text-opacity));
}

.text-red-100{
  --tw-text-opacity: 1;
  color: rgba(254, 226, 226, var(--tw-text-opacity));
}

.text-red-200{
  --tw-text-opacity: 1;
  color: rgba(254, 202, 202, var(--tw-text-opacity));
}

.text-red-300{
  --tw-text-opacity: 1;
  color: rgba(252, 165, 165, var(--tw-text-opacity));
}

.text-red-400{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-text-opacity));
}

.text-red-500{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}

.text-red-600{
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, var(--tw-text-opacity));
}

.text-red-700{
  --tw-text-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-text-opacity));
}

.text-red-800{
  --tw-text-opacity: 1;
  color: rgba(153, 27, 27, var(--tw-text-opacity));
}

.text-red-900{
  --tw-text-opacity: 1;
  color: rgba(127, 29, 29, var(--tw-text-opacity));
}

.text-red-light{
  --tw-text-opacity: 1;
  color: rgba(234, 122, 122, var(--tw-text-opacity));
}

.text-red-default{
  --tw-text-opacity: 1;
  color: rgba(185, 0, 0, var(--tw-text-opacity));
}

.text-red-dark{
  --tw-text-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-text-opacity));
}

.text-yellow-50{
  --tw-text-opacity: 1;
  color: rgba(255, 251, 235, var(--tw-text-opacity));
}

.text-yellow-100{
  --tw-text-opacity: 1;
  color: rgba(254, 243, 199, var(--tw-text-opacity));
}

.text-yellow-200{
  --tw-text-opacity: 1;
  color: rgba(253, 230, 138, var(--tw-text-opacity));
}

.text-yellow-300{
  --tw-text-opacity: 1;
  color: rgba(252, 211, 77, var(--tw-text-opacity));
}

.text-yellow-400{
  --tw-text-opacity: 1;
  color: rgba(251, 191, 36, var(--tw-text-opacity));
}

.text-yellow-500{
  --tw-text-opacity: 1;
  color: rgba(245, 158, 11, var(--tw-text-opacity));
}

.text-yellow-600{
  --tw-text-opacity: 1;
  color: rgba(217, 119, 6, var(--tw-text-opacity));
}

.text-yellow-700{
  --tw-text-opacity: 1;
  color: rgba(180, 83, 9, var(--tw-text-opacity));
}

.text-yellow-800{
  --tw-text-opacity: 1;
  color: rgba(146, 64, 14, var(--tw-text-opacity));
}

.text-yellow-900{
  --tw-text-opacity: 1;
  color: rgba(120, 53, 15, var(--tw-text-opacity));
}

.text-green-50{
  --tw-text-opacity: 1;
  color: rgba(236, 253, 245, var(--tw-text-opacity));
}

.text-green-100{
  --tw-text-opacity: 1;
  color: rgba(209, 250, 229, var(--tw-text-opacity));
}

.text-green-200{
  --tw-text-opacity: 1;
  color: rgba(167, 243, 208, var(--tw-text-opacity));
}

.text-green-300{
  --tw-text-opacity: 1;
  color: rgba(110, 231, 183, var(--tw-text-opacity));
}

.text-green-400{
  --tw-text-opacity: 1;
  color: rgba(52, 211, 153, var(--tw-text-opacity));
}

.text-green-500{
  --tw-text-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-text-opacity));
}

.text-green-600{
  --tw-text-opacity: 1;
  color: rgba(5, 150, 105, var(--tw-text-opacity));
}

.text-green-700{
  --tw-text-opacity: 1;
  color: rgba(4, 120, 87, var(--tw-text-opacity));
}

.text-green-800{
  --tw-text-opacity: 1;
  color: rgba(6, 95, 70, var(--tw-text-opacity));
}

.text-green-900{
  --tw-text-opacity: 1;
  color: rgba(6, 78, 59, var(--tw-text-opacity));
}

.text-green-light{
  --tw-text-opacity: 1;
  color: rgba(181, 209, 185, var(--tw-text-opacity));
}

.text-green-default{
  --tw-text-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-text-opacity));
}

.text-green-dark{
  --tw-text-opacity: 1;
  color: rgba(28, 37, 30, var(--tw-text-opacity));
}

.text-blue-50{
  --tw-text-opacity: 1;
  color: rgba(239, 246, 255, var(--tw-text-opacity));
}

.text-blue-100{
  --tw-text-opacity: 1;
  color: rgba(219, 234, 254, var(--tw-text-opacity));
}

.text-blue-200{
  --tw-text-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-text-opacity));
}

.text-blue-300{
  --tw-text-opacity: 1;
  color: rgba(147, 197, 253, var(--tw-text-opacity));
}

.text-blue-400{
  --tw-text-opacity: 1;
  color: rgba(96, 165, 250, var(--tw-text-opacity));
}

.text-blue-500{
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-text-opacity));
}

.text-blue-600{
  --tw-text-opacity: 1;
  color: rgba(37, 99, 235, var(--tw-text-opacity));
}

.text-blue-700{
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-text-opacity));
}

.text-blue-800{
  --tw-text-opacity: 1;
  color: rgba(30, 64, 175, var(--tw-text-opacity));
}

.text-blue-900{
  --tw-text-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-text-opacity));
}

.text-indigo-50{
  --tw-text-opacity: 1;
  color: rgba(238, 242, 255, var(--tw-text-opacity));
}

.text-indigo-100{
  --tw-text-opacity: 1;
  color: rgba(224, 231, 255, var(--tw-text-opacity));
}

.text-indigo-200{
  --tw-text-opacity: 1;
  color: rgba(199, 210, 254, var(--tw-text-opacity));
}

.text-indigo-300{
  --tw-text-opacity: 1;
  color: rgba(165, 180, 252, var(--tw-text-opacity));
}

.text-indigo-400{
  --tw-text-opacity: 1;
  color: rgba(129, 140, 248, var(--tw-text-opacity));
}

.text-indigo-500{
  --tw-text-opacity: 1;
  color: rgba(99, 102, 241, var(--tw-text-opacity));
}

.text-indigo-600{
  --tw-text-opacity: 1;
  color: rgba(79, 70, 229, var(--tw-text-opacity));
}

.text-indigo-700{
  --tw-text-opacity: 1;
  color: rgba(67, 56, 202, var(--tw-text-opacity));
}

.text-indigo-800{
  --tw-text-opacity: 1;
  color: rgba(55, 48, 163, var(--tw-text-opacity));
}

.text-indigo-900{
  --tw-text-opacity: 1;
  color: rgba(49, 46, 129, var(--tw-text-opacity));
}

.text-purple-50{
  --tw-text-opacity: 1;
  color: rgba(245, 243, 255, var(--tw-text-opacity));
}

.text-purple-100{
  --tw-text-opacity: 1;
  color: rgba(237, 233, 254, var(--tw-text-opacity));
}

.text-purple-200{
  --tw-text-opacity: 1;
  color: rgba(221, 214, 254, var(--tw-text-opacity));
}

.text-purple-300{
  --tw-text-opacity: 1;
  color: rgba(196, 181, 253, var(--tw-text-opacity));
}

.text-purple-400{
  --tw-text-opacity: 1;
  color: rgba(167, 139, 250, var(--tw-text-opacity));
}

.text-purple-500{
  --tw-text-opacity: 1;
  color: rgba(139, 92, 246, var(--tw-text-opacity));
}

.text-purple-600{
  --tw-text-opacity: 1;
  color: rgba(124, 58, 237, var(--tw-text-opacity));
}

.text-purple-700{
  --tw-text-opacity: 1;
  color: rgba(109, 40, 217, var(--tw-text-opacity));
}

.text-purple-800{
  --tw-text-opacity: 1;
  color: rgba(91, 33, 182, var(--tw-text-opacity));
}

.text-purple-900{
  --tw-text-opacity: 1;
  color: rgba(76, 29, 149, var(--tw-text-opacity));
}

.text-pink-50{
  --tw-text-opacity: 1;
  color: rgba(253, 242, 248, var(--tw-text-opacity));
}

.text-pink-100{
  --tw-text-opacity: 1;
  color: rgba(252, 231, 243, var(--tw-text-opacity));
}

.text-pink-200{
  --tw-text-opacity: 1;
  color: rgba(251, 207, 232, var(--tw-text-opacity));
}

.text-pink-300{
  --tw-text-opacity: 1;
  color: rgba(249, 168, 212, var(--tw-text-opacity));
}

.text-pink-400{
  --tw-text-opacity: 1;
  color: rgba(244, 114, 182, var(--tw-text-opacity));
}

.text-pink-500{
  --tw-text-opacity: 1;
  color: rgba(236, 72, 153, var(--tw-text-opacity));
}

.text-pink-600{
  --tw-text-opacity: 1;
  color: rgba(219, 39, 119, var(--tw-text-opacity));
}

.text-pink-700{
  --tw-text-opacity: 1;
  color: rgba(190, 24, 93, var(--tw-text-opacity));
}

.text-pink-800{
  --tw-text-opacity: 1;
  color: rgba(157, 23, 77, var(--tw-text-opacity));
}

.text-pink-900{
  --tw-text-opacity: 1;
  color: rgba(131, 24, 67, var(--tw-text-opacity));
}

.text-brown-light{
  --tw-text-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-text-opacity));
}

.text-brown-semi{
  --tw-text-opacity: 1;
  color: rgba(222, 214, 202, var(--tw-text-opacity));
}

.text-brown-default{
  --tw-text-opacity: 1;
  color: rgba(123, 108, 92, var(--tw-text-opacity));
}

.text-brown-dark{
  --tw-text-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-text-opacity));
}

.text-success-light{
  --tw-text-opacity: 1;
  color: rgba(145, 224, 156, var(--tw-text-opacity));
}

.text-success-default{
  --tw-text-opacity: 1;
  color: rgba(45, 153, 60, var(--tw-text-opacity));
}

.text-success-dark{
  --tw-text-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-text-opacity));
}

.text-error-light{
  --tw-text-opacity: 1;
  color: rgba(249, 134, 134, var(--tw-text-opacity));
}

.text-error-default{
  --tw-text-opacity: 1;
  color: rgba(203, 7, 7, var(--tw-text-opacity));
}

.text-error-dark{
  --tw-text-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-text-opacity));
}

.text-navigation-dark{
  --tw-text-opacity: 1;
  color: rgba(255, 205, 0, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-transparent{
  color: transparent;
}

.group:hover .group-hover\:text-current{
  color: currentColor;
}

.group:hover .group-hover\:text-black{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-white{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-gray-50{
  --tw-text-opacity: 1;
  color: rgba(249, 250, 251, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-gray-100{
  --tw-text-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-gray-200{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-gray-300{
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-gray-400{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-gray-500{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-gray-600{
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-gray-700{
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-gray-800{
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-gray-900{
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-50{
  --tw-text-opacity: 1;
  color: rgba(254, 242, 242, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-100{
  --tw-text-opacity: 1;
  color: rgba(254, 226, 226, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-200{
  --tw-text-opacity: 1;
  color: rgba(254, 202, 202, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-300{
  --tw-text-opacity: 1;
  color: rgba(252, 165, 165, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-400{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-500{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-600{
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-700{
  --tw-text-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-800{
  --tw-text-opacity: 1;
  color: rgba(153, 27, 27, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-900{
  --tw-text-opacity: 1;
  color: rgba(127, 29, 29, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-light{
  --tw-text-opacity: 1;
  color: rgba(234, 122, 122, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-default{
  --tw-text-opacity: 1;
  color: rgba(185, 0, 0, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-red-dark{
  --tw-text-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-yellow-50{
  --tw-text-opacity: 1;
  color: rgba(255, 251, 235, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-yellow-100{
  --tw-text-opacity: 1;
  color: rgba(254, 243, 199, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-yellow-200{
  --tw-text-opacity: 1;
  color: rgba(253, 230, 138, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-yellow-300{
  --tw-text-opacity: 1;
  color: rgba(252, 211, 77, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-yellow-400{
  --tw-text-opacity: 1;
  color: rgba(251, 191, 36, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-yellow-500{
  --tw-text-opacity: 1;
  color: rgba(245, 158, 11, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-yellow-600{
  --tw-text-opacity: 1;
  color: rgba(217, 119, 6, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-yellow-700{
  --tw-text-opacity: 1;
  color: rgba(180, 83, 9, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-yellow-800{
  --tw-text-opacity: 1;
  color: rgba(146, 64, 14, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-yellow-900{
  --tw-text-opacity: 1;
  color: rgba(120, 53, 15, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-50{
  --tw-text-opacity: 1;
  color: rgba(236, 253, 245, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-100{
  --tw-text-opacity: 1;
  color: rgba(209, 250, 229, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-200{
  --tw-text-opacity: 1;
  color: rgba(167, 243, 208, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-300{
  --tw-text-opacity: 1;
  color: rgba(110, 231, 183, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-400{
  --tw-text-opacity: 1;
  color: rgba(52, 211, 153, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-500{
  --tw-text-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-600{
  --tw-text-opacity: 1;
  color: rgba(5, 150, 105, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-700{
  --tw-text-opacity: 1;
  color: rgba(4, 120, 87, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-800{
  --tw-text-opacity: 1;
  color: rgba(6, 95, 70, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-900{
  --tw-text-opacity: 1;
  color: rgba(6, 78, 59, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-light{
  --tw-text-opacity: 1;
  color: rgba(181, 209, 185, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-default{
  --tw-text-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-green-dark{
  --tw-text-opacity: 1;
  color: rgba(28, 37, 30, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-blue-50{
  --tw-text-opacity: 1;
  color: rgba(239, 246, 255, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-blue-100{
  --tw-text-opacity: 1;
  color: rgba(219, 234, 254, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-blue-200{
  --tw-text-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-blue-300{
  --tw-text-opacity: 1;
  color: rgba(147, 197, 253, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-blue-400{
  --tw-text-opacity: 1;
  color: rgba(96, 165, 250, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-blue-500{
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-blue-600{
  --tw-text-opacity: 1;
  color: rgba(37, 99, 235, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-blue-700{
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-blue-800{
  --tw-text-opacity: 1;
  color: rgba(30, 64, 175, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-blue-900{
  --tw-text-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-indigo-50{
  --tw-text-opacity: 1;
  color: rgba(238, 242, 255, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-indigo-100{
  --tw-text-opacity: 1;
  color: rgba(224, 231, 255, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-indigo-200{
  --tw-text-opacity: 1;
  color: rgba(199, 210, 254, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-indigo-300{
  --tw-text-opacity: 1;
  color: rgba(165, 180, 252, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-indigo-400{
  --tw-text-opacity: 1;
  color: rgba(129, 140, 248, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-indigo-500{
  --tw-text-opacity: 1;
  color: rgba(99, 102, 241, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-indigo-600{
  --tw-text-opacity: 1;
  color: rgba(79, 70, 229, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-indigo-700{
  --tw-text-opacity: 1;
  color: rgba(67, 56, 202, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-indigo-800{
  --tw-text-opacity: 1;
  color: rgba(55, 48, 163, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-indigo-900{
  --tw-text-opacity: 1;
  color: rgba(49, 46, 129, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-purple-50{
  --tw-text-opacity: 1;
  color: rgba(245, 243, 255, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-purple-100{
  --tw-text-opacity: 1;
  color: rgba(237, 233, 254, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-purple-200{
  --tw-text-opacity: 1;
  color: rgba(221, 214, 254, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-purple-300{
  --tw-text-opacity: 1;
  color: rgba(196, 181, 253, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-purple-400{
  --tw-text-opacity: 1;
  color: rgba(167, 139, 250, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-purple-500{
  --tw-text-opacity: 1;
  color: rgba(139, 92, 246, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-purple-600{
  --tw-text-opacity: 1;
  color: rgba(124, 58, 237, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-purple-700{
  --tw-text-opacity: 1;
  color: rgba(109, 40, 217, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-purple-800{
  --tw-text-opacity: 1;
  color: rgba(91, 33, 182, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-purple-900{
  --tw-text-opacity: 1;
  color: rgba(76, 29, 149, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-pink-50{
  --tw-text-opacity: 1;
  color: rgba(253, 242, 248, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-pink-100{
  --tw-text-opacity: 1;
  color: rgba(252, 231, 243, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-pink-200{
  --tw-text-opacity: 1;
  color: rgba(251, 207, 232, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-pink-300{
  --tw-text-opacity: 1;
  color: rgba(249, 168, 212, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-pink-400{
  --tw-text-opacity: 1;
  color: rgba(244, 114, 182, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-pink-500{
  --tw-text-opacity: 1;
  color: rgba(236, 72, 153, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-pink-600{
  --tw-text-opacity: 1;
  color: rgba(219, 39, 119, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-pink-700{
  --tw-text-opacity: 1;
  color: rgba(190, 24, 93, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-pink-800{
  --tw-text-opacity: 1;
  color: rgba(157, 23, 77, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-pink-900{
  --tw-text-opacity: 1;
  color: rgba(131, 24, 67, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-brown-light{
  --tw-text-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-brown-semi{
  --tw-text-opacity: 1;
  color: rgba(222, 214, 202, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-brown-default{
  --tw-text-opacity: 1;
  color: rgba(123, 108, 92, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-brown-dark{
  --tw-text-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-success-light{
  --tw-text-opacity: 1;
  color: rgba(145, 224, 156, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-success-default{
  --tw-text-opacity: 1;
  color: rgba(45, 153, 60, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-success-dark{
  --tw-text-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-error-light{
  --tw-text-opacity: 1;
  color: rgba(249, 134, 134, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-error-default{
  --tw-text-opacity: 1;
  color: rgba(203, 7, 7, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-error-dark{
  --tw-text-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-text-opacity));
}

.group:hover .group-hover\:text-navigation-dark{
  --tw-text-opacity: 1;
  color: rgba(255, 205, 0, var(--tw-text-opacity));
}

.focus-within\:text-transparent:focus-within{
  color: transparent;
}

.focus-within\:text-current:focus-within{
  color: currentColor;
}

.focus-within\:text-black:focus-within{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.focus-within\:text-white:focus-within{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.focus-within\:text-gray-50:focus-within{
  --tw-text-opacity: 1;
  color: rgba(249, 250, 251, var(--tw-text-opacity));
}

.focus-within\:text-gray-100:focus-within{
  --tw-text-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-text-opacity));
}

.focus-within\:text-gray-200:focus-within{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-text-opacity));
}

.focus-within\:text-gray-300:focus-within{
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}

.focus-within\:text-gray-400:focus-within{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

.focus-within\:text-gray-500:focus-within{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

.focus-within\:text-gray-600:focus-within{
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}

.focus-within\:text-gray-700:focus-within{
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

.focus-within\:text-gray-800:focus-within{
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-text-opacity));
}

.focus-within\:text-gray-900:focus-within{
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}

.focus-within\:text-red-50:focus-within{
  --tw-text-opacity: 1;
  color: rgba(254, 242, 242, var(--tw-text-opacity));
}

.focus-within\:text-red-100:focus-within{
  --tw-text-opacity: 1;
  color: rgba(254, 226, 226, var(--tw-text-opacity));
}

.focus-within\:text-red-200:focus-within{
  --tw-text-opacity: 1;
  color: rgba(254, 202, 202, var(--tw-text-opacity));
}

.focus-within\:text-red-300:focus-within{
  --tw-text-opacity: 1;
  color: rgba(252, 165, 165, var(--tw-text-opacity));
}

.focus-within\:text-red-400:focus-within{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-text-opacity));
}

.focus-within\:text-red-500:focus-within{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}

.focus-within\:text-red-600:focus-within{
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, var(--tw-text-opacity));
}

.focus-within\:text-red-700:focus-within{
  --tw-text-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-text-opacity));
}

.focus-within\:text-red-800:focus-within{
  --tw-text-opacity: 1;
  color: rgba(153, 27, 27, var(--tw-text-opacity));
}

.focus-within\:text-red-900:focus-within{
  --tw-text-opacity: 1;
  color: rgba(127, 29, 29, var(--tw-text-opacity));
}

.focus-within\:text-red-light:focus-within{
  --tw-text-opacity: 1;
  color: rgba(234, 122, 122, var(--tw-text-opacity));
}

.focus-within\:text-red-default:focus-within{
  --tw-text-opacity: 1;
  color: rgba(185, 0, 0, var(--tw-text-opacity));
}

.focus-within\:text-red-dark:focus-within{
  --tw-text-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-text-opacity));
}

.focus-within\:text-yellow-50:focus-within{
  --tw-text-opacity: 1;
  color: rgba(255, 251, 235, var(--tw-text-opacity));
}

.focus-within\:text-yellow-100:focus-within{
  --tw-text-opacity: 1;
  color: rgba(254, 243, 199, var(--tw-text-opacity));
}

.focus-within\:text-yellow-200:focus-within{
  --tw-text-opacity: 1;
  color: rgba(253, 230, 138, var(--tw-text-opacity));
}

.focus-within\:text-yellow-300:focus-within{
  --tw-text-opacity: 1;
  color: rgba(252, 211, 77, var(--tw-text-opacity));
}

.focus-within\:text-yellow-400:focus-within{
  --tw-text-opacity: 1;
  color: rgba(251, 191, 36, var(--tw-text-opacity));
}

.focus-within\:text-yellow-500:focus-within{
  --tw-text-opacity: 1;
  color: rgba(245, 158, 11, var(--tw-text-opacity));
}

.focus-within\:text-yellow-600:focus-within{
  --tw-text-opacity: 1;
  color: rgba(217, 119, 6, var(--tw-text-opacity));
}

.focus-within\:text-yellow-700:focus-within{
  --tw-text-opacity: 1;
  color: rgba(180, 83, 9, var(--tw-text-opacity));
}

.focus-within\:text-yellow-800:focus-within{
  --tw-text-opacity: 1;
  color: rgba(146, 64, 14, var(--tw-text-opacity));
}

.focus-within\:text-yellow-900:focus-within{
  --tw-text-opacity: 1;
  color: rgba(120, 53, 15, var(--tw-text-opacity));
}

.focus-within\:text-green-50:focus-within{
  --tw-text-opacity: 1;
  color: rgba(236, 253, 245, var(--tw-text-opacity));
}

.focus-within\:text-green-100:focus-within{
  --tw-text-opacity: 1;
  color: rgba(209, 250, 229, var(--tw-text-opacity));
}

.focus-within\:text-green-200:focus-within{
  --tw-text-opacity: 1;
  color: rgba(167, 243, 208, var(--tw-text-opacity));
}

.focus-within\:text-green-300:focus-within{
  --tw-text-opacity: 1;
  color: rgba(110, 231, 183, var(--tw-text-opacity));
}

.focus-within\:text-green-400:focus-within{
  --tw-text-opacity: 1;
  color: rgba(52, 211, 153, var(--tw-text-opacity));
}

.focus-within\:text-green-500:focus-within{
  --tw-text-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-text-opacity));
}

.focus-within\:text-green-600:focus-within{
  --tw-text-opacity: 1;
  color: rgba(5, 150, 105, var(--tw-text-opacity));
}

.focus-within\:text-green-700:focus-within{
  --tw-text-opacity: 1;
  color: rgba(4, 120, 87, var(--tw-text-opacity));
}

.focus-within\:text-green-800:focus-within{
  --tw-text-opacity: 1;
  color: rgba(6, 95, 70, var(--tw-text-opacity));
}

.focus-within\:text-green-900:focus-within{
  --tw-text-opacity: 1;
  color: rgba(6, 78, 59, var(--tw-text-opacity));
}

.focus-within\:text-green-light:focus-within{
  --tw-text-opacity: 1;
  color: rgba(181, 209, 185, var(--tw-text-opacity));
}

.focus-within\:text-green-default:focus-within{
  --tw-text-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-text-opacity));
}

.focus-within\:text-green-dark:focus-within{
  --tw-text-opacity: 1;
  color: rgba(28, 37, 30, var(--tw-text-opacity));
}

.focus-within\:text-blue-50:focus-within{
  --tw-text-opacity: 1;
  color: rgba(239, 246, 255, var(--tw-text-opacity));
}

.focus-within\:text-blue-100:focus-within{
  --tw-text-opacity: 1;
  color: rgba(219, 234, 254, var(--tw-text-opacity));
}

.focus-within\:text-blue-200:focus-within{
  --tw-text-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-text-opacity));
}

.focus-within\:text-blue-300:focus-within{
  --tw-text-opacity: 1;
  color: rgba(147, 197, 253, var(--tw-text-opacity));
}

.focus-within\:text-blue-400:focus-within{
  --tw-text-opacity: 1;
  color: rgba(96, 165, 250, var(--tw-text-opacity));
}

.focus-within\:text-blue-500:focus-within{
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-text-opacity));
}

.focus-within\:text-blue-600:focus-within{
  --tw-text-opacity: 1;
  color: rgba(37, 99, 235, var(--tw-text-opacity));
}

.focus-within\:text-blue-700:focus-within{
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-text-opacity));
}

.focus-within\:text-blue-800:focus-within{
  --tw-text-opacity: 1;
  color: rgba(30, 64, 175, var(--tw-text-opacity));
}

.focus-within\:text-blue-900:focus-within{
  --tw-text-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-text-opacity));
}

.focus-within\:text-indigo-50:focus-within{
  --tw-text-opacity: 1;
  color: rgba(238, 242, 255, var(--tw-text-opacity));
}

.focus-within\:text-indigo-100:focus-within{
  --tw-text-opacity: 1;
  color: rgba(224, 231, 255, var(--tw-text-opacity));
}

.focus-within\:text-indigo-200:focus-within{
  --tw-text-opacity: 1;
  color: rgba(199, 210, 254, var(--tw-text-opacity));
}

.focus-within\:text-indigo-300:focus-within{
  --tw-text-opacity: 1;
  color: rgba(165, 180, 252, var(--tw-text-opacity));
}

.focus-within\:text-indigo-400:focus-within{
  --tw-text-opacity: 1;
  color: rgba(129, 140, 248, var(--tw-text-opacity));
}

.focus-within\:text-indigo-500:focus-within{
  --tw-text-opacity: 1;
  color: rgba(99, 102, 241, var(--tw-text-opacity));
}

.focus-within\:text-indigo-600:focus-within{
  --tw-text-opacity: 1;
  color: rgba(79, 70, 229, var(--tw-text-opacity));
}

.focus-within\:text-indigo-700:focus-within{
  --tw-text-opacity: 1;
  color: rgba(67, 56, 202, var(--tw-text-opacity));
}

.focus-within\:text-indigo-800:focus-within{
  --tw-text-opacity: 1;
  color: rgba(55, 48, 163, var(--tw-text-opacity));
}

.focus-within\:text-indigo-900:focus-within{
  --tw-text-opacity: 1;
  color: rgba(49, 46, 129, var(--tw-text-opacity));
}

.focus-within\:text-purple-50:focus-within{
  --tw-text-opacity: 1;
  color: rgba(245, 243, 255, var(--tw-text-opacity));
}

.focus-within\:text-purple-100:focus-within{
  --tw-text-opacity: 1;
  color: rgba(237, 233, 254, var(--tw-text-opacity));
}

.focus-within\:text-purple-200:focus-within{
  --tw-text-opacity: 1;
  color: rgba(221, 214, 254, var(--tw-text-opacity));
}

.focus-within\:text-purple-300:focus-within{
  --tw-text-opacity: 1;
  color: rgba(196, 181, 253, var(--tw-text-opacity));
}

.focus-within\:text-purple-400:focus-within{
  --tw-text-opacity: 1;
  color: rgba(167, 139, 250, var(--tw-text-opacity));
}

.focus-within\:text-purple-500:focus-within{
  --tw-text-opacity: 1;
  color: rgba(139, 92, 246, var(--tw-text-opacity));
}

.focus-within\:text-purple-600:focus-within{
  --tw-text-opacity: 1;
  color: rgba(124, 58, 237, var(--tw-text-opacity));
}

.focus-within\:text-purple-700:focus-within{
  --tw-text-opacity: 1;
  color: rgba(109, 40, 217, var(--tw-text-opacity));
}

.focus-within\:text-purple-800:focus-within{
  --tw-text-opacity: 1;
  color: rgba(91, 33, 182, var(--tw-text-opacity));
}

.focus-within\:text-purple-900:focus-within{
  --tw-text-opacity: 1;
  color: rgba(76, 29, 149, var(--tw-text-opacity));
}

.focus-within\:text-pink-50:focus-within{
  --tw-text-opacity: 1;
  color: rgba(253, 242, 248, var(--tw-text-opacity));
}

.focus-within\:text-pink-100:focus-within{
  --tw-text-opacity: 1;
  color: rgba(252, 231, 243, var(--tw-text-opacity));
}

.focus-within\:text-pink-200:focus-within{
  --tw-text-opacity: 1;
  color: rgba(251, 207, 232, var(--tw-text-opacity));
}

.focus-within\:text-pink-300:focus-within{
  --tw-text-opacity: 1;
  color: rgba(249, 168, 212, var(--tw-text-opacity));
}

.focus-within\:text-pink-400:focus-within{
  --tw-text-opacity: 1;
  color: rgba(244, 114, 182, var(--tw-text-opacity));
}

.focus-within\:text-pink-500:focus-within{
  --tw-text-opacity: 1;
  color: rgba(236, 72, 153, var(--tw-text-opacity));
}

.focus-within\:text-pink-600:focus-within{
  --tw-text-opacity: 1;
  color: rgba(219, 39, 119, var(--tw-text-opacity));
}

.focus-within\:text-pink-700:focus-within{
  --tw-text-opacity: 1;
  color: rgba(190, 24, 93, var(--tw-text-opacity));
}

.focus-within\:text-pink-800:focus-within{
  --tw-text-opacity: 1;
  color: rgba(157, 23, 77, var(--tw-text-opacity));
}

.focus-within\:text-pink-900:focus-within{
  --tw-text-opacity: 1;
  color: rgba(131, 24, 67, var(--tw-text-opacity));
}

.focus-within\:text-brown-light:focus-within{
  --tw-text-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-text-opacity));
}

.focus-within\:text-brown-semi:focus-within{
  --tw-text-opacity: 1;
  color: rgba(222, 214, 202, var(--tw-text-opacity));
}

.focus-within\:text-brown-default:focus-within{
  --tw-text-opacity: 1;
  color: rgba(123, 108, 92, var(--tw-text-opacity));
}

.focus-within\:text-brown-dark:focus-within{
  --tw-text-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-text-opacity));
}

.focus-within\:text-success-light:focus-within{
  --tw-text-opacity: 1;
  color: rgba(145, 224, 156, var(--tw-text-opacity));
}

.focus-within\:text-success-default:focus-within{
  --tw-text-opacity: 1;
  color: rgba(45, 153, 60, var(--tw-text-opacity));
}

.focus-within\:text-success-dark:focus-within{
  --tw-text-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-text-opacity));
}

.focus-within\:text-error-light:focus-within{
  --tw-text-opacity: 1;
  color: rgba(249, 134, 134, var(--tw-text-opacity));
}

.focus-within\:text-error-default:focus-within{
  --tw-text-opacity: 1;
  color: rgba(203, 7, 7, var(--tw-text-opacity));
}

.focus-within\:text-error-dark:focus-within{
  --tw-text-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-text-opacity));
}

.focus-within\:text-navigation-dark:focus-within{
  --tw-text-opacity: 1;
  color: rgba(255, 205, 0, var(--tw-text-opacity));
}

.hover\:text-transparent:hover{
  color: transparent;
}

.hover\:text-current:hover{
  color: currentColor;
}

.hover\:text-black:hover{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.hover\:text-gray-50:hover{
  --tw-text-opacity: 1;
  color: rgba(249, 250, 251, var(--tw-text-opacity));
}

.hover\:text-gray-100:hover{
  --tw-text-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-text-opacity));
}

.hover\:text-gray-200:hover{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-text-opacity));
}

.hover\:text-gray-300:hover{
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}

.hover\:text-gray-400:hover{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

.hover\:text-gray-500:hover{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

.hover\:text-gray-600:hover{
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}

.hover\:text-gray-700:hover{
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

.hover\:text-gray-800:hover{
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-text-opacity));
}

.hover\:text-gray-900:hover{
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}

.hover\:text-red-50:hover{
  --tw-text-opacity: 1;
  color: rgba(254, 242, 242, var(--tw-text-opacity));
}

.hover\:text-red-100:hover{
  --tw-text-opacity: 1;
  color: rgba(254, 226, 226, var(--tw-text-opacity));
}

.hover\:text-red-200:hover{
  --tw-text-opacity: 1;
  color: rgba(254, 202, 202, var(--tw-text-opacity));
}

.hover\:text-red-300:hover{
  --tw-text-opacity: 1;
  color: rgba(252, 165, 165, var(--tw-text-opacity));
}

.hover\:text-red-400:hover{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-text-opacity));
}

.hover\:text-red-500:hover{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}

.hover\:text-red-600:hover{
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, var(--tw-text-opacity));
}

.hover\:text-red-700:hover{
  --tw-text-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-text-opacity));
}

.hover\:text-red-800:hover{
  --tw-text-opacity: 1;
  color: rgba(153, 27, 27, var(--tw-text-opacity));
}

.hover\:text-red-900:hover{
  --tw-text-opacity: 1;
  color: rgba(127, 29, 29, var(--tw-text-opacity));
}

.hover\:text-red-light:hover{
  --tw-text-opacity: 1;
  color: rgba(234, 122, 122, var(--tw-text-opacity));
}

.hover\:text-red-default:hover{
  --tw-text-opacity: 1;
  color: rgba(185, 0, 0, var(--tw-text-opacity));
}

.hover\:text-red-dark:hover{
  --tw-text-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-text-opacity));
}

.hover\:text-yellow-50:hover{
  --tw-text-opacity: 1;
  color: rgba(255, 251, 235, var(--tw-text-opacity));
}

.hover\:text-yellow-100:hover{
  --tw-text-opacity: 1;
  color: rgba(254, 243, 199, var(--tw-text-opacity));
}

.hover\:text-yellow-200:hover{
  --tw-text-opacity: 1;
  color: rgba(253, 230, 138, var(--tw-text-opacity));
}

.hover\:text-yellow-300:hover{
  --tw-text-opacity: 1;
  color: rgba(252, 211, 77, var(--tw-text-opacity));
}

.hover\:text-yellow-400:hover{
  --tw-text-opacity: 1;
  color: rgba(251, 191, 36, var(--tw-text-opacity));
}

.hover\:text-yellow-500:hover{
  --tw-text-opacity: 1;
  color: rgba(245, 158, 11, var(--tw-text-opacity));
}

.hover\:text-yellow-600:hover{
  --tw-text-opacity: 1;
  color: rgba(217, 119, 6, var(--tw-text-opacity));
}

.hover\:text-yellow-700:hover{
  --tw-text-opacity: 1;
  color: rgba(180, 83, 9, var(--tw-text-opacity));
}

.hover\:text-yellow-800:hover{
  --tw-text-opacity: 1;
  color: rgba(146, 64, 14, var(--tw-text-opacity));
}

.hover\:text-yellow-900:hover{
  --tw-text-opacity: 1;
  color: rgba(120, 53, 15, var(--tw-text-opacity));
}

.hover\:text-green-50:hover{
  --tw-text-opacity: 1;
  color: rgba(236, 253, 245, var(--tw-text-opacity));
}

.hover\:text-green-100:hover{
  --tw-text-opacity: 1;
  color: rgba(209, 250, 229, var(--tw-text-opacity));
}

.hover\:text-green-200:hover{
  --tw-text-opacity: 1;
  color: rgba(167, 243, 208, var(--tw-text-opacity));
}

.hover\:text-green-300:hover{
  --tw-text-opacity: 1;
  color: rgba(110, 231, 183, var(--tw-text-opacity));
}

.hover\:text-green-400:hover{
  --tw-text-opacity: 1;
  color: rgba(52, 211, 153, var(--tw-text-opacity));
}

.hover\:text-green-500:hover{
  --tw-text-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-text-opacity));
}

.hover\:text-green-600:hover{
  --tw-text-opacity: 1;
  color: rgba(5, 150, 105, var(--tw-text-opacity));
}

.hover\:text-green-700:hover{
  --tw-text-opacity: 1;
  color: rgba(4, 120, 87, var(--tw-text-opacity));
}

.hover\:text-green-800:hover{
  --tw-text-opacity: 1;
  color: rgba(6, 95, 70, var(--tw-text-opacity));
}

.hover\:text-green-900:hover{
  --tw-text-opacity: 1;
  color: rgba(6, 78, 59, var(--tw-text-opacity));
}

.hover\:text-green-light:hover{
  --tw-text-opacity: 1;
  color: rgba(181, 209, 185, var(--tw-text-opacity));
}

.hover\:text-green-default:hover{
  --tw-text-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-text-opacity));
}

.hover\:text-green-dark:hover{
  --tw-text-opacity: 1;
  color: rgba(28, 37, 30, var(--tw-text-opacity));
}

.hover\:text-blue-50:hover{
  --tw-text-opacity: 1;
  color: rgba(239, 246, 255, var(--tw-text-opacity));
}

.hover\:text-blue-100:hover{
  --tw-text-opacity: 1;
  color: rgba(219, 234, 254, var(--tw-text-opacity));
}

.hover\:text-blue-200:hover{
  --tw-text-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-text-opacity));
}

.hover\:text-blue-300:hover{
  --tw-text-opacity: 1;
  color: rgba(147, 197, 253, var(--tw-text-opacity));
}

.hover\:text-blue-400:hover{
  --tw-text-opacity: 1;
  color: rgba(96, 165, 250, var(--tw-text-opacity));
}

.hover\:text-blue-500:hover{
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-text-opacity));
}

.hover\:text-blue-600:hover{
  --tw-text-opacity: 1;
  color: rgba(37, 99, 235, var(--tw-text-opacity));
}

.hover\:text-blue-700:hover{
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-text-opacity));
}

.hover\:text-blue-800:hover{
  --tw-text-opacity: 1;
  color: rgba(30, 64, 175, var(--tw-text-opacity));
}

.hover\:text-blue-900:hover{
  --tw-text-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-text-opacity));
}

.hover\:text-indigo-50:hover{
  --tw-text-opacity: 1;
  color: rgba(238, 242, 255, var(--tw-text-opacity));
}

.hover\:text-indigo-100:hover{
  --tw-text-opacity: 1;
  color: rgba(224, 231, 255, var(--tw-text-opacity));
}

.hover\:text-indigo-200:hover{
  --tw-text-opacity: 1;
  color: rgba(199, 210, 254, var(--tw-text-opacity));
}

.hover\:text-indigo-300:hover{
  --tw-text-opacity: 1;
  color: rgba(165, 180, 252, var(--tw-text-opacity));
}

.hover\:text-indigo-400:hover{
  --tw-text-opacity: 1;
  color: rgba(129, 140, 248, var(--tw-text-opacity));
}

.hover\:text-indigo-500:hover{
  --tw-text-opacity: 1;
  color: rgba(99, 102, 241, var(--tw-text-opacity));
}

.hover\:text-indigo-600:hover{
  --tw-text-opacity: 1;
  color: rgba(79, 70, 229, var(--tw-text-opacity));
}

.hover\:text-indigo-700:hover{
  --tw-text-opacity: 1;
  color: rgba(67, 56, 202, var(--tw-text-opacity));
}

.hover\:text-indigo-800:hover{
  --tw-text-opacity: 1;
  color: rgba(55, 48, 163, var(--tw-text-opacity));
}

.hover\:text-indigo-900:hover{
  --tw-text-opacity: 1;
  color: rgba(49, 46, 129, var(--tw-text-opacity));
}

.hover\:text-purple-50:hover{
  --tw-text-opacity: 1;
  color: rgba(245, 243, 255, var(--tw-text-opacity));
}

.hover\:text-purple-100:hover{
  --tw-text-opacity: 1;
  color: rgba(237, 233, 254, var(--tw-text-opacity));
}

.hover\:text-purple-200:hover{
  --tw-text-opacity: 1;
  color: rgba(221, 214, 254, var(--tw-text-opacity));
}

.hover\:text-purple-300:hover{
  --tw-text-opacity: 1;
  color: rgba(196, 181, 253, var(--tw-text-opacity));
}

.hover\:text-purple-400:hover{
  --tw-text-opacity: 1;
  color: rgba(167, 139, 250, var(--tw-text-opacity));
}

.hover\:text-purple-500:hover{
  --tw-text-opacity: 1;
  color: rgba(139, 92, 246, var(--tw-text-opacity));
}

.hover\:text-purple-600:hover{
  --tw-text-opacity: 1;
  color: rgba(124, 58, 237, var(--tw-text-opacity));
}

.hover\:text-purple-700:hover{
  --tw-text-opacity: 1;
  color: rgba(109, 40, 217, var(--tw-text-opacity));
}

.hover\:text-purple-800:hover{
  --tw-text-opacity: 1;
  color: rgba(91, 33, 182, var(--tw-text-opacity));
}

.hover\:text-purple-900:hover{
  --tw-text-opacity: 1;
  color: rgba(76, 29, 149, var(--tw-text-opacity));
}

.hover\:text-pink-50:hover{
  --tw-text-opacity: 1;
  color: rgba(253, 242, 248, var(--tw-text-opacity));
}

.hover\:text-pink-100:hover{
  --tw-text-opacity: 1;
  color: rgba(252, 231, 243, var(--tw-text-opacity));
}

.hover\:text-pink-200:hover{
  --tw-text-opacity: 1;
  color: rgba(251, 207, 232, var(--tw-text-opacity));
}

.hover\:text-pink-300:hover{
  --tw-text-opacity: 1;
  color: rgba(249, 168, 212, var(--tw-text-opacity));
}

.hover\:text-pink-400:hover{
  --tw-text-opacity: 1;
  color: rgba(244, 114, 182, var(--tw-text-opacity));
}

.hover\:text-pink-500:hover{
  --tw-text-opacity: 1;
  color: rgba(236, 72, 153, var(--tw-text-opacity));
}

.hover\:text-pink-600:hover{
  --tw-text-opacity: 1;
  color: rgba(219, 39, 119, var(--tw-text-opacity));
}

.hover\:text-pink-700:hover{
  --tw-text-opacity: 1;
  color: rgba(190, 24, 93, var(--tw-text-opacity));
}

.hover\:text-pink-800:hover{
  --tw-text-opacity: 1;
  color: rgba(157, 23, 77, var(--tw-text-opacity));
}

.hover\:text-pink-900:hover{
  --tw-text-opacity: 1;
  color: rgba(131, 24, 67, var(--tw-text-opacity));
}

.hover\:text-brown-light:hover{
  --tw-text-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-text-opacity));
}

.hover\:text-brown-semi:hover{
  --tw-text-opacity: 1;
  color: rgba(222, 214, 202, var(--tw-text-opacity));
}

.hover\:text-brown-default:hover{
  --tw-text-opacity: 1;
  color: rgba(123, 108, 92, var(--tw-text-opacity));
}

.hover\:text-brown-dark:hover{
  --tw-text-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-text-opacity));
}

.hover\:text-success-light:hover{
  --tw-text-opacity: 1;
  color: rgba(145, 224, 156, var(--tw-text-opacity));
}

.hover\:text-success-default:hover{
  --tw-text-opacity: 1;
  color: rgba(45, 153, 60, var(--tw-text-opacity));
}

.hover\:text-success-dark:hover{
  --tw-text-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-text-opacity));
}

.hover\:text-error-light:hover{
  --tw-text-opacity: 1;
  color: rgba(249, 134, 134, var(--tw-text-opacity));
}

.hover\:text-error-default:hover{
  --tw-text-opacity: 1;
  color: rgba(203, 7, 7, var(--tw-text-opacity));
}

.hover\:text-error-dark:hover{
  --tw-text-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-text-opacity));
}

.hover\:text-navigation-dark:hover{
  --tw-text-opacity: 1;
  color: rgba(255, 205, 0, var(--tw-text-opacity));
}

.focus\:text-transparent:focus{
  color: transparent;
}

.focus\:text-current:focus{
  color: currentColor;
}

.focus\:text-black:focus{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.focus\:text-white:focus{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.focus\:text-gray-50:focus{
  --tw-text-opacity: 1;
  color: rgba(249, 250, 251, var(--tw-text-opacity));
}

.focus\:text-gray-100:focus{
  --tw-text-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-text-opacity));
}

.focus\:text-gray-200:focus{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-text-opacity));
}

.focus\:text-gray-300:focus{
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}

.focus\:text-gray-400:focus{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

.focus\:text-gray-500:focus{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

.focus\:text-gray-600:focus{
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}

.focus\:text-gray-700:focus{
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

.focus\:text-gray-800:focus{
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-text-opacity));
}

.focus\:text-gray-900:focus{
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}

.focus\:text-red-50:focus{
  --tw-text-opacity: 1;
  color: rgba(254, 242, 242, var(--tw-text-opacity));
}

.focus\:text-red-100:focus{
  --tw-text-opacity: 1;
  color: rgba(254, 226, 226, var(--tw-text-opacity));
}

.focus\:text-red-200:focus{
  --tw-text-opacity: 1;
  color: rgba(254, 202, 202, var(--tw-text-opacity));
}

.focus\:text-red-300:focus{
  --tw-text-opacity: 1;
  color: rgba(252, 165, 165, var(--tw-text-opacity));
}

.focus\:text-red-400:focus{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-text-opacity));
}

.focus\:text-red-500:focus{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}

.focus\:text-red-600:focus{
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, var(--tw-text-opacity));
}

.focus\:text-red-700:focus{
  --tw-text-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-text-opacity));
}

.focus\:text-red-800:focus{
  --tw-text-opacity: 1;
  color: rgba(153, 27, 27, var(--tw-text-opacity));
}

.focus\:text-red-900:focus{
  --tw-text-opacity: 1;
  color: rgba(127, 29, 29, var(--tw-text-opacity));
}

.focus\:text-red-light:focus{
  --tw-text-opacity: 1;
  color: rgba(234, 122, 122, var(--tw-text-opacity));
}

.focus\:text-red-default:focus{
  --tw-text-opacity: 1;
  color: rgba(185, 0, 0, var(--tw-text-opacity));
}

.focus\:text-red-dark:focus{
  --tw-text-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-text-opacity));
}

.focus\:text-yellow-50:focus{
  --tw-text-opacity: 1;
  color: rgba(255, 251, 235, var(--tw-text-opacity));
}

.focus\:text-yellow-100:focus{
  --tw-text-opacity: 1;
  color: rgba(254, 243, 199, var(--tw-text-opacity));
}

.focus\:text-yellow-200:focus{
  --tw-text-opacity: 1;
  color: rgba(253, 230, 138, var(--tw-text-opacity));
}

.focus\:text-yellow-300:focus{
  --tw-text-opacity: 1;
  color: rgba(252, 211, 77, var(--tw-text-opacity));
}

.focus\:text-yellow-400:focus{
  --tw-text-opacity: 1;
  color: rgba(251, 191, 36, var(--tw-text-opacity));
}

.focus\:text-yellow-500:focus{
  --tw-text-opacity: 1;
  color: rgba(245, 158, 11, var(--tw-text-opacity));
}

.focus\:text-yellow-600:focus{
  --tw-text-opacity: 1;
  color: rgba(217, 119, 6, var(--tw-text-opacity));
}

.focus\:text-yellow-700:focus{
  --tw-text-opacity: 1;
  color: rgba(180, 83, 9, var(--tw-text-opacity));
}

.focus\:text-yellow-800:focus{
  --tw-text-opacity: 1;
  color: rgba(146, 64, 14, var(--tw-text-opacity));
}

.focus\:text-yellow-900:focus{
  --tw-text-opacity: 1;
  color: rgba(120, 53, 15, var(--tw-text-opacity));
}

.focus\:text-green-50:focus{
  --tw-text-opacity: 1;
  color: rgba(236, 253, 245, var(--tw-text-opacity));
}

.focus\:text-green-100:focus{
  --tw-text-opacity: 1;
  color: rgba(209, 250, 229, var(--tw-text-opacity));
}

.focus\:text-green-200:focus{
  --tw-text-opacity: 1;
  color: rgba(167, 243, 208, var(--tw-text-opacity));
}

.focus\:text-green-300:focus{
  --tw-text-opacity: 1;
  color: rgba(110, 231, 183, var(--tw-text-opacity));
}

.focus\:text-green-400:focus{
  --tw-text-opacity: 1;
  color: rgba(52, 211, 153, var(--tw-text-opacity));
}

.focus\:text-green-500:focus{
  --tw-text-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-text-opacity));
}

.focus\:text-green-600:focus{
  --tw-text-opacity: 1;
  color: rgba(5, 150, 105, var(--tw-text-opacity));
}

.focus\:text-green-700:focus{
  --tw-text-opacity: 1;
  color: rgba(4, 120, 87, var(--tw-text-opacity));
}

.focus\:text-green-800:focus{
  --tw-text-opacity: 1;
  color: rgba(6, 95, 70, var(--tw-text-opacity));
}

.focus\:text-green-900:focus{
  --tw-text-opacity: 1;
  color: rgba(6, 78, 59, var(--tw-text-opacity));
}

.focus\:text-green-light:focus{
  --tw-text-opacity: 1;
  color: rgba(181, 209, 185, var(--tw-text-opacity));
}

.focus\:text-green-default:focus{
  --tw-text-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-text-opacity));
}

.focus\:text-green-dark:focus{
  --tw-text-opacity: 1;
  color: rgba(28, 37, 30, var(--tw-text-opacity));
}

.focus\:text-blue-50:focus{
  --tw-text-opacity: 1;
  color: rgba(239, 246, 255, var(--tw-text-opacity));
}

.focus\:text-blue-100:focus{
  --tw-text-opacity: 1;
  color: rgba(219, 234, 254, var(--tw-text-opacity));
}

.focus\:text-blue-200:focus{
  --tw-text-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-text-opacity));
}

.focus\:text-blue-300:focus{
  --tw-text-opacity: 1;
  color: rgba(147, 197, 253, var(--tw-text-opacity));
}

.focus\:text-blue-400:focus{
  --tw-text-opacity: 1;
  color: rgba(96, 165, 250, var(--tw-text-opacity));
}

.focus\:text-blue-500:focus{
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-text-opacity));
}

.focus\:text-blue-600:focus{
  --tw-text-opacity: 1;
  color: rgba(37, 99, 235, var(--tw-text-opacity));
}

.focus\:text-blue-700:focus{
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-text-opacity));
}

.focus\:text-blue-800:focus{
  --tw-text-opacity: 1;
  color: rgba(30, 64, 175, var(--tw-text-opacity));
}

.focus\:text-blue-900:focus{
  --tw-text-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-text-opacity));
}

.focus\:text-indigo-50:focus{
  --tw-text-opacity: 1;
  color: rgba(238, 242, 255, var(--tw-text-opacity));
}

.focus\:text-indigo-100:focus{
  --tw-text-opacity: 1;
  color: rgba(224, 231, 255, var(--tw-text-opacity));
}

.focus\:text-indigo-200:focus{
  --tw-text-opacity: 1;
  color: rgba(199, 210, 254, var(--tw-text-opacity));
}

.focus\:text-indigo-300:focus{
  --tw-text-opacity: 1;
  color: rgba(165, 180, 252, var(--tw-text-opacity));
}

.focus\:text-indigo-400:focus{
  --tw-text-opacity: 1;
  color: rgba(129, 140, 248, var(--tw-text-opacity));
}

.focus\:text-indigo-500:focus{
  --tw-text-opacity: 1;
  color: rgba(99, 102, 241, var(--tw-text-opacity));
}

.focus\:text-indigo-600:focus{
  --tw-text-opacity: 1;
  color: rgba(79, 70, 229, var(--tw-text-opacity));
}

.focus\:text-indigo-700:focus{
  --tw-text-opacity: 1;
  color: rgba(67, 56, 202, var(--tw-text-opacity));
}

.focus\:text-indigo-800:focus{
  --tw-text-opacity: 1;
  color: rgba(55, 48, 163, var(--tw-text-opacity));
}

.focus\:text-indigo-900:focus{
  --tw-text-opacity: 1;
  color: rgba(49, 46, 129, var(--tw-text-opacity));
}

.focus\:text-purple-50:focus{
  --tw-text-opacity: 1;
  color: rgba(245, 243, 255, var(--tw-text-opacity));
}

.focus\:text-purple-100:focus{
  --tw-text-opacity: 1;
  color: rgba(237, 233, 254, var(--tw-text-opacity));
}

.focus\:text-purple-200:focus{
  --tw-text-opacity: 1;
  color: rgba(221, 214, 254, var(--tw-text-opacity));
}

.focus\:text-purple-300:focus{
  --tw-text-opacity: 1;
  color: rgba(196, 181, 253, var(--tw-text-opacity));
}

.focus\:text-purple-400:focus{
  --tw-text-opacity: 1;
  color: rgba(167, 139, 250, var(--tw-text-opacity));
}

.focus\:text-purple-500:focus{
  --tw-text-opacity: 1;
  color: rgba(139, 92, 246, var(--tw-text-opacity));
}

.focus\:text-purple-600:focus{
  --tw-text-opacity: 1;
  color: rgba(124, 58, 237, var(--tw-text-opacity));
}

.focus\:text-purple-700:focus{
  --tw-text-opacity: 1;
  color: rgba(109, 40, 217, var(--tw-text-opacity));
}

.focus\:text-purple-800:focus{
  --tw-text-opacity: 1;
  color: rgba(91, 33, 182, var(--tw-text-opacity));
}

.focus\:text-purple-900:focus{
  --tw-text-opacity: 1;
  color: rgba(76, 29, 149, var(--tw-text-opacity));
}

.focus\:text-pink-50:focus{
  --tw-text-opacity: 1;
  color: rgba(253, 242, 248, var(--tw-text-opacity));
}

.focus\:text-pink-100:focus{
  --tw-text-opacity: 1;
  color: rgba(252, 231, 243, var(--tw-text-opacity));
}

.focus\:text-pink-200:focus{
  --tw-text-opacity: 1;
  color: rgba(251, 207, 232, var(--tw-text-opacity));
}

.focus\:text-pink-300:focus{
  --tw-text-opacity: 1;
  color: rgba(249, 168, 212, var(--tw-text-opacity));
}

.focus\:text-pink-400:focus{
  --tw-text-opacity: 1;
  color: rgba(244, 114, 182, var(--tw-text-opacity));
}

.focus\:text-pink-500:focus{
  --tw-text-opacity: 1;
  color: rgba(236, 72, 153, var(--tw-text-opacity));
}

.focus\:text-pink-600:focus{
  --tw-text-opacity: 1;
  color: rgba(219, 39, 119, var(--tw-text-opacity));
}

.focus\:text-pink-700:focus{
  --tw-text-opacity: 1;
  color: rgba(190, 24, 93, var(--tw-text-opacity));
}

.focus\:text-pink-800:focus{
  --tw-text-opacity: 1;
  color: rgba(157, 23, 77, var(--tw-text-opacity));
}

.focus\:text-pink-900:focus{
  --tw-text-opacity: 1;
  color: rgba(131, 24, 67, var(--tw-text-opacity));
}

.focus\:text-brown-light:focus{
  --tw-text-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-text-opacity));
}

.focus\:text-brown-semi:focus{
  --tw-text-opacity: 1;
  color: rgba(222, 214, 202, var(--tw-text-opacity));
}

.focus\:text-brown-default:focus{
  --tw-text-opacity: 1;
  color: rgba(123, 108, 92, var(--tw-text-opacity));
}

.focus\:text-brown-dark:focus{
  --tw-text-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-text-opacity));
}

.focus\:text-success-light:focus{
  --tw-text-opacity: 1;
  color: rgba(145, 224, 156, var(--tw-text-opacity));
}

.focus\:text-success-default:focus{
  --tw-text-opacity: 1;
  color: rgba(45, 153, 60, var(--tw-text-opacity));
}

.focus\:text-success-dark:focus{
  --tw-text-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-text-opacity));
}

.focus\:text-error-light:focus{
  --tw-text-opacity: 1;
  color: rgba(249, 134, 134, var(--tw-text-opacity));
}

.focus\:text-error-default:focus{
  --tw-text-opacity: 1;
  color: rgba(203, 7, 7, var(--tw-text-opacity));
}

.focus\:text-error-dark:focus{
  --tw-text-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-text-opacity));
}

.focus\:text-navigation-dark:focus{
  --tw-text-opacity: 1;
  color: rgba(255, 205, 0, var(--tw-text-opacity));
}

.text-opacity-0{
  --tw-text-opacity: 0;
}

.text-opacity-5{
  --tw-text-opacity: 0.05;
}

.text-opacity-10{
  --tw-text-opacity: 0.1;
}

.text-opacity-20{
  --tw-text-opacity: 0.2;
}

.text-opacity-25{
  --tw-text-opacity: 0.25;
}

.text-opacity-30{
  --tw-text-opacity: 0.3;
}

.text-opacity-40{
  --tw-text-opacity: 0.4;
}

.text-opacity-50{
  --tw-text-opacity: 0.5;
}

.text-opacity-60{
  --tw-text-opacity: 0.6;
}

.text-opacity-70{
  --tw-text-opacity: 0.7;
}

.text-opacity-75{
  --tw-text-opacity: 0.75;
}

.text-opacity-80{
  --tw-text-opacity: 0.8;
}

.text-opacity-90{
  --tw-text-opacity: 0.9;
}

.text-opacity-95{
  --tw-text-opacity: 0.95;
}

.text-opacity-100{
  --tw-text-opacity: 1;
}

.group:hover .group-hover\:text-opacity-0{
  --tw-text-opacity: 0;
}

.group:hover .group-hover\:text-opacity-5{
  --tw-text-opacity: 0.05;
}

.group:hover .group-hover\:text-opacity-10{
  --tw-text-opacity: 0.1;
}

.group:hover .group-hover\:text-opacity-20{
  --tw-text-opacity: 0.2;
}

.group:hover .group-hover\:text-opacity-25{
  --tw-text-opacity: 0.25;
}

.group:hover .group-hover\:text-opacity-30{
  --tw-text-opacity: 0.3;
}

.group:hover .group-hover\:text-opacity-40{
  --tw-text-opacity: 0.4;
}

.group:hover .group-hover\:text-opacity-50{
  --tw-text-opacity: 0.5;
}

.group:hover .group-hover\:text-opacity-60{
  --tw-text-opacity: 0.6;
}

.group:hover .group-hover\:text-opacity-70{
  --tw-text-opacity: 0.7;
}

.group:hover .group-hover\:text-opacity-75{
  --tw-text-opacity: 0.75;
}

.group:hover .group-hover\:text-opacity-80{
  --tw-text-opacity: 0.8;
}

.group:hover .group-hover\:text-opacity-90{
  --tw-text-opacity: 0.9;
}

.group:hover .group-hover\:text-opacity-95{
  --tw-text-opacity: 0.95;
}

.group:hover .group-hover\:text-opacity-100{
  --tw-text-opacity: 1;
}

.focus-within\:text-opacity-0:focus-within{
  --tw-text-opacity: 0;
}

.focus-within\:text-opacity-5:focus-within{
  --tw-text-opacity: 0.05;
}

.focus-within\:text-opacity-10:focus-within{
  --tw-text-opacity: 0.1;
}

.focus-within\:text-opacity-20:focus-within{
  --tw-text-opacity: 0.2;
}

.focus-within\:text-opacity-25:focus-within{
  --tw-text-opacity: 0.25;
}

.focus-within\:text-opacity-30:focus-within{
  --tw-text-opacity: 0.3;
}

.focus-within\:text-opacity-40:focus-within{
  --tw-text-opacity: 0.4;
}

.focus-within\:text-opacity-50:focus-within{
  --tw-text-opacity: 0.5;
}

.focus-within\:text-opacity-60:focus-within{
  --tw-text-opacity: 0.6;
}

.focus-within\:text-opacity-70:focus-within{
  --tw-text-opacity: 0.7;
}

.focus-within\:text-opacity-75:focus-within{
  --tw-text-opacity: 0.75;
}

.focus-within\:text-opacity-80:focus-within{
  --tw-text-opacity: 0.8;
}

.focus-within\:text-opacity-90:focus-within{
  --tw-text-opacity: 0.9;
}

.focus-within\:text-opacity-95:focus-within{
  --tw-text-opacity: 0.95;
}

.focus-within\:text-opacity-100:focus-within{
  --tw-text-opacity: 1;
}

.hover\:text-opacity-0:hover{
  --tw-text-opacity: 0;
}

.hover\:text-opacity-5:hover{
  --tw-text-opacity: 0.05;
}

.hover\:text-opacity-10:hover{
  --tw-text-opacity: 0.1;
}

.hover\:text-opacity-20:hover{
  --tw-text-opacity: 0.2;
}

.hover\:text-opacity-25:hover{
  --tw-text-opacity: 0.25;
}

.hover\:text-opacity-30:hover{
  --tw-text-opacity: 0.3;
}

.hover\:text-opacity-40:hover{
  --tw-text-opacity: 0.4;
}

.hover\:text-opacity-50:hover{
  --tw-text-opacity: 0.5;
}

.hover\:text-opacity-60:hover{
  --tw-text-opacity: 0.6;
}

.hover\:text-opacity-70:hover{
  --tw-text-opacity: 0.7;
}

.hover\:text-opacity-75:hover{
  --tw-text-opacity: 0.75;
}

.hover\:text-opacity-80:hover{
  --tw-text-opacity: 0.8;
}

.hover\:text-opacity-90:hover{
  --tw-text-opacity: 0.9;
}

.hover\:text-opacity-95:hover{
  --tw-text-opacity: 0.95;
}

.hover\:text-opacity-100:hover{
  --tw-text-opacity: 1;
}

.focus\:text-opacity-0:focus{
  --tw-text-opacity: 0;
}

.focus\:text-opacity-5:focus{
  --tw-text-opacity: 0.05;
}

.focus\:text-opacity-10:focus{
  --tw-text-opacity: 0.1;
}

.focus\:text-opacity-20:focus{
  --tw-text-opacity: 0.2;
}

.focus\:text-opacity-25:focus{
  --tw-text-opacity: 0.25;
}

.focus\:text-opacity-30:focus{
  --tw-text-opacity: 0.3;
}

.focus\:text-opacity-40:focus{
  --tw-text-opacity: 0.4;
}

.focus\:text-opacity-50:focus{
  --tw-text-opacity: 0.5;
}

.focus\:text-opacity-60:focus{
  --tw-text-opacity: 0.6;
}

.focus\:text-opacity-70:focus{
  --tw-text-opacity: 0.7;
}

.focus\:text-opacity-75:focus{
  --tw-text-opacity: 0.75;
}

.focus\:text-opacity-80:focus{
  --tw-text-opacity: 0.8;
}

.focus\:text-opacity-90:focus{
  --tw-text-opacity: 0.9;
}

.focus\:text-opacity-95:focus{
  --tw-text-opacity: 0.95;
}

.focus\:text-opacity-100:focus{
  --tw-text-opacity: 1;
}

.underline{
  text-decoration: underline;
}

.line-through{
  text-decoration: line-through;
}

.no-underline{
  text-decoration: none;
}

.group:hover .group-hover\:underline{
  text-decoration: underline;
}

.group:hover .group-hover\:line-through{
  text-decoration: line-through;
}

.group:hover .group-hover\:no-underline{
  text-decoration: none;
}

.focus-within\:underline:focus-within{
  text-decoration: underline;
}

.focus-within\:line-through:focus-within{
  text-decoration: line-through;
}

.focus-within\:no-underline:focus-within{
  text-decoration: none;
}

.hover\:underline:hover{
  text-decoration: underline;
}

.hover\:line-through:hover{
  text-decoration: line-through;
}

.hover\:no-underline:hover{
  text-decoration: none;
}

.focus\:underline:focus{
  text-decoration: underline;
}

.focus\:line-through:focus{
  text-decoration: line-through;
}

.focus\:no-underline:focus{
  text-decoration: none;
}

.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subpixel-antialiased{
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

.placeholder-transparent::-moz-placeholder{
  color: transparent;
}

.placeholder-transparent:-ms-input-placeholder{
  color: transparent;
}

.placeholder-transparent::placeholder{
  color: transparent;
}

.placeholder-current::-moz-placeholder{
  color: currentColor;
}

.placeholder-current:-ms-input-placeholder{
  color: currentColor;
}

.placeholder-current::placeholder{
  color: currentColor;
}

.placeholder-black::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
}

.placeholder-black:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
}

.placeholder-black::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
}

.placeholder-white::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}

.placeholder-white:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}

.placeholder-white::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}

.placeholder-gray-50::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
}

.placeholder-gray-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
}

.placeholder-gray-50::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
}

.placeholder-gray-100::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
}

.placeholder-gray-100:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
}

.placeholder-gray-100::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
}

.placeholder-gray-200::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
}

.placeholder-gray-200:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
}

.placeholder-gray-200::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
}

.placeholder-gray-300::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
}

.placeholder-gray-300:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
}

.placeholder-gray-300::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
}

.placeholder-gray-400::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
}

.placeholder-gray-400:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
}

.placeholder-gray-400::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
}

.placeholder-gray-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
}

.placeholder-gray-500:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
}

.placeholder-gray-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
}

.placeholder-gray-600::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
}

.placeholder-gray-600:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
}

.placeholder-gray-600::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
}

.placeholder-gray-700::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
}

.placeholder-gray-700:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
}

.placeholder-gray-700::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
}

.placeholder-gray-800::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
}

.placeholder-gray-800:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
}

.placeholder-gray-800::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
}

.placeholder-gray-900::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
}

.placeholder-gray-900:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
}

.placeholder-gray-900::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
}

.placeholder-red-50::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
}

.placeholder-red-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
}

.placeholder-red-50::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
}

.placeholder-red-100::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
}

.placeholder-red-100:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
}

.placeholder-red-100::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
}

.placeholder-red-200::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
}

.placeholder-red-200:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
}

.placeholder-red-200::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
}

.placeholder-red-300::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
}

.placeholder-red-300:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
}

.placeholder-red-300::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
}

.placeholder-red-400::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
}

.placeholder-red-400:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
}

.placeholder-red-400::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
}

.placeholder-red-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
}

.placeholder-red-500:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
}

.placeholder-red-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
}

.placeholder-red-600::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
}

.placeholder-red-600:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
}

.placeholder-red-600::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
}

.placeholder-red-700::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
}

.placeholder-red-700:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
}

.placeholder-red-700::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
}

.placeholder-red-800::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
}

.placeholder-red-800:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
}

.placeholder-red-800::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
}

.placeholder-red-900::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
}

.placeholder-red-900:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
}

.placeholder-red-900::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
}

.placeholder-red-light::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
}

.placeholder-red-light:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
}

.placeholder-red-light::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
}

.placeholder-red-default::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
}

.placeholder-red-default:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
}

.placeholder-red-default::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
}

.placeholder-red-dark::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
}

.placeholder-red-dark:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
}

.placeholder-red-dark::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
}

.placeholder-yellow-50::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
}

.placeholder-yellow-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
}

.placeholder-yellow-50::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
}

.placeholder-yellow-100::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
}

.placeholder-yellow-100:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
}

.placeholder-yellow-100::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
}

.placeholder-yellow-200::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
}

.placeholder-yellow-200:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
}

.placeholder-yellow-200::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
}

.placeholder-yellow-300::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
}

.placeholder-yellow-300:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
}

.placeholder-yellow-300::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
}

.placeholder-yellow-400::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
}

.placeholder-yellow-400:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
}

.placeholder-yellow-400::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
}

.placeholder-yellow-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
}

.placeholder-yellow-500:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
}

.placeholder-yellow-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
}

.placeholder-yellow-600::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
}

.placeholder-yellow-600:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
}

.placeholder-yellow-600::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
}

.placeholder-yellow-700::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
}

.placeholder-yellow-700:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
}

.placeholder-yellow-700::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
}

.placeholder-yellow-800::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
}

.placeholder-yellow-800:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
}

.placeholder-yellow-800::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
}

.placeholder-yellow-900::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
}

.placeholder-yellow-900:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
}

.placeholder-yellow-900::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
}

.placeholder-green-50::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
}

.placeholder-green-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
}

.placeholder-green-50::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
}

.placeholder-green-100::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
}

.placeholder-green-100:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
}

.placeholder-green-100::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
}

.placeholder-green-200::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
}

.placeholder-green-200:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
}

.placeholder-green-200::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
}

.placeholder-green-300::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
}

.placeholder-green-300:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
}

.placeholder-green-300::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
}

.placeholder-green-400::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
}

.placeholder-green-400:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
}

.placeholder-green-400::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
}

.placeholder-green-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
}

.placeholder-green-500:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
}

.placeholder-green-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
}

.placeholder-green-600::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
}

.placeholder-green-600:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
}

.placeholder-green-600::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
}

.placeholder-green-700::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
}

.placeholder-green-700:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
}

.placeholder-green-700::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
}

.placeholder-green-800::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
}

.placeholder-green-800:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
}

.placeholder-green-800::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
}

.placeholder-green-900::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
}

.placeholder-green-900:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
}

.placeholder-green-900::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
}

.placeholder-green-light::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
}

.placeholder-green-light:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
}

.placeholder-green-light::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
}

.placeholder-green-default::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
}

.placeholder-green-default:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
}

.placeholder-green-default::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
}

.placeholder-green-dark::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
}

.placeholder-green-dark:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
}

.placeholder-green-dark::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
}

.placeholder-blue-50::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
}

.placeholder-blue-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
}

.placeholder-blue-50::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
}

.placeholder-blue-100::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
}

.placeholder-blue-100:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
}

.placeholder-blue-100::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
}

.placeholder-blue-200::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
}

.placeholder-blue-200:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
}

.placeholder-blue-200::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
}

.placeholder-blue-300::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
}

.placeholder-blue-300:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
}

.placeholder-blue-300::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
}

.placeholder-blue-400::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
}

.placeholder-blue-400:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
}

.placeholder-blue-400::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
}

.placeholder-blue-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
}

.placeholder-blue-500:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
}

.placeholder-blue-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
}

.placeholder-blue-600::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
}

.placeholder-blue-600:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
}

.placeholder-blue-600::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
}

.placeholder-blue-700::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
}

.placeholder-blue-700:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
}

.placeholder-blue-700::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
}

.placeholder-blue-800::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
}

.placeholder-blue-800:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
}

.placeholder-blue-800::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
}

.placeholder-blue-900::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
}

.placeholder-blue-900:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
}

.placeholder-blue-900::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
}

.placeholder-indigo-50::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
}

.placeholder-indigo-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
}

.placeholder-indigo-50::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
}

.placeholder-indigo-100::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
}

.placeholder-indigo-100:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
}

.placeholder-indigo-100::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
}

.placeholder-indigo-200::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
}

.placeholder-indigo-200:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
}

.placeholder-indigo-200::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
}

.placeholder-indigo-300::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
}

.placeholder-indigo-300:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
}

.placeholder-indigo-300::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
}

.placeholder-indigo-400::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
}

.placeholder-indigo-400:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
}

.placeholder-indigo-400::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
}

.placeholder-indigo-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
}

.placeholder-indigo-500:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
}

.placeholder-indigo-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
}

.placeholder-indigo-600::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
}

.placeholder-indigo-600:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
}

.placeholder-indigo-600::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
}

.placeholder-indigo-700::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
}

.placeholder-indigo-700:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
}

.placeholder-indigo-700::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
}

.placeholder-indigo-800::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
}

.placeholder-indigo-800:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
}

.placeholder-indigo-800::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
}

.placeholder-indigo-900::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
}

.placeholder-indigo-900:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
}

.placeholder-indigo-900::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
}

.placeholder-purple-50::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
}

.placeholder-purple-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
}

.placeholder-purple-50::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
}

.placeholder-purple-100::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
}

.placeholder-purple-100:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
}

.placeholder-purple-100::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
}

.placeholder-purple-200::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
}

.placeholder-purple-200:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
}

.placeholder-purple-200::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
}

.placeholder-purple-300::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
}

.placeholder-purple-300:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
}

.placeholder-purple-300::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
}

.placeholder-purple-400::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
}

.placeholder-purple-400:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
}

.placeholder-purple-400::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
}

.placeholder-purple-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
}

.placeholder-purple-500:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
}

.placeholder-purple-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
}

.placeholder-purple-600::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
}

.placeholder-purple-600:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
}

.placeholder-purple-600::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
}

.placeholder-purple-700::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
}

.placeholder-purple-700:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
}

.placeholder-purple-700::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
}

.placeholder-purple-800::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
}

.placeholder-purple-800:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
}

.placeholder-purple-800::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
}

.placeholder-purple-900::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
}

.placeholder-purple-900:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
}

.placeholder-purple-900::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
}

.placeholder-pink-50::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
}

.placeholder-pink-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
}

.placeholder-pink-50::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
}

.placeholder-pink-100::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
}

.placeholder-pink-100:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
}

.placeholder-pink-100::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
}

.placeholder-pink-200::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
}

.placeholder-pink-200:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
}

.placeholder-pink-200::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
}

.placeholder-pink-300::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
}

.placeholder-pink-300:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
}

.placeholder-pink-300::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
}

.placeholder-pink-400::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
}

.placeholder-pink-400:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
}

.placeholder-pink-400::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
}

.placeholder-pink-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
}

.placeholder-pink-500:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
}

.placeholder-pink-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
}

.placeholder-pink-600::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
}

.placeholder-pink-600:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
}

.placeholder-pink-600::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
}

.placeholder-pink-700::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
}

.placeholder-pink-700:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
}

.placeholder-pink-700::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
}

.placeholder-pink-800::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
}

.placeholder-pink-800:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
}

.placeholder-pink-800::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
}

.placeholder-pink-900::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
}

.placeholder-pink-900:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
}

.placeholder-pink-900::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
}

.placeholder-brown-light::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
}

.placeholder-brown-light:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
}

.placeholder-brown-light::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
}

.placeholder-brown-semi::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
}

.placeholder-brown-semi:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
}

.placeholder-brown-semi::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
}

.placeholder-brown-default::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
}

.placeholder-brown-default:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
}

.placeholder-brown-default::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
}

.placeholder-brown-dark::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
}

.placeholder-brown-dark:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
}

.placeholder-brown-dark::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
}

.placeholder-success-light::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
}

.placeholder-success-light:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
}

.placeholder-success-light::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
}

.placeholder-success-default::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
}

.placeholder-success-default:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
}

.placeholder-success-default::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
}

.placeholder-success-dark::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
}

.placeholder-success-dark:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
}

.placeholder-success-dark::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
}

.placeholder-error-light::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
}

.placeholder-error-light:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
}

.placeholder-error-light::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
}

.placeholder-error-default::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
}

.placeholder-error-default:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
}

.placeholder-error-default::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
}

.placeholder-error-dark::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
}

.placeholder-error-dark:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
}

.placeholder-error-dark::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
}

.placeholder-navigation-dark::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
}

.placeholder-navigation-dark:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
}

.placeholder-navigation-dark::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-transparent:focus::-moz-placeholder{
  color: transparent;
}

.focus\:placeholder-transparent:focus:-ms-input-placeholder{
  color: transparent;
}

.focus\:placeholder-transparent:focus::placeholder{
  color: transparent;
}

.focus\:placeholder-current:focus::-moz-placeholder{
  color: currentColor;
}

.focus\:placeholder-current:focus:-ms-input-placeholder{
  color: currentColor;
}

.focus\:placeholder-current:focus::placeholder{
  color: currentColor;
}

.focus\:placeholder-black:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-black:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-black:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-white:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-white:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-white:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-50:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-100:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-100:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-100:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-200:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-200:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-200:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-300:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-300:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-300:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-400:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-400:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-400:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-500:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-500:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-500:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-600:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-600:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-600:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-700:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-700:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-700:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-800:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-800:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-800:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-900:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-900:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
}

.focus\:placeholder-gray-900:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-50:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-100:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-100:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-100:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-200:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-200:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-200:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-300:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-300:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-300:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-400:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-400:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-400:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-500:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-500:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-500:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-600:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-600:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-600:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-700:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-700:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-700:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-800:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-800:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-800:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-900:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-900:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-900:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-light:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-light:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-light:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-default:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-default:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-default:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-dark:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-dark:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-red-dark:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-50:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-100:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-100:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-100:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-200:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-200:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-200:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-300:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-300:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-300:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-400:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-400:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-400:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-500:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-500:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-500:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-600:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-600:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-600:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-700:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-700:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-700:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-800:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-800:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-800:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-900:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-900:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
}

.focus\:placeholder-yellow-900:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-50:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-100:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-100:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-100:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-200:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-200:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-200:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-300:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-300:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-300:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-400:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-400:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-400:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-500:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-500:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-500:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-600:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-600:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-600:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-700:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-700:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-700:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-800:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-800:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-800:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-900:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-900:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-900:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-light:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-light:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-light:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-default:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-default:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-default:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-dark:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-dark:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
}

.focus\:placeholder-green-dark:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-50:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-100:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-100:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-100:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-200:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-200:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-200:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-300:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-300:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-300:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-400:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-400:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-400:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-500:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-500:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-500:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-600:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-600:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-600:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-700:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-700:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-700:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-800:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-800:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-800:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-900:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-900:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
}

.focus\:placeholder-blue-900:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-50:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-100:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-100:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-100:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-200:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-200:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-200:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-300:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-300:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-300:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-400:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-400:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-400:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-500:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-500:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-500:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-600:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-600:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-600:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-700:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-700:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-700:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-800:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-800:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-800:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-900:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-900:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
}

.focus\:placeholder-indigo-900:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-50:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-100:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-100:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-100:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-200:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-200:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-200:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-300:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-300:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-300:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-400:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-400:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-400:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-500:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-500:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-500:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-600:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-600:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-600:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-700:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-700:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-700:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-800:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-800:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-800:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-900:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-900:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
}

.focus\:placeholder-purple-900:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-50:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-100:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-100:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-100:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-200:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-200:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-200:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-300:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-300:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-300:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-400:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-400:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-400:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-500:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-500:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-500:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-600:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-600:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-600:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-700:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-700:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-700:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-800:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-800:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-800:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-900:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-900:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
}

.focus\:placeholder-pink-900:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
}

.focus\:placeholder-brown-light:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
}

.focus\:placeholder-brown-light:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
}

.focus\:placeholder-brown-light:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
}

.focus\:placeholder-brown-semi:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
}

.focus\:placeholder-brown-semi:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
}

.focus\:placeholder-brown-semi:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
}

.focus\:placeholder-brown-default:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
}

.focus\:placeholder-brown-default:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
}

.focus\:placeholder-brown-default:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
}

.focus\:placeholder-brown-dark:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
}

.focus\:placeholder-brown-dark:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
}

.focus\:placeholder-brown-dark:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
}

.focus\:placeholder-success-light:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
}

.focus\:placeholder-success-light:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
}

.focus\:placeholder-success-light:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
}

.focus\:placeholder-success-default:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
}

.focus\:placeholder-success-default:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
}

.focus\:placeholder-success-default:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
}

.focus\:placeholder-success-dark:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
}

.focus\:placeholder-success-dark:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
}

.focus\:placeholder-success-dark:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
}

.focus\:placeholder-error-light:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
}

.focus\:placeholder-error-light:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
}

.focus\:placeholder-error-light:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
}

.focus\:placeholder-error-default:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
}

.focus\:placeholder-error-default:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
}

.focus\:placeholder-error-default:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
}

.focus\:placeholder-error-dark:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-error-dark:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-error-dark:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-navigation-dark:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-navigation-dark:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
}

.focus\:placeholder-navigation-dark:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
}

.placeholder-opacity-0::-moz-placeholder{
  --tw-placeholder-opacity: 0;
}

.placeholder-opacity-0:-ms-input-placeholder{
  --tw-placeholder-opacity: 0;
}

.placeholder-opacity-0::placeholder{
  --tw-placeholder-opacity: 0;
}

.placeholder-opacity-5::-moz-placeholder{
  --tw-placeholder-opacity: 0.05;
}

.placeholder-opacity-5:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.05;
}

.placeholder-opacity-5::placeholder{
  --tw-placeholder-opacity: 0.05;
}

.placeholder-opacity-10::-moz-placeholder{
  --tw-placeholder-opacity: 0.1;
}

.placeholder-opacity-10:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.1;
}

.placeholder-opacity-10::placeholder{
  --tw-placeholder-opacity: 0.1;
}

.placeholder-opacity-20::-moz-placeholder{
  --tw-placeholder-opacity: 0.2;
}

.placeholder-opacity-20:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.2;
}

.placeholder-opacity-20::placeholder{
  --tw-placeholder-opacity: 0.2;
}

.placeholder-opacity-25::-moz-placeholder{
  --tw-placeholder-opacity: 0.25;
}

.placeholder-opacity-25:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.25;
}

.placeholder-opacity-25::placeholder{
  --tw-placeholder-opacity: 0.25;
}

.placeholder-opacity-30::-moz-placeholder{
  --tw-placeholder-opacity: 0.3;
}

.placeholder-opacity-30:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.3;
}

.placeholder-opacity-30::placeholder{
  --tw-placeholder-opacity: 0.3;
}

.placeholder-opacity-40::-moz-placeholder{
  --tw-placeholder-opacity: 0.4;
}

.placeholder-opacity-40:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.4;
}

.placeholder-opacity-40::placeholder{
  --tw-placeholder-opacity: 0.4;
}

.placeholder-opacity-50::-moz-placeholder{
  --tw-placeholder-opacity: 0.5;
}

.placeholder-opacity-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.5;
}

.placeholder-opacity-50::placeholder{
  --tw-placeholder-opacity: 0.5;
}

.placeholder-opacity-60::-moz-placeholder{
  --tw-placeholder-opacity: 0.6;
}

.placeholder-opacity-60:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.6;
}

.placeholder-opacity-60::placeholder{
  --tw-placeholder-opacity: 0.6;
}

.placeholder-opacity-70::-moz-placeholder{
  --tw-placeholder-opacity: 0.7;
}

.placeholder-opacity-70:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.7;
}

.placeholder-opacity-70::placeholder{
  --tw-placeholder-opacity: 0.7;
}

.placeholder-opacity-75::-moz-placeholder{
  --tw-placeholder-opacity: 0.75;
}

.placeholder-opacity-75:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.75;
}

.placeholder-opacity-75::placeholder{
  --tw-placeholder-opacity: 0.75;
}

.placeholder-opacity-80::-moz-placeholder{
  --tw-placeholder-opacity: 0.8;
}

.placeholder-opacity-80:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.8;
}

.placeholder-opacity-80::placeholder{
  --tw-placeholder-opacity: 0.8;
}

.placeholder-opacity-90::-moz-placeholder{
  --tw-placeholder-opacity: 0.9;
}

.placeholder-opacity-90:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.9;
}

.placeholder-opacity-90::placeholder{
  --tw-placeholder-opacity: 0.9;
}

.placeholder-opacity-95::-moz-placeholder{
  --tw-placeholder-opacity: 0.95;
}

.placeholder-opacity-95:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.95;
}

.placeholder-opacity-95::placeholder{
  --tw-placeholder-opacity: 0.95;
}

.placeholder-opacity-100::-moz-placeholder{
  --tw-placeholder-opacity: 1;
}

.placeholder-opacity-100:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
}

.placeholder-opacity-100::placeholder{
  --tw-placeholder-opacity: 1;
}

.focus\:placeholder-opacity-0:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0;
}

.focus\:placeholder-opacity-0:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0;
}

.focus\:placeholder-opacity-0:focus::placeholder{
  --tw-placeholder-opacity: 0;
}

.focus\:placeholder-opacity-5:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.05;
}

.focus\:placeholder-opacity-5:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.05;
}

.focus\:placeholder-opacity-5:focus::placeholder{
  --tw-placeholder-opacity: 0.05;
}

.focus\:placeholder-opacity-10:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.1;
}

.focus\:placeholder-opacity-10:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.1;
}

.focus\:placeholder-opacity-10:focus::placeholder{
  --tw-placeholder-opacity: 0.1;
}

.focus\:placeholder-opacity-20:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.2;
}

.focus\:placeholder-opacity-20:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.2;
}

.focus\:placeholder-opacity-20:focus::placeholder{
  --tw-placeholder-opacity: 0.2;
}

.focus\:placeholder-opacity-25:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.25;
}

.focus\:placeholder-opacity-25:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.25;
}

.focus\:placeholder-opacity-25:focus::placeholder{
  --tw-placeholder-opacity: 0.25;
}

.focus\:placeholder-opacity-30:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.3;
}

.focus\:placeholder-opacity-30:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.3;
}

.focus\:placeholder-opacity-30:focus::placeholder{
  --tw-placeholder-opacity: 0.3;
}

.focus\:placeholder-opacity-40:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.4;
}

.focus\:placeholder-opacity-40:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.4;
}

.focus\:placeholder-opacity-40:focus::placeholder{
  --tw-placeholder-opacity: 0.4;
}

.focus\:placeholder-opacity-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.5;
}

.focus\:placeholder-opacity-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.5;
}

.focus\:placeholder-opacity-50:focus::placeholder{
  --tw-placeholder-opacity: 0.5;
}

.focus\:placeholder-opacity-60:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.6;
}

.focus\:placeholder-opacity-60:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.6;
}

.focus\:placeholder-opacity-60:focus::placeholder{
  --tw-placeholder-opacity: 0.6;
}

.focus\:placeholder-opacity-70:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.7;
}

.focus\:placeholder-opacity-70:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.7;
}

.focus\:placeholder-opacity-70:focus::placeholder{
  --tw-placeholder-opacity: 0.7;
}

.focus\:placeholder-opacity-75:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.75;
}

.focus\:placeholder-opacity-75:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.75;
}

.focus\:placeholder-opacity-75:focus::placeholder{
  --tw-placeholder-opacity: 0.75;
}

.focus\:placeholder-opacity-80:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.8;
}

.focus\:placeholder-opacity-80:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.8;
}

.focus\:placeholder-opacity-80:focus::placeholder{
  --tw-placeholder-opacity: 0.8;
}

.focus\:placeholder-opacity-90:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.9;
}

.focus\:placeholder-opacity-90:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.9;
}

.focus\:placeholder-opacity-90:focus::placeholder{
  --tw-placeholder-opacity: 0.9;
}

.focus\:placeholder-opacity-95:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.95;
}

.focus\:placeholder-opacity-95:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.95;
}

.focus\:placeholder-opacity-95:focus::placeholder{
  --tw-placeholder-opacity: 0.95;
}

.focus\:placeholder-opacity-100:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
}

.focus\:placeholder-opacity-100:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1;
}

.focus\:placeholder-opacity-100:focus::placeholder{
  --tw-placeholder-opacity: 1;
}

.opacity-0{
  opacity: 0;
}

.opacity-5{
  opacity: 0.05;
}

.opacity-10{
  opacity: 0.1;
}

.opacity-20{
  opacity: 0.2;
}

.opacity-25{
  opacity: 0.25;
}

.opacity-30{
  opacity: 0.3;
}

.opacity-40{
  opacity: 0.4;
}

.opacity-50{
  opacity: 0.5;
}

.opacity-60{
  opacity: 0.6;
}

.opacity-70{
  opacity: 0.7;
}

.opacity-75{
  opacity: 0.75;
}

.opacity-80{
  opacity: 0.8;
}

.opacity-90{
  opacity: 0.9;
}

.opacity-95{
  opacity: 0.95;
}

.opacity-100{
  opacity: 1;
}

.group:hover .group-hover\:opacity-0{
  opacity: 0;
}

.group:hover .group-hover\:opacity-5{
  opacity: 0.05;
}

.group:hover .group-hover\:opacity-10{
  opacity: 0.1;
}

.group:hover .group-hover\:opacity-20{
  opacity: 0.2;
}

.group:hover .group-hover\:opacity-25{
  opacity: 0.25;
}

.group:hover .group-hover\:opacity-30{
  opacity: 0.3;
}

.group:hover .group-hover\:opacity-40{
  opacity: 0.4;
}

.group:hover .group-hover\:opacity-50{
  opacity: 0.5;
}

.group:hover .group-hover\:opacity-60{
  opacity: 0.6;
}

.group:hover .group-hover\:opacity-70{
  opacity: 0.7;
}

.group:hover .group-hover\:opacity-75{
  opacity: 0.75;
}

.group:hover .group-hover\:opacity-80{
  opacity: 0.8;
}

.group:hover .group-hover\:opacity-90{
  opacity: 0.9;
}

.group:hover .group-hover\:opacity-95{
  opacity: 0.95;
}

.group:hover .group-hover\:opacity-100{
  opacity: 1;
}

.focus-within\:opacity-0:focus-within{
  opacity: 0;
}

.focus-within\:opacity-5:focus-within{
  opacity: 0.05;
}

.focus-within\:opacity-10:focus-within{
  opacity: 0.1;
}

.focus-within\:opacity-20:focus-within{
  opacity: 0.2;
}

.focus-within\:opacity-25:focus-within{
  opacity: 0.25;
}

.focus-within\:opacity-30:focus-within{
  opacity: 0.3;
}

.focus-within\:opacity-40:focus-within{
  opacity: 0.4;
}

.focus-within\:opacity-50:focus-within{
  opacity: 0.5;
}

.focus-within\:opacity-60:focus-within{
  opacity: 0.6;
}

.focus-within\:opacity-70:focus-within{
  opacity: 0.7;
}

.focus-within\:opacity-75:focus-within{
  opacity: 0.75;
}

.focus-within\:opacity-80:focus-within{
  opacity: 0.8;
}

.focus-within\:opacity-90:focus-within{
  opacity: 0.9;
}

.focus-within\:opacity-95:focus-within{
  opacity: 0.95;
}

.focus-within\:opacity-100:focus-within{
  opacity: 1;
}

.hover\:opacity-0:hover{
  opacity: 0;
}

.hover\:opacity-5:hover{
  opacity: 0.05;
}

.hover\:opacity-10:hover{
  opacity: 0.1;
}

.hover\:opacity-20:hover{
  opacity: 0.2;
}

.hover\:opacity-25:hover{
  opacity: 0.25;
}

.hover\:opacity-30:hover{
  opacity: 0.3;
}

.hover\:opacity-40:hover{
  opacity: 0.4;
}

.hover\:opacity-50:hover{
  opacity: 0.5;
}

.hover\:opacity-60:hover{
  opacity: 0.6;
}

.hover\:opacity-70:hover{
  opacity: 0.7;
}

.hover\:opacity-75:hover{
  opacity: 0.75;
}

.hover\:opacity-80:hover{
  opacity: 0.8;
}

.hover\:opacity-90:hover{
  opacity: 0.9;
}

.hover\:opacity-95:hover{
  opacity: 0.95;
}

.hover\:opacity-100:hover{
  opacity: 1;
}

.focus\:opacity-0:focus{
  opacity: 0;
}

.focus\:opacity-5:focus{
  opacity: 0.05;
}

.focus\:opacity-10:focus{
  opacity: 0.1;
}

.focus\:opacity-20:focus{
  opacity: 0.2;
}

.focus\:opacity-25:focus{
  opacity: 0.25;
}

.focus\:opacity-30:focus{
  opacity: 0.3;
}

.focus\:opacity-40:focus{
  opacity: 0.4;
}

.focus\:opacity-50:focus{
  opacity: 0.5;
}

.focus\:opacity-60:focus{
  opacity: 0.6;
}

.focus\:opacity-70:focus{
  opacity: 0.7;
}

.focus\:opacity-75:focus{
  opacity: 0.75;
}

.focus\:opacity-80:focus{
  opacity: 0.8;
}

.focus\:opacity-90:focus{
  opacity: 0.9;
}

.focus\:opacity-95:focus{
  opacity: 0.95;
}

.focus\:opacity-100:focus{
  opacity: 1;
}

.bg-blend-normal{
  background-blend-mode: normal;
}

.bg-blend-multiply{
  background-blend-mode: multiply;
}

.bg-blend-screen{
  background-blend-mode: screen;
}

.bg-blend-overlay{
  background-blend-mode: overlay;
}

.bg-blend-darken{
  background-blend-mode: darken;
}

.bg-blend-lighten{
  background-blend-mode: lighten;
}

.bg-blend-color-dodge{
  background-blend-mode: color-dodge;
}

.bg-blend-color-burn{
  background-blend-mode: color-burn;
}

.bg-blend-hard-light{
  background-blend-mode: hard-light;
}

.bg-blend-soft-light{
  background-blend-mode: soft-light;
}

.bg-blend-difference{
  background-blend-mode: difference;
}

.bg-blend-exclusion{
  background-blend-mode: exclusion;
}

.bg-blend-hue{
  background-blend-mode: hue;
}

.bg-blend-saturation{
  background-blend-mode: saturation;
}

.bg-blend-color{
  background-blend-mode: color;
}

.bg-blend-luminosity{
  background-blend-mode: luminosity;
}

.mix-blend-normal{
  mix-blend-mode: normal;
}

.mix-blend-multiply{
  mix-blend-mode: multiply;
}

.mix-blend-screen{
  mix-blend-mode: screen;
}

.mix-blend-overlay{
  mix-blend-mode: overlay;
}

.mix-blend-darken{
  mix-blend-mode: darken;
}

.mix-blend-lighten{
  mix-blend-mode: lighten;
}

.mix-blend-color-dodge{
  mix-blend-mode: color-dodge;
}

.mix-blend-color-burn{
  mix-blend-mode: color-burn;
}

.mix-blend-hard-light{
  mix-blend-mode: hard-light;
}

.mix-blend-soft-light{
  mix-blend-mode: soft-light;
}

.mix-blend-difference{
  mix-blend-mode: difference;
}

.mix-blend-exclusion{
  mix-blend-mode: exclusion;
}

.mix-blend-hue{
  mix-blend-mode: hue;
}

.mix-blend-saturation{
  mix-blend-mode: saturation;
}

.mix-blend-color{
  mix-blend-mode: color;
}

.mix-blend-luminosity{
  mix-blend-mode: luminosity;
}

*, ::before, ::after{
  --tw-shadow: 0 0 #0000;
}

.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow{
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-inner{
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-none{
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group:hover .group-hover\:shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group:hover .group-hover\:shadow{
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group:hover .group-hover\:shadow-md{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group:hover .group-hover\:shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group:hover .group-hover\:shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group:hover .group-hover\:shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group:hover .group-hover\:shadow-inner{
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group:hover .group-hover\:shadow-none{
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus-within\:shadow-sm:focus-within{
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus-within\:shadow:focus-within{
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus-within\:shadow-md:focus-within{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus-within\:shadow-lg:focus-within{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus-within\:shadow-xl:focus-within{
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus-within\:shadow-2xl:focus-within{
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus-within\:shadow-inner:focus-within{
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus-within\:shadow-none:focus-within{
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-sm:hover{
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow:hover{
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-md:hover{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-lg:hover{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover{
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-2xl:hover{
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-inner:hover{
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-none:hover{
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:shadow-sm:focus{
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:shadow:focus{
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:shadow-md:focus{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:shadow-lg:focus{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:shadow-xl:focus{
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:shadow-2xl:focus{
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:shadow-inner:focus{
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:shadow-none:focus{
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.outline-white{
  outline: 2px dotted white;
  outline-offset: 2px;
}

.outline-black{
  outline: 2px dotted black;
  outline-offset: 2px;
}

.focus-within\:outline-none:focus-within{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus-within\:outline-white:focus-within{
  outline: 2px dotted white;
  outline-offset: 2px;
}

.focus-within\:outline-black:focus-within{
  outline: 2px dotted black;
  outline-offset: 2px;
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:outline-white:focus{
  outline: 2px dotted white;
  outline-offset: 2px;
}

.focus\:outline-black:focus{
  outline: 2px dotted black;
  outline-offset: 2px;
}

*, ::before, ::after{
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.ring-0{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-1{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-2{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-4{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-8{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-within\:ring-0:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-within\:ring-1:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-within\:ring-2:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-within\:ring-4:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-within\:ring-8:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-within\:ring:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-0:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-1:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-4:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-8:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-inset{
  --tw-ring-inset: inset;
}

.focus-within\:ring-inset:focus-within{
  --tw-ring-inset: inset;
}

.focus\:ring-inset:focus{
  --tw-ring-inset: inset;
}

.ring-transparent{
  --tw-ring-color: transparent;
}

.ring-current{
  --tw-ring-color: currentColor;
}

.ring-black{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
}

.ring-white{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
}

.ring-gray-50{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
}

.ring-gray-100{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
}

.ring-gray-200{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
}

.ring-gray-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
}

.ring-gray-400{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
}

.ring-gray-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
}

.ring-gray-600{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
}

.ring-gray-700{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
}

.ring-gray-800{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
}

.ring-gray-900{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
}

.ring-red-50{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
}

.ring-red-100{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
}

.ring-red-200{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
}

.ring-red-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
}

.ring-red-400{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
}

.ring-red-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
}

.ring-red-600{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
}

.ring-red-700{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
}

.ring-red-800{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
}

.ring-red-900{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
}

.ring-red-light{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(234, 122, 122, var(--tw-ring-opacity));
}

.ring-red-default{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(185, 0, 0, var(--tw-ring-opacity));
}

.ring-red-dark{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
}

.ring-yellow-50{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
}

.ring-yellow-100{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
}

.ring-yellow-200{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
}

.ring-yellow-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
}

.ring-yellow-400{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
}

.ring-yellow-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
}

.ring-yellow-600{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
}

.ring-yellow-700{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
}

.ring-yellow-800{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
}

.ring-yellow-900{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
}

.ring-green-50{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
}

.ring-green-100{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
}

.ring-green-200{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
}

.ring-green-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
}

.ring-green-400{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
}

.ring-green-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
}

.ring-green-600{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
}

.ring-green-700{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
}

.ring-green-800{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
}

.ring-green-900{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
}

.ring-green-light{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(181, 209, 185, var(--tw-ring-opacity));
}

.ring-green-default{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
}

.ring-green-dark{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(28, 37, 30, var(--tw-ring-opacity));
}

.ring-blue-50{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
}

.ring-blue-100{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
}

.ring-blue-200{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
}

.ring-blue-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
}

.ring-blue-400{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
}

.ring-blue-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
}

.ring-blue-600{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
}

.ring-blue-700{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
}

.ring-blue-800{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
}

.ring-blue-900{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
}

.ring-indigo-50{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
}

.ring-indigo-100{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
}

.ring-indigo-200{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
}

.ring-indigo-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
}

.ring-indigo-400{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
}

.ring-indigo-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
}

.ring-indigo-600{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
}

.ring-indigo-700{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
}

.ring-indigo-800{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
}

.ring-indigo-900{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
}

.ring-purple-50{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
}

.ring-purple-100{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
}

.ring-purple-200{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
}

.ring-purple-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
}

.ring-purple-400{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
}

.ring-purple-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
}

.ring-purple-600{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
}

.ring-purple-700{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
}

.ring-purple-800{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
}

.ring-purple-900{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
}

.ring-pink-50{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
}

.ring-pink-100{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
}

.ring-pink-200{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
}

.ring-pink-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
}

.ring-pink-400{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
}

.ring-pink-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
}

.ring-pink-600{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
}

.ring-pink-700{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
}

.ring-pink-800{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
}

.ring-pink-900{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
}

.ring-brown-light{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(240, 233, 222, var(--tw-ring-opacity));
}

.ring-brown-semi{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(222, 214, 202, var(--tw-ring-opacity));
}

.ring-brown-default{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(123, 108, 92, var(--tw-ring-opacity));
}

.ring-brown-dark{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(61, 39, 6, var(--tw-ring-opacity));
}

.ring-success-light{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(145, 224, 156, var(--tw-ring-opacity));
}

.ring-success-default{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(45, 153, 60, var(--tw-ring-opacity));
}

.ring-success-dark{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
}

.ring-error-light{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 134, 134, var(--tw-ring-opacity));
}

.ring-error-default{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(203, 7, 7, var(--tw-ring-opacity));
}

.ring-error-dark{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
}

.ring-navigation-dark{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 205, 0, var(--tw-ring-opacity));
}

.focus-within\:ring-transparent:focus-within{
  --tw-ring-color: transparent;
}

.focus-within\:ring-current:focus-within{
  --tw-ring-color: currentColor;
}

.focus-within\:ring-black:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
}

.focus-within\:ring-white:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
}

.focus-within\:ring-gray-50:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
}

.focus-within\:ring-gray-100:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
}

.focus-within\:ring-gray-200:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
}

.focus-within\:ring-gray-300:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
}

.focus-within\:ring-gray-400:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
}

.focus-within\:ring-gray-500:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
}

.focus-within\:ring-gray-600:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
}

.focus-within\:ring-gray-700:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
}

.focus-within\:ring-gray-800:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
}

.focus-within\:ring-gray-900:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
}

.focus-within\:ring-red-50:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
}

.focus-within\:ring-red-100:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
}

.focus-within\:ring-red-200:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
}

.focus-within\:ring-red-300:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
}

.focus-within\:ring-red-400:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
}

.focus-within\:ring-red-500:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
}

.focus-within\:ring-red-600:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
}

.focus-within\:ring-red-700:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
}

.focus-within\:ring-red-800:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
}

.focus-within\:ring-red-900:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
}

.focus-within\:ring-red-light:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(234, 122, 122, var(--tw-ring-opacity));
}

.focus-within\:ring-red-default:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(185, 0, 0, var(--tw-ring-opacity));
}

.focus-within\:ring-red-dark:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
}

.focus-within\:ring-yellow-50:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
}

.focus-within\:ring-yellow-100:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
}

.focus-within\:ring-yellow-200:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
}

.focus-within\:ring-yellow-300:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
}

.focus-within\:ring-yellow-400:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
}

.focus-within\:ring-yellow-500:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
}

.focus-within\:ring-yellow-600:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
}

.focus-within\:ring-yellow-700:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
}

.focus-within\:ring-yellow-800:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
}

.focus-within\:ring-yellow-900:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
}

.focus-within\:ring-green-50:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
}

.focus-within\:ring-green-100:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
}

.focus-within\:ring-green-200:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
}

.focus-within\:ring-green-300:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
}

.focus-within\:ring-green-400:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
}

.focus-within\:ring-green-500:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
}

.focus-within\:ring-green-600:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
}

.focus-within\:ring-green-700:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
}

.focus-within\:ring-green-800:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
}

.focus-within\:ring-green-900:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
}

.focus-within\:ring-green-light:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(181, 209, 185, var(--tw-ring-opacity));
}

.focus-within\:ring-green-default:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
}

.focus-within\:ring-green-dark:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(28, 37, 30, var(--tw-ring-opacity));
}

.focus-within\:ring-blue-50:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
}

.focus-within\:ring-blue-100:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
}

.focus-within\:ring-blue-200:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
}

.focus-within\:ring-blue-300:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
}

.focus-within\:ring-blue-400:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
}

.focus-within\:ring-blue-500:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
}

.focus-within\:ring-blue-600:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
}

.focus-within\:ring-blue-700:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
}

.focus-within\:ring-blue-800:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
}

.focus-within\:ring-blue-900:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
}

.focus-within\:ring-indigo-50:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
}

.focus-within\:ring-indigo-100:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
}

.focus-within\:ring-indigo-200:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
}

.focus-within\:ring-indigo-300:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
}

.focus-within\:ring-indigo-400:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
}

.focus-within\:ring-indigo-500:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
}

.focus-within\:ring-indigo-600:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
}

.focus-within\:ring-indigo-700:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
}

.focus-within\:ring-indigo-800:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
}

.focus-within\:ring-indigo-900:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
}

.focus-within\:ring-purple-50:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
}

.focus-within\:ring-purple-100:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
}

.focus-within\:ring-purple-200:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
}

.focus-within\:ring-purple-300:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
}

.focus-within\:ring-purple-400:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
}

.focus-within\:ring-purple-500:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
}

.focus-within\:ring-purple-600:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
}

.focus-within\:ring-purple-700:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
}

.focus-within\:ring-purple-800:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
}

.focus-within\:ring-purple-900:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
}

.focus-within\:ring-pink-50:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
}

.focus-within\:ring-pink-100:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
}

.focus-within\:ring-pink-200:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
}

.focus-within\:ring-pink-300:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
}

.focus-within\:ring-pink-400:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
}

.focus-within\:ring-pink-500:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
}

.focus-within\:ring-pink-600:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
}

.focus-within\:ring-pink-700:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
}

.focus-within\:ring-pink-800:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
}

.focus-within\:ring-pink-900:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
}

.focus-within\:ring-brown-light:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(240, 233, 222, var(--tw-ring-opacity));
}

.focus-within\:ring-brown-semi:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(222, 214, 202, var(--tw-ring-opacity));
}

.focus-within\:ring-brown-default:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(123, 108, 92, var(--tw-ring-opacity));
}

.focus-within\:ring-brown-dark:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(61, 39, 6, var(--tw-ring-opacity));
}

.focus-within\:ring-success-light:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(145, 224, 156, var(--tw-ring-opacity));
}

.focus-within\:ring-success-default:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(45, 153, 60, var(--tw-ring-opacity));
}

.focus-within\:ring-success-dark:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
}

.focus-within\:ring-error-light:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 134, 134, var(--tw-ring-opacity));
}

.focus-within\:ring-error-default:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(203, 7, 7, var(--tw-ring-opacity));
}

.focus-within\:ring-error-dark:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
}

.focus-within\:ring-navigation-dark:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 205, 0, var(--tw-ring-opacity));
}

.focus\:ring-transparent:focus{
  --tw-ring-color: transparent;
}

.focus\:ring-current:focus{
  --tw-ring-color: currentColor;
}

.focus\:ring-black:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
}

.focus\:ring-white:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
}

.focus\:ring-gray-50:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
}

.focus\:ring-gray-100:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
}

.focus\:ring-gray-200:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
}

.focus\:ring-gray-300:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
}

.focus\:ring-gray-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
}

.focus\:ring-gray-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
}

.focus\:ring-gray-600:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
}

.focus\:ring-gray-700:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
}

.focus\:ring-gray-800:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
}

.focus\:ring-gray-900:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
}

.focus\:ring-red-50:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
}

.focus\:ring-red-100:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
}

.focus\:ring-red-200:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
}

.focus\:ring-red-300:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
}

.focus\:ring-red-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
}

.focus\:ring-red-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
}

.focus\:ring-red-600:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
}

.focus\:ring-red-700:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
}

.focus\:ring-red-800:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
}

.focus\:ring-red-900:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
}

.focus\:ring-red-light:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(234, 122, 122, var(--tw-ring-opacity));
}

.focus\:ring-red-default:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(185, 0, 0, var(--tw-ring-opacity));
}

.focus\:ring-red-dark:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
}

.focus\:ring-yellow-50:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
}

.focus\:ring-yellow-100:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
}

.focus\:ring-yellow-200:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
}

.focus\:ring-yellow-300:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
}

.focus\:ring-yellow-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
}

.focus\:ring-yellow-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
}

.focus\:ring-yellow-600:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
}

.focus\:ring-yellow-700:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
}

.focus\:ring-yellow-800:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
}

.focus\:ring-yellow-900:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
}

.focus\:ring-green-50:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
}

.focus\:ring-green-100:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
}

.focus\:ring-green-200:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
}

.focus\:ring-green-300:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
}

.focus\:ring-green-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
}

.focus\:ring-green-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
}

.focus\:ring-green-600:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
}

.focus\:ring-green-700:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
}

.focus\:ring-green-800:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
}

.focus\:ring-green-900:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
}

.focus\:ring-green-light:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(181, 209, 185, var(--tw-ring-opacity));
}

.focus\:ring-green-default:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
}

.focus\:ring-green-dark:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(28, 37, 30, var(--tw-ring-opacity));
}

.focus\:ring-blue-50:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
}

.focus\:ring-blue-100:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
}

.focus\:ring-blue-200:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
}

.focus\:ring-blue-300:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
}

.focus\:ring-blue-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
}

.focus\:ring-blue-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
}

.focus\:ring-blue-600:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
}

.focus\:ring-blue-700:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
}

.focus\:ring-blue-800:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
}

.focus\:ring-blue-900:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
}

.focus\:ring-indigo-50:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
}

.focus\:ring-indigo-100:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
}

.focus\:ring-indigo-200:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
}

.focus\:ring-indigo-300:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
}

.focus\:ring-indigo-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
}

.focus\:ring-indigo-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
}

.focus\:ring-indigo-600:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
}

.focus\:ring-indigo-700:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
}

.focus\:ring-indigo-800:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
}

.focus\:ring-indigo-900:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
}

.focus\:ring-purple-50:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
}

.focus\:ring-purple-100:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
}

.focus\:ring-purple-200:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
}

.focus\:ring-purple-300:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
}

.focus\:ring-purple-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
}

.focus\:ring-purple-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
}

.focus\:ring-purple-600:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
}

.focus\:ring-purple-700:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
}

.focus\:ring-purple-800:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
}

.focus\:ring-purple-900:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
}

.focus\:ring-pink-50:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
}

.focus\:ring-pink-100:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
}

.focus\:ring-pink-200:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
}

.focus\:ring-pink-300:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
}

.focus\:ring-pink-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
}

.focus\:ring-pink-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
}

.focus\:ring-pink-600:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
}

.focus\:ring-pink-700:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
}

.focus\:ring-pink-800:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
}

.focus\:ring-pink-900:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
}

.focus\:ring-brown-light:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(240, 233, 222, var(--tw-ring-opacity));
}

.focus\:ring-brown-semi:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(222, 214, 202, var(--tw-ring-opacity));
}

.focus\:ring-brown-default:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(123, 108, 92, var(--tw-ring-opacity));
}

.focus\:ring-brown-dark:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(61, 39, 6, var(--tw-ring-opacity));
}

.focus\:ring-success-light:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(145, 224, 156, var(--tw-ring-opacity));
}

.focus\:ring-success-default:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(45, 153, 60, var(--tw-ring-opacity));
}

.focus\:ring-success-dark:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
}

.focus\:ring-error-light:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 134, 134, var(--tw-ring-opacity));
}

.focus\:ring-error-default:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(203, 7, 7, var(--tw-ring-opacity));
}

.focus\:ring-error-dark:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
}

.focus\:ring-navigation-dark:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 205, 0, var(--tw-ring-opacity));
}

.ring-opacity-0{
  --tw-ring-opacity: 0;
}

.ring-opacity-5{
  --tw-ring-opacity: 0.05;
}

.ring-opacity-10{
  --tw-ring-opacity: 0.1;
}

.ring-opacity-20{
  --tw-ring-opacity: 0.2;
}

.ring-opacity-25{
  --tw-ring-opacity: 0.25;
}

.ring-opacity-30{
  --tw-ring-opacity: 0.3;
}

.ring-opacity-40{
  --tw-ring-opacity: 0.4;
}

.ring-opacity-50{
  --tw-ring-opacity: 0.5;
}

.ring-opacity-60{
  --tw-ring-opacity: 0.6;
}

.ring-opacity-70{
  --tw-ring-opacity: 0.7;
}

.ring-opacity-75{
  --tw-ring-opacity: 0.75;
}

.ring-opacity-80{
  --tw-ring-opacity: 0.8;
}

.ring-opacity-90{
  --tw-ring-opacity: 0.9;
}

.ring-opacity-95{
  --tw-ring-opacity: 0.95;
}

.ring-opacity-100{
  --tw-ring-opacity: 1;
}

.focus-within\:ring-opacity-0:focus-within{
  --tw-ring-opacity: 0;
}

.focus-within\:ring-opacity-5:focus-within{
  --tw-ring-opacity: 0.05;
}

.focus-within\:ring-opacity-10:focus-within{
  --tw-ring-opacity: 0.1;
}

.focus-within\:ring-opacity-20:focus-within{
  --tw-ring-opacity: 0.2;
}

.focus-within\:ring-opacity-25:focus-within{
  --tw-ring-opacity: 0.25;
}

.focus-within\:ring-opacity-30:focus-within{
  --tw-ring-opacity: 0.3;
}

.focus-within\:ring-opacity-40:focus-within{
  --tw-ring-opacity: 0.4;
}

.focus-within\:ring-opacity-50:focus-within{
  --tw-ring-opacity: 0.5;
}

.focus-within\:ring-opacity-60:focus-within{
  --tw-ring-opacity: 0.6;
}

.focus-within\:ring-opacity-70:focus-within{
  --tw-ring-opacity: 0.7;
}

.focus-within\:ring-opacity-75:focus-within{
  --tw-ring-opacity: 0.75;
}

.focus-within\:ring-opacity-80:focus-within{
  --tw-ring-opacity: 0.8;
}

.focus-within\:ring-opacity-90:focus-within{
  --tw-ring-opacity: 0.9;
}

.focus-within\:ring-opacity-95:focus-within{
  --tw-ring-opacity: 0.95;
}

.focus-within\:ring-opacity-100:focus-within{
  --tw-ring-opacity: 1;
}

.focus\:ring-opacity-0:focus{
  --tw-ring-opacity: 0;
}

.focus\:ring-opacity-5:focus{
  --tw-ring-opacity: 0.05;
}

.focus\:ring-opacity-10:focus{
  --tw-ring-opacity: 0.1;
}

.focus\:ring-opacity-20:focus{
  --tw-ring-opacity: 0.2;
}

.focus\:ring-opacity-25:focus{
  --tw-ring-opacity: 0.25;
}

.focus\:ring-opacity-30:focus{
  --tw-ring-opacity: 0.3;
}

.focus\:ring-opacity-40:focus{
  --tw-ring-opacity: 0.4;
}

.focus\:ring-opacity-50:focus{
  --tw-ring-opacity: 0.5;
}

.focus\:ring-opacity-60:focus{
  --tw-ring-opacity: 0.6;
}

.focus\:ring-opacity-70:focus{
  --tw-ring-opacity: 0.7;
}

.focus\:ring-opacity-75:focus{
  --tw-ring-opacity: 0.75;
}

.focus\:ring-opacity-80:focus{
  --tw-ring-opacity: 0.8;
}

.focus\:ring-opacity-90:focus{
  --tw-ring-opacity: 0.9;
}

.focus\:ring-opacity-95:focus{
  --tw-ring-opacity: 0.95;
}

.focus\:ring-opacity-100:focus{
  --tw-ring-opacity: 1;
}

.ring-offset-0{
  --tw-ring-offset-width: 0px;
}

.ring-offset-1{
  --tw-ring-offset-width: 1px;
}

.ring-offset-2{
  --tw-ring-offset-width: 2px;
}

.ring-offset-4{
  --tw-ring-offset-width: 4px;
}

.ring-offset-8{
  --tw-ring-offset-width: 8px;
}

.focus-within\:ring-offset-0:focus-within{
  --tw-ring-offset-width: 0px;
}

.focus-within\:ring-offset-1:focus-within{
  --tw-ring-offset-width: 1px;
}

.focus-within\:ring-offset-2:focus-within{
  --tw-ring-offset-width: 2px;
}

.focus-within\:ring-offset-4:focus-within{
  --tw-ring-offset-width: 4px;
}

.focus-within\:ring-offset-8:focus-within{
  --tw-ring-offset-width: 8px;
}

.focus\:ring-offset-0:focus{
  --tw-ring-offset-width: 0px;
}

.focus\:ring-offset-1:focus{
  --tw-ring-offset-width: 1px;
}

.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}

.focus\:ring-offset-4:focus{
  --tw-ring-offset-width: 4px;
}

.focus\:ring-offset-8:focus{
  --tw-ring-offset-width: 8px;
}

.ring-offset-transparent{
  --tw-ring-offset-color: transparent;
}

.ring-offset-current{
  --tw-ring-offset-color: currentColor;
}

.ring-offset-black{
  --tw-ring-offset-color: #000;
}

.ring-offset-white{
  --tw-ring-offset-color: #fff;
}

.ring-offset-gray-50{
  --tw-ring-offset-color: #f9fafb;
}

.ring-offset-gray-100{
  --tw-ring-offset-color: #f3f4f6;
}

.ring-offset-gray-200{
  --tw-ring-offset-color: #e5e7eb;
}

.ring-offset-gray-300{
  --tw-ring-offset-color: #d1d5db;
}

.ring-offset-gray-400{
  --tw-ring-offset-color: #9ca3af;
}

.ring-offset-gray-500{
  --tw-ring-offset-color: #6b7280;
}

.ring-offset-gray-600{
  --tw-ring-offset-color: #4b5563;
}

.ring-offset-gray-700{
  --tw-ring-offset-color: #374151;
}

.ring-offset-gray-800{
  --tw-ring-offset-color: #1f2937;
}

.ring-offset-gray-900{
  --tw-ring-offset-color: #111827;
}

.ring-offset-red-50{
  --tw-ring-offset-color: #fef2f2;
}

.ring-offset-red-100{
  --tw-ring-offset-color: #fee2e2;
}

.ring-offset-red-200{
  --tw-ring-offset-color: #fecaca;
}

.ring-offset-red-300{
  --tw-ring-offset-color: #fca5a5;
}

.ring-offset-red-400{
  --tw-ring-offset-color: #f87171;
}

.ring-offset-red-500{
  --tw-ring-offset-color: #ef4444;
}

.ring-offset-red-600{
  --tw-ring-offset-color: #dc2626;
}

.ring-offset-red-700{
  --tw-ring-offset-color: #b91c1c;
}

.ring-offset-red-800{
  --tw-ring-offset-color: #991b1b;
}

.ring-offset-red-900{
  --tw-ring-offset-color: #7f1d1d;
}

.ring-offset-red-light{
  --tw-ring-offset-color: #EA7A7A;
}

.ring-offset-red-default{
  --tw-ring-offset-color: #B90000;
}

.ring-offset-red-dark{
  --tw-ring-offset-color: #580000;
}

.ring-offset-yellow-50{
  --tw-ring-offset-color: #fffbeb;
}

.ring-offset-yellow-100{
  --tw-ring-offset-color: #fef3c7;
}

.ring-offset-yellow-200{
  --tw-ring-offset-color: #fde68a;
}

.ring-offset-yellow-300{
  --tw-ring-offset-color: #fcd34d;
}

.ring-offset-yellow-400{
  --tw-ring-offset-color: #fbbf24;
}

.ring-offset-yellow-500{
  --tw-ring-offset-color: #f59e0b;
}

.ring-offset-yellow-600{
  --tw-ring-offset-color: #d97706;
}

.ring-offset-yellow-700{
  --tw-ring-offset-color: #b45309;
}

.ring-offset-yellow-800{
  --tw-ring-offset-color: #92400e;
}

.ring-offset-yellow-900{
  --tw-ring-offset-color: #78350f;
}

.ring-offset-green-50{
  --tw-ring-offset-color: #ecfdf5;
}

.ring-offset-green-100{
  --tw-ring-offset-color: #d1fae5;
}

.ring-offset-green-200{
  --tw-ring-offset-color: #a7f3d0;
}

.ring-offset-green-300{
  --tw-ring-offset-color: #6ee7b7;
}

.ring-offset-green-400{
  --tw-ring-offset-color: #34d399;
}

.ring-offset-green-500{
  --tw-ring-offset-color: #10b981;
}

.ring-offset-green-600{
  --tw-ring-offset-color: #059669;
}

.ring-offset-green-700{
  --tw-ring-offset-color: #047857;
}

.ring-offset-green-800{
  --tw-ring-offset-color: #065f46;
}

.ring-offset-green-900{
  --tw-ring-offset-color: #064e3b;
}

.ring-offset-green-light{
  --tw-ring-offset-color: #B5D1B9;
}

.ring-offset-green-default{
  --tw-ring-offset-color: #263B29;
}

.ring-offset-green-dark{
  --tw-ring-offset-color: #1C251E;
}

.ring-offset-blue-50{
  --tw-ring-offset-color: #eff6ff;
}

.ring-offset-blue-100{
  --tw-ring-offset-color: #dbeafe;
}

.ring-offset-blue-200{
  --tw-ring-offset-color: #bfdbfe;
}

.ring-offset-blue-300{
  --tw-ring-offset-color: #93c5fd;
}

.ring-offset-blue-400{
  --tw-ring-offset-color: #60a5fa;
}

.ring-offset-blue-500{
  --tw-ring-offset-color: #3b82f6;
}

.ring-offset-blue-600{
  --tw-ring-offset-color: #2563eb;
}

.ring-offset-blue-700{
  --tw-ring-offset-color: #1d4ed8;
}

.ring-offset-blue-800{
  --tw-ring-offset-color: #1e40af;
}

.ring-offset-blue-900{
  --tw-ring-offset-color: #1e3a8a;
}

.ring-offset-indigo-50{
  --tw-ring-offset-color: #eef2ff;
}

.ring-offset-indigo-100{
  --tw-ring-offset-color: #e0e7ff;
}

.ring-offset-indigo-200{
  --tw-ring-offset-color: #c7d2fe;
}

.ring-offset-indigo-300{
  --tw-ring-offset-color: #a5b4fc;
}

.ring-offset-indigo-400{
  --tw-ring-offset-color: #818cf8;
}

.ring-offset-indigo-500{
  --tw-ring-offset-color: #6366f1;
}

.ring-offset-indigo-600{
  --tw-ring-offset-color: #4f46e5;
}

.ring-offset-indigo-700{
  --tw-ring-offset-color: #4338ca;
}

.ring-offset-indigo-800{
  --tw-ring-offset-color: #3730a3;
}

.ring-offset-indigo-900{
  --tw-ring-offset-color: #312e81;
}

.ring-offset-purple-50{
  --tw-ring-offset-color: #f5f3ff;
}

.ring-offset-purple-100{
  --tw-ring-offset-color: #ede9fe;
}

.ring-offset-purple-200{
  --tw-ring-offset-color: #ddd6fe;
}

.ring-offset-purple-300{
  --tw-ring-offset-color: #c4b5fd;
}

.ring-offset-purple-400{
  --tw-ring-offset-color: #a78bfa;
}

.ring-offset-purple-500{
  --tw-ring-offset-color: #8b5cf6;
}

.ring-offset-purple-600{
  --tw-ring-offset-color: #7c3aed;
}

.ring-offset-purple-700{
  --tw-ring-offset-color: #6d28d9;
}

.ring-offset-purple-800{
  --tw-ring-offset-color: #5b21b6;
}

.ring-offset-purple-900{
  --tw-ring-offset-color: #4c1d95;
}

.ring-offset-pink-50{
  --tw-ring-offset-color: #fdf2f8;
}

.ring-offset-pink-100{
  --tw-ring-offset-color: #fce7f3;
}

.ring-offset-pink-200{
  --tw-ring-offset-color: #fbcfe8;
}

.ring-offset-pink-300{
  --tw-ring-offset-color: #f9a8d4;
}

.ring-offset-pink-400{
  --tw-ring-offset-color: #f472b6;
}

.ring-offset-pink-500{
  --tw-ring-offset-color: #ec4899;
}

.ring-offset-pink-600{
  --tw-ring-offset-color: #db2777;
}

.ring-offset-pink-700{
  --tw-ring-offset-color: #be185d;
}

.ring-offset-pink-800{
  --tw-ring-offset-color: #9d174d;
}

.ring-offset-pink-900{
  --tw-ring-offset-color: #831843;
}

.ring-offset-brown-light{
  --tw-ring-offset-color: #f0e9de;
}

.ring-offset-brown-semi{
  --tw-ring-offset-color: #ded6ca;
}

.ring-offset-brown-default{
  --tw-ring-offset-color: #7b6c5c;
}

.ring-offset-brown-dark{
  --tw-ring-offset-color: #3d2706;
}

.ring-offset-success-light{
  --tw-ring-offset-color: #91E09C;
}

.ring-offset-success-default{
  --tw-ring-offset-color: #2D993C;
}

.ring-offset-success-dark{
  --tw-ring-offset-color: #263B29;
}

.ring-offset-error-light{
  --tw-ring-offset-color: #F98686;
}

.ring-offset-error-default{
  --tw-ring-offset-color: #CB0707;
}

.ring-offset-error-dark{
  --tw-ring-offset-color: #580000;
}

.ring-offset-navigation-dark{
  --tw-ring-offset-color: #ffcd00;
}

.focus-within\:ring-offset-transparent:focus-within{
  --tw-ring-offset-color: transparent;
}

.focus-within\:ring-offset-current:focus-within{
  --tw-ring-offset-color: currentColor;
}

.focus-within\:ring-offset-black:focus-within{
  --tw-ring-offset-color: #000;
}

.focus-within\:ring-offset-white:focus-within{
  --tw-ring-offset-color: #fff;
}

.focus-within\:ring-offset-gray-50:focus-within{
  --tw-ring-offset-color: #f9fafb;
}

.focus-within\:ring-offset-gray-100:focus-within{
  --tw-ring-offset-color: #f3f4f6;
}

.focus-within\:ring-offset-gray-200:focus-within{
  --tw-ring-offset-color: #e5e7eb;
}

.focus-within\:ring-offset-gray-300:focus-within{
  --tw-ring-offset-color: #d1d5db;
}

.focus-within\:ring-offset-gray-400:focus-within{
  --tw-ring-offset-color: #9ca3af;
}

.focus-within\:ring-offset-gray-500:focus-within{
  --tw-ring-offset-color: #6b7280;
}

.focus-within\:ring-offset-gray-600:focus-within{
  --tw-ring-offset-color: #4b5563;
}

.focus-within\:ring-offset-gray-700:focus-within{
  --tw-ring-offset-color: #374151;
}

.focus-within\:ring-offset-gray-800:focus-within{
  --tw-ring-offset-color: #1f2937;
}

.focus-within\:ring-offset-gray-900:focus-within{
  --tw-ring-offset-color: #111827;
}

.focus-within\:ring-offset-red-50:focus-within{
  --tw-ring-offset-color: #fef2f2;
}

.focus-within\:ring-offset-red-100:focus-within{
  --tw-ring-offset-color: #fee2e2;
}

.focus-within\:ring-offset-red-200:focus-within{
  --tw-ring-offset-color: #fecaca;
}

.focus-within\:ring-offset-red-300:focus-within{
  --tw-ring-offset-color: #fca5a5;
}

.focus-within\:ring-offset-red-400:focus-within{
  --tw-ring-offset-color: #f87171;
}

.focus-within\:ring-offset-red-500:focus-within{
  --tw-ring-offset-color: #ef4444;
}

.focus-within\:ring-offset-red-600:focus-within{
  --tw-ring-offset-color: #dc2626;
}

.focus-within\:ring-offset-red-700:focus-within{
  --tw-ring-offset-color: #b91c1c;
}

.focus-within\:ring-offset-red-800:focus-within{
  --tw-ring-offset-color: #991b1b;
}

.focus-within\:ring-offset-red-900:focus-within{
  --tw-ring-offset-color: #7f1d1d;
}

.focus-within\:ring-offset-red-light:focus-within{
  --tw-ring-offset-color: #EA7A7A;
}

.focus-within\:ring-offset-red-default:focus-within{
  --tw-ring-offset-color: #B90000;
}

.focus-within\:ring-offset-red-dark:focus-within{
  --tw-ring-offset-color: #580000;
}

.focus-within\:ring-offset-yellow-50:focus-within{
  --tw-ring-offset-color: #fffbeb;
}

.focus-within\:ring-offset-yellow-100:focus-within{
  --tw-ring-offset-color: #fef3c7;
}

.focus-within\:ring-offset-yellow-200:focus-within{
  --tw-ring-offset-color: #fde68a;
}

.focus-within\:ring-offset-yellow-300:focus-within{
  --tw-ring-offset-color: #fcd34d;
}

.focus-within\:ring-offset-yellow-400:focus-within{
  --tw-ring-offset-color: #fbbf24;
}

.focus-within\:ring-offset-yellow-500:focus-within{
  --tw-ring-offset-color: #f59e0b;
}

.focus-within\:ring-offset-yellow-600:focus-within{
  --tw-ring-offset-color: #d97706;
}

.focus-within\:ring-offset-yellow-700:focus-within{
  --tw-ring-offset-color: #b45309;
}

.focus-within\:ring-offset-yellow-800:focus-within{
  --tw-ring-offset-color: #92400e;
}

.focus-within\:ring-offset-yellow-900:focus-within{
  --tw-ring-offset-color: #78350f;
}

.focus-within\:ring-offset-green-50:focus-within{
  --tw-ring-offset-color: #ecfdf5;
}

.focus-within\:ring-offset-green-100:focus-within{
  --tw-ring-offset-color: #d1fae5;
}

.focus-within\:ring-offset-green-200:focus-within{
  --tw-ring-offset-color: #a7f3d0;
}

.focus-within\:ring-offset-green-300:focus-within{
  --tw-ring-offset-color: #6ee7b7;
}

.focus-within\:ring-offset-green-400:focus-within{
  --tw-ring-offset-color: #34d399;
}

.focus-within\:ring-offset-green-500:focus-within{
  --tw-ring-offset-color: #10b981;
}

.focus-within\:ring-offset-green-600:focus-within{
  --tw-ring-offset-color: #059669;
}

.focus-within\:ring-offset-green-700:focus-within{
  --tw-ring-offset-color: #047857;
}

.focus-within\:ring-offset-green-800:focus-within{
  --tw-ring-offset-color: #065f46;
}

.focus-within\:ring-offset-green-900:focus-within{
  --tw-ring-offset-color: #064e3b;
}

.focus-within\:ring-offset-green-light:focus-within{
  --tw-ring-offset-color: #B5D1B9;
}

.focus-within\:ring-offset-green-default:focus-within{
  --tw-ring-offset-color: #263B29;
}

.focus-within\:ring-offset-green-dark:focus-within{
  --tw-ring-offset-color: #1C251E;
}

.focus-within\:ring-offset-blue-50:focus-within{
  --tw-ring-offset-color: #eff6ff;
}

.focus-within\:ring-offset-blue-100:focus-within{
  --tw-ring-offset-color: #dbeafe;
}

.focus-within\:ring-offset-blue-200:focus-within{
  --tw-ring-offset-color: #bfdbfe;
}

.focus-within\:ring-offset-blue-300:focus-within{
  --tw-ring-offset-color: #93c5fd;
}

.focus-within\:ring-offset-blue-400:focus-within{
  --tw-ring-offset-color: #60a5fa;
}

.focus-within\:ring-offset-blue-500:focus-within{
  --tw-ring-offset-color: #3b82f6;
}

.focus-within\:ring-offset-blue-600:focus-within{
  --tw-ring-offset-color: #2563eb;
}

.focus-within\:ring-offset-blue-700:focus-within{
  --tw-ring-offset-color: #1d4ed8;
}

.focus-within\:ring-offset-blue-800:focus-within{
  --tw-ring-offset-color: #1e40af;
}

.focus-within\:ring-offset-blue-900:focus-within{
  --tw-ring-offset-color: #1e3a8a;
}

.focus-within\:ring-offset-indigo-50:focus-within{
  --tw-ring-offset-color: #eef2ff;
}

.focus-within\:ring-offset-indigo-100:focus-within{
  --tw-ring-offset-color: #e0e7ff;
}

.focus-within\:ring-offset-indigo-200:focus-within{
  --tw-ring-offset-color: #c7d2fe;
}

.focus-within\:ring-offset-indigo-300:focus-within{
  --tw-ring-offset-color: #a5b4fc;
}

.focus-within\:ring-offset-indigo-400:focus-within{
  --tw-ring-offset-color: #818cf8;
}

.focus-within\:ring-offset-indigo-500:focus-within{
  --tw-ring-offset-color: #6366f1;
}

.focus-within\:ring-offset-indigo-600:focus-within{
  --tw-ring-offset-color: #4f46e5;
}

.focus-within\:ring-offset-indigo-700:focus-within{
  --tw-ring-offset-color: #4338ca;
}

.focus-within\:ring-offset-indigo-800:focus-within{
  --tw-ring-offset-color: #3730a3;
}

.focus-within\:ring-offset-indigo-900:focus-within{
  --tw-ring-offset-color: #312e81;
}

.focus-within\:ring-offset-purple-50:focus-within{
  --tw-ring-offset-color: #f5f3ff;
}

.focus-within\:ring-offset-purple-100:focus-within{
  --tw-ring-offset-color: #ede9fe;
}

.focus-within\:ring-offset-purple-200:focus-within{
  --tw-ring-offset-color: #ddd6fe;
}

.focus-within\:ring-offset-purple-300:focus-within{
  --tw-ring-offset-color: #c4b5fd;
}

.focus-within\:ring-offset-purple-400:focus-within{
  --tw-ring-offset-color: #a78bfa;
}

.focus-within\:ring-offset-purple-500:focus-within{
  --tw-ring-offset-color: #8b5cf6;
}

.focus-within\:ring-offset-purple-600:focus-within{
  --tw-ring-offset-color: #7c3aed;
}

.focus-within\:ring-offset-purple-700:focus-within{
  --tw-ring-offset-color: #6d28d9;
}

.focus-within\:ring-offset-purple-800:focus-within{
  --tw-ring-offset-color: #5b21b6;
}

.focus-within\:ring-offset-purple-900:focus-within{
  --tw-ring-offset-color: #4c1d95;
}

.focus-within\:ring-offset-pink-50:focus-within{
  --tw-ring-offset-color: #fdf2f8;
}

.focus-within\:ring-offset-pink-100:focus-within{
  --tw-ring-offset-color: #fce7f3;
}

.focus-within\:ring-offset-pink-200:focus-within{
  --tw-ring-offset-color: #fbcfe8;
}

.focus-within\:ring-offset-pink-300:focus-within{
  --tw-ring-offset-color: #f9a8d4;
}

.focus-within\:ring-offset-pink-400:focus-within{
  --tw-ring-offset-color: #f472b6;
}

.focus-within\:ring-offset-pink-500:focus-within{
  --tw-ring-offset-color: #ec4899;
}

.focus-within\:ring-offset-pink-600:focus-within{
  --tw-ring-offset-color: #db2777;
}

.focus-within\:ring-offset-pink-700:focus-within{
  --tw-ring-offset-color: #be185d;
}

.focus-within\:ring-offset-pink-800:focus-within{
  --tw-ring-offset-color: #9d174d;
}

.focus-within\:ring-offset-pink-900:focus-within{
  --tw-ring-offset-color: #831843;
}

.focus-within\:ring-offset-brown-light:focus-within{
  --tw-ring-offset-color: #f0e9de;
}

.focus-within\:ring-offset-brown-semi:focus-within{
  --tw-ring-offset-color: #ded6ca;
}

.focus-within\:ring-offset-brown-default:focus-within{
  --tw-ring-offset-color: #7b6c5c;
}

.focus-within\:ring-offset-brown-dark:focus-within{
  --tw-ring-offset-color: #3d2706;
}

.focus-within\:ring-offset-success-light:focus-within{
  --tw-ring-offset-color: #91E09C;
}

.focus-within\:ring-offset-success-default:focus-within{
  --tw-ring-offset-color: #2D993C;
}

.focus-within\:ring-offset-success-dark:focus-within{
  --tw-ring-offset-color: #263B29;
}

.focus-within\:ring-offset-error-light:focus-within{
  --tw-ring-offset-color: #F98686;
}

.focus-within\:ring-offset-error-default:focus-within{
  --tw-ring-offset-color: #CB0707;
}

.focus-within\:ring-offset-error-dark:focus-within{
  --tw-ring-offset-color: #580000;
}

.focus-within\:ring-offset-navigation-dark:focus-within{
  --tw-ring-offset-color: #ffcd00;
}

.focus\:ring-offset-transparent:focus{
  --tw-ring-offset-color: transparent;
}

.focus\:ring-offset-current:focus{
  --tw-ring-offset-color: currentColor;
}

.focus\:ring-offset-black:focus{
  --tw-ring-offset-color: #000;
}

.focus\:ring-offset-white:focus{
  --tw-ring-offset-color: #fff;
}

.focus\:ring-offset-gray-50:focus{
  --tw-ring-offset-color: #f9fafb;
}

.focus\:ring-offset-gray-100:focus{
  --tw-ring-offset-color: #f3f4f6;
}

.focus\:ring-offset-gray-200:focus{
  --tw-ring-offset-color: #e5e7eb;
}

.focus\:ring-offset-gray-300:focus{
  --tw-ring-offset-color: #d1d5db;
}

.focus\:ring-offset-gray-400:focus{
  --tw-ring-offset-color: #9ca3af;
}

.focus\:ring-offset-gray-500:focus{
  --tw-ring-offset-color: #6b7280;
}

.focus\:ring-offset-gray-600:focus{
  --tw-ring-offset-color: #4b5563;
}

.focus\:ring-offset-gray-700:focus{
  --tw-ring-offset-color: #374151;
}

.focus\:ring-offset-gray-800:focus{
  --tw-ring-offset-color: #1f2937;
}

.focus\:ring-offset-gray-900:focus{
  --tw-ring-offset-color: #111827;
}

.focus\:ring-offset-red-50:focus{
  --tw-ring-offset-color: #fef2f2;
}

.focus\:ring-offset-red-100:focus{
  --tw-ring-offset-color: #fee2e2;
}

.focus\:ring-offset-red-200:focus{
  --tw-ring-offset-color: #fecaca;
}

.focus\:ring-offset-red-300:focus{
  --tw-ring-offset-color: #fca5a5;
}

.focus\:ring-offset-red-400:focus{
  --tw-ring-offset-color: #f87171;
}

.focus\:ring-offset-red-500:focus{
  --tw-ring-offset-color: #ef4444;
}

.focus\:ring-offset-red-600:focus{
  --tw-ring-offset-color: #dc2626;
}

.focus\:ring-offset-red-700:focus{
  --tw-ring-offset-color: #b91c1c;
}

.focus\:ring-offset-red-800:focus{
  --tw-ring-offset-color: #991b1b;
}

.focus\:ring-offset-red-900:focus{
  --tw-ring-offset-color: #7f1d1d;
}

.focus\:ring-offset-red-light:focus{
  --tw-ring-offset-color: #EA7A7A;
}

.focus\:ring-offset-red-default:focus{
  --tw-ring-offset-color: #B90000;
}

.focus\:ring-offset-red-dark:focus{
  --tw-ring-offset-color: #580000;
}

.focus\:ring-offset-yellow-50:focus{
  --tw-ring-offset-color: #fffbeb;
}

.focus\:ring-offset-yellow-100:focus{
  --tw-ring-offset-color: #fef3c7;
}

.focus\:ring-offset-yellow-200:focus{
  --tw-ring-offset-color: #fde68a;
}

.focus\:ring-offset-yellow-300:focus{
  --tw-ring-offset-color: #fcd34d;
}

.focus\:ring-offset-yellow-400:focus{
  --tw-ring-offset-color: #fbbf24;
}

.focus\:ring-offset-yellow-500:focus{
  --tw-ring-offset-color: #f59e0b;
}

.focus\:ring-offset-yellow-600:focus{
  --tw-ring-offset-color: #d97706;
}

.focus\:ring-offset-yellow-700:focus{
  --tw-ring-offset-color: #b45309;
}

.focus\:ring-offset-yellow-800:focus{
  --tw-ring-offset-color: #92400e;
}

.focus\:ring-offset-yellow-900:focus{
  --tw-ring-offset-color: #78350f;
}

.focus\:ring-offset-green-50:focus{
  --tw-ring-offset-color: #ecfdf5;
}

.focus\:ring-offset-green-100:focus{
  --tw-ring-offset-color: #d1fae5;
}

.focus\:ring-offset-green-200:focus{
  --tw-ring-offset-color: #a7f3d0;
}

.focus\:ring-offset-green-300:focus{
  --tw-ring-offset-color: #6ee7b7;
}

.focus\:ring-offset-green-400:focus{
  --tw-ring-offset-color: #34d399;
}

.focus\:ring-offset-green-500:focus{
  --tw-ring-offset-color: #10b981;
}

.focus\:ring-offset-green-600:focus{
  --tw-ring-offset-color: #059669;
}

.focus\:ring-offset-green-700:focus{
  --tw-ring-offset-color: #047857;
}

.focus\:ring-offset-green-800:focus{
  --tw-ring-offset-color: #065f46;
}

.focus\:ring-offset-green-900:focus{
  --tw-ring-offset-color: #064e3b;
}

.focus\:ring-offset-green-light:focus{
  --tw-ring-offset-color: #B5D1B9;
}

.focus\:ring-offset-green-default:focus{
  --tw-ring-offset-color: #263B29;
}

.focus\:ring-offset-green-dark:focus{
  --tw-ring-offset-color: #1C251E;
}

.focus\:ring-offset-blue-50:focus{
  --tw-ring-offset-color: #eff6ff;
}

.focus\:ring-offset-blue-100:focus{
  --tw-ring-offset-color: #dbeafe;
}

.focus\:ring-offset-blue-200:focus{
  --tw-ring-offset-color: #bfdbfe;
}

.focus\:ring-offset-blue-300:focus{
  --tw-ring-offset-color: #93c5fd;
}

.focus\:ring-offset-blue-400:focus{
  --tw-ring-offset-color: #60a5fa;
}

.focus\:ring-offset-blue-500:focus{
  --tw-ring-offset-color: #3b82f6;
}

.focus\:ring-offset-blue-600:focus{
  --tw-ring-offset-color: #2563eb;
}

.focus\:ring-offset-blue-700:focus{
  --tw-ring-offset-color: #1d4ed8;
}

.focus\:ring-offset-blue-800:focus{
  --tw-ring-offset-color: #1e40af;
}

.focus\:ring-offset-blue-900:focus{
  --tw-ring-offset-color: #1e3a8a;
}

.focus\:ring-offset-indigo-50:focus{
  --tw-ring-offset-color: #eef2ff;
}

.focus\:ring-offset-indigo-100:focus{
  --tw-ring-offset-color: #e0e7ff;
}

.focus\:ring-offset-indigo-200:focus{
  --tw-ring-offset-color: #c7d2fe;
}

.focus\:ring-offset-indigo-300:focus{
  --tw-ring-offset-color: #a5b4fc;
}

.focus\:ring-offset-indigo-400:focus{
  --tw-ring-offset-color: #818cf8;
}

.focus\:ring-offset-indigo-500:focus{
  --tw-ring-offset-color: #6366f1;
}

.focus\:ring-offset-indigo-600:focus{
  --tw-ring-offset-color: #4f46e5;
}

.focus\:ring-offset-indigo-700:focus{
  --tw-ring-offset-color: #4338ca;
}

.focus\:ring-offset-indigo-800:focus{
  --tw-ring-offset-color: #3730a3;
}

.focus\:ring-offset-indigo-900:focus{
  --tw-ring-offset-color: #312e81;
}

.focus\:ring-offset-purple-50:focus{
  --tw-ring-offset-color: #f5f3ff;
}

.focus\:ring-offset-purple-100:focus{
  --tw-ring-offset-color: #ede9fe;
}

.focus\:ring-offset-purple-200:focus{
  --tw-ring-offset-color: #ddd6fe;
}

.focus\:ring-offset-purple-300:focus{
  --tw-ring-offset-color: #c4b5fd;
}

.focus\:ring-offset-purple-400:focus{
  --tw-ring-offset-color: #a78bfa;
}

.focus\:ring-offset-purple-500:focus{
  --tw-ring-offset-color: #8b5cf6;
}

.focus\:ring-offset-purple-600:focus{
  --tw-ring-offset-color: #7c3aed;
}

.focus\:ring-offset-purple-700:focus{
  --tw-ring-offset-color: #6d28d9;
}

.focus\:ring-offset-purple-800:focus{
  --tw-ring-offset-color: #5b21b6;
}

.focus\:ring-offset-purple-900:focus{
  --tw-ring-offset-color: #4c1d95;
}

.focus\:ring-offset-pink-50:focus{
  --tw-ring-offset-color: #fdf2f8;
}

.focus\:ring-offset-pink-100:focus{
  --tw-ring-offset-color: #fce7f3;
}

.focus\:ring-offset-pink-200:focus{
  --tw-ring-offset-color: #fbcfe8;
}

.focus\:ring-offset-pink-300:focus{
  --tw-ring-offset-color: #f9a8d4;
}

.focus\:ring-offset-pink-400:focus{
  --tw-ring-offset-color: #f472b6;
}

.focus\:ring-offset-pink-500:focus{
  --tw-ring-offset-color: #ec4899;
}

.focus\:ring-offset-pink-600:focus{
  --tw-ring-offset-color: #db2777;
}

.focus\:ring-offset-pink-700:focus{
  --tw-ring-offset-color: #be185d;
}

.focus\:ring-offset-pink-800:focus{
  --tw-ring-offset-color: #9d174d;
}

.focus\:ring-offset-pink-900:focus{
  --tw-ring-offset-color: #831843;
}

.focus\:ring-offset-brown-light:focus{
  --tw-ring-offset-color: #f0e9de;
}

.focus\:ring-offset-brown-semi:focus{
  --tw-ring-offset-color: #ded6ca;
}

.focus\:ring-offset-brown-default:focus{
  --tw-ring-offset-color: #7b6c5c;
}

.focus\:ring-offset-brown-dark:focus{
  --tw-ring-offset-color: #3d2706;
}

.focus\:ring-offset-success-light:focus{
  --tw-ring-offset-color: #91E09C;
}

.focus\:ring-offset-success-default:focus{
  --tw-ring-offset-color: #2D993C;
}

.focus\:ring-offset-success-dark:focus{
  --tw-ring-offset-color: #263B29;
}

.focus\:ring-offset-error-light:focus{
  --tw-ring-offset-color: #F98686;
}

.focus\:ring-offset-error-default:focus{
  --tw-ring-offset-color: #CB0707;
}

.focus\:ring-offset-error-dark:focus{
  --tw-ring-offset-color: #580000;
}

.focus\:ring-offset-navigation-dark:focus{
  --tw-ring-offset-color: #ffcd00;
}

.filter{
  --tw-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
  --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter-none{
  filter: none;
}

.blur-0{
  --tw-blur: blur(0);
}

.blur-none{
  --tw-blur: blur(0);
}

.blur-sm{
  --tw-blur: blur(4px);
}

.blur{
  --tw-blur: blur(8px);
}

.blur-md{
  --tw-blur: blur(12px);
}

.blur-lg{
  --tw-blur: blur(16px);
}

.blur-xl{
  --tw-blur: blur(24px);
}

.blur-2xl{
  --tw-blur: blur(40px);
}

.blur-3xl{
  --tw-blur: blur(64px);
}

.brightness-0{
  --tw-brightness: brightness(0);
}

.brightness-50{
  --tw-brightness: brightness(.5);
}

.brightness-75{
  --tw-brightness: brightness(.75);
}

.brightness-90{
  --tw-brightness: brightness(.9);
}

.brightness-95{
  --tw-brightness: brightness(.95);
}

.brightness-100{
  --tw-brightness: brightness(1);
}

.brightness-105{
  --tw-brightness: brightness(1.05);
}

.brightness-110{
  --tw-brightness: brightness(1.1);
}

.brightness-125{
  --tw-brightness: brightness(1.25);
}

.brightness-150{
  --tw-brightness: brightness(1.5);
}

.brightness-200{
  --tw-brightness: brightness(2);
}

.contrast-0{
  --tw-contrast: contrast(0);
}

.contrast-50{
  --tw-contrast: contrast(.5);
}

.contrast-75{
  --tw-contrast: contrast(.75);
}

.contrast-100{
  --tw-contrast: contrast(1);
}

.contrast-125{
  --tw-contrast: contrast(1.25);
}

.contrast-150{
  --tw-contrast: contrast(1.5);
}

.contrast-200{
  --tw-contrast: contrast(2);
}

.drop-shadow-sm{
  --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
}

.drop-shadow{
  --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
}

.drop-shadow-md{
  --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.drop-shadow-lg{
  --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.drop-shadow-xl{
  --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
}

.drop-shadow-2xl{
  --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

.drop-shadow-none{
  --tw-drop-shadow: drop-shadow(0 0 #0000);
}

.grayscale-0{
  --tw-grayscale: grayscale(0);
}

.grayscale{
  --tw-grayscale: grayscale(100%);
}

.hue-rotate-0{
  --tw-hue-rotate: hue-rotate(0deg);
}

.hue-rotate-15{
  --tw-hue-rotate: hue-rotate(15deg);
}

.hue-rotate-30{
  --tw-hue-rotate: hue-rotate(30deg);
}

.hue-rotate-60{
  --tw-hue-rotate: hue-rotate(60deg);
}

.hue-rotate-90{
  --tw-hue-rotate: hue-rotate(90deg);
}

.hue-rotate-180{
  --tw-hue-rotate: hue-rotate(180deg);
}

.-hue-rotate-180{
  --tw-hue-rotate: hue-rotate(-180deg);
}

.-hue-rotate-90{
  --tw-hue-rotate: hue-rotate(-90deg);
}

.-hue-rotate-60{
  --tw-hue-rotate: hue-rotate(-60deg);
}

.-hue-rotate-30{
  --tw-hue-rotate: hue-rotate(-30deg);
}

.-hue-rotate-15{
  --tw-hue-rotate: hue-rotate(-15deg);
}

.invert-0{
  --tw-invert: invert(0);
}

.invert{
  --tw-invert: invert(100%);
}

.saturate-0{
  --tw-saturate: saturate(0);
}

.saturate-50{
  --tw-saturate: saturate(.5);
}

.saturate-100{
  --tw-saturate: saturate(1);
}

.saturate-150{
  --tw-saturate: saturate(1.5);
}

.saturate-200{
  --tw-saturate: saturate(2);
}

.sepia-0{
  --tw-sepia: sepia(0);
}

.sepia{
  --tw-sepia: sepia(100%);
}

.backdrop-filter{
  --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-filter-none{
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

.backdrop-blur-0{
  --tw-backdrop-blur: blur(0);
}

.backdrop-blur-none{
  --tw-backdrop-blur: blur(0);
}

.backdrop-blur-sm{
  --tw-backdrop-blur: blur(4px);
}

.backdrop-blur{
  --tw-backdrop-blur: blur(8px);
}

.backdrop-blur-md{
  --tw-backdrop-blur: blur(12px);
}

.backdrop-blur-lg{
  --tw-backdrop-blur: blur(16px);
}

.backdrop-blur-xl{
  --tw-backdrop-blur: blur(24px);
}

.backdrop-blur-2xl{
  --tw-backdrop-blur: blur(40px);
}

.backdrop-blur-3xl{
  --tw-backdrop-blur: blur(64px);
}

.backdrop-brightness-0{
  --tw-backdrop-brightness: brightness(0);
}

.backdrop-brightness-50{
  --tw-backdrop-brightness: brightness(.5);
}

.backdrop-brightness-75{
  --tw-backdrop-brightness: brightness(.75);
}

.backdrop-brightness-90{
  --tw-backdrop-brightness: brightness(.9);
}

.backdrop-brightness-95{
  --tw-backdrop-brightness: brightness(.95);
}

.backdrop-brightness-100{
  --tw-backdrop-brightness: brightness(1);
}

.backdrop-brightness-105{
  --tw-backdrop-brightness: brightness(1.05);
}

.backdrop-brightness-110{
  --tw-backdrop-brightness: brightness(1.1);
}

.backdrop-brightness-125{
  --tw-backdrop-brightness: brightness(1.25);
}

.backdrop-brightness-150{
  --tw-backdrop-brightness: brightness(1.5);
}

.backdrop-brightness-200{
  --tw-backdrop-brightness: brightness(2);
}

.backdrop-contrast-0{
  --tw-backdrop-contrast: contrast(0);
}

.backdrop-contrast-50{
  --tw-backdrop-contrast: contrast(.5);
}

.backdrop-contrast-75{
  --tw-backdrop-contrast: contrast(.75);
}

.backdrop-contrast-100{
  --tw-backdrop-contrast: contrast(1);
}

.backdrop-contrast-125{
  --tw-backdrop-contrast: contrast(1.25);
}

.backdrop-contrast-150{
  --tw-backdrop-contrast: contrast(1.5);
}

.backdrop-contrast-200{
  --tw-backdrop-contrast: contrast(2);
}

.backdrop-grayscale-0{
  --tw-backdrop-grayscale: grayscale(0);
}

.backdrop-grayscale{
  --tw-backdrop-grayscale: grayscale(100%);
}

.backdrop-hue-rotate-0{
  --tw-backdrop-hue-rotate: hue-rotate(0deg);
}

.backdrop-hue-rotate-15{
  --tw-backdrop-hue-rotate: hue-rotate(15deg);
}

.backdrop-hue-rotate-30{
  --tw-backdrop-hue-rotate: hue-rotate(30deg);
}

.backdrop-hue-rotate-60{
  --tw-backdrop-hue-rotate: hue-rotate(60deg);
}

.backdrop-hue-rotate-90{
  --tw-backdrop-hue-rotate: hue-rotate(90deg);
}

.backdrop-hue-rotate-180{
  --tw-backdrop-hue-rotate: hue-rotate(180deg);
}

.-backdrop-hue-rotate-180{
  --tw-backdrop-hue-rotate: hue-rotate(-180deg);
}

.-backdrop-hue-rotate-90{
  --tw-backdrop-hue-rotate: hue-rotate(-90deg);
}

.-backdrop-hue-rotate-60{
  --tw-backdrop-hue-rotate: hue-rotate(-60deg);
}

.-backdrop-hue-rotate-30{
  --tw-backdrop-hue-rotate: hue-rotate(-30deg);
}

.-backdrop-hue-rotate-15{
  --tw-backdrop-hue-rotate: hue-rotate(-15deg);
}

.backdrop-invert-0{
  --tw-backdrop-invert: invert(0);
}

.backdrop-invert{
  --tw-backdrop-invert: invert(100%);
}

.backdrop-opacity-0{
  --tw-backdrop-opacity: opacity(0);
}

.backdrop-opacity-5{
  --tw-backdrop-opacity: opacity(0.05);
}

.backdrop-opacity-10{
  --tw-backdrop-opacity: opacity(0.1);
}

.backdrop-opacity-20{
  --tw-backdrop-opacity: opacity(0.2);
}

.backdrop-opacity-25{
  --tw-backdrop-opacity: opacity(0.25);
}

.backdrop-opacity-30{
  --tw-backdrop-opacity: opacity(0.3);
}

.backdrop-opacity-40{
  --tw-backdrop-opacity: opacity(0.4);
}

.backdrop-opacity-50{
  --tw-backdrop-opacity: opacity(0.5);
}

.backdrop-opacity-60{
  --tw-backdrop-opacity: opacity(0.6);
}

.backdrop-opacity-70{
  --tw-backdrop-opacity: opacity(0.7);
}

.backdrop-opacity-75{
  --tw-backdrop-opacity: opacity(0.75);
}

.backdrop-opacity-80{
  --tw-backdrop-opacity: opacity(0.8);
}

.backdrop-opacity-90{
  --tw-backdrop-opacity: opacity(0.9);
}

.backdrop-opacity-95{
  --tw-backdrop-opacity: opacity(0.95);
}

.backdrop-opacity-100{
  --tw-backdrop-opacity: opacity(1);
}

.backdrop-saturate-0{
  --tw-backdrop-saturate: saturate(0);
}

.backdrop-saturate-50{
  --tw-backdrop-saturate: saturate(.5);
}

.backdrop-saturate-100{
  --tw-backdrop-saturate: saturate(1);
}

.backdrop-saturate-150{
  --tw-backdrop-saturate: saturate(1.5);
}

.backdrop-saturate-200{
  --tw-backdrop-saturate: saturate(2);
}

.backdrop-sepia-0{
  --tw-backdrop-sepia: sepia(0);
}

.backdrop-sepia{
  --tw-backdrop-sepia: sepia(100%);
}

.transition-none{
  transition-property: none;
}

.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors{
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-shadow{
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.delay-75{
  transition-delay: 75ms;
}

.delay-100{
  transition-delay: 100ms;
}

.delay-150{
  transition-delay: 150ms;
}

.delay-200{
  transition-delay: 200ms;
}

.delay-300{
  transition-delay: 300ms;
}

.delay-500{
  transition-delay: 500ms;
}

.delay-700{
  transition-delay: 700ms;
}

.delay-1000{
  transition-delay: 1000ms;
}

.duration-75{
  transition-duration: 75ms;
}

.duration-100{
  transition-duration: 100ms;
}

.duration-150{
  transition-duration: 150ms;
}

.duration-200{
  transition-duration: 200ms;
}

.duration-300{
  transition-duration: 300ms;
}

.duration-500{
  transition-duration: 500ms;
}

.duration-700{
  transition-duration: 700ms;
}

.duration-1000{
  transition-duration: 1000ms;
}

.ease-linear{
  transition-timing-function: linear;
}

.ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px){
  .mobile\:container{
    width: 100%;
  }

  @media (min-width: 768px){
    .mobile\:container{
      max-width: 768px;
    }
  }

  @media (min-width: 1200px){
    .mobile\:container{
      max-width: 1200px;
    }
  }

  .mobile\:bw-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .mobile\:bw-hover-animation, .mobile\:bw-hover-menu > li > a{
    opacity: 1;
  }

  .mobile\:bw-hover-animation, .mobile\:bw-hover-menu > li > a{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .mobile\:bw-hover-animation, .mobile\:bw-hover-menu > li > a{
    transition-duration: 300ms;
  }

  .mobile\:bw-hover-animation:hover, .mobile\:bw-hover-menu > li > a:hover{
    opacity: 0.5;
  }

  .mobile\:bw-hover-animation:hover, .mobile\:bw-hover-menu > li > a:hover{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .mobile\:bw-hover-animation:hover, .mobile\:bw-hover-menu > li > a:hover{
    transition-duration: 300ms;
  }

  .mobile\:sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .mobile\:not-sr-only{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .mobile\:focus-within\:sr-only:focus-within{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .mobile\:focus-within\:not-sr-only:focus-within{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .mobile\:focus\:sr-only:focus{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .mobile\:focus\:not-sr-only:focus{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .mobile\:pointer-events-none{
    pointer-events: none;
  }

  .mobile\:pointer-events-auto{
    pointer-events: auto;
  }

  .mobile\:visible{
    visibility: visible;
  }

  .mobile\:invisible{
    visibility: hidden;
  }

  .mobile\:static{
    position: static;
  }

  .mobile\:fixed{
    position: fixed;
  }

  .mobile\:absolute{
    position: absolute;
  }

  .mobile\:relative{
    position: relative;
  }

  .mobile\:sticky{
    position: -webkit-sticky;
    position: sticky;
  }

  .mobile\:inset-0{
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }

  .mobile\:inset-1{
    top: 0.25rem;
    right: 0.25rem;
    bottom: 0.25rem;
    left: 0.25rem;
  }

  .mobile\:inset-2{
    top: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
  }

  .mobile\:inset-3{
    top: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .mobile\:inset-4{
    top: 1rem;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .mobile\:inset-5{
    top: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .mobile\:inset-6{
    top: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .mobile\:inset-7{
    top: 1.75rem;
    right: 1.75rem;
    bottom: 1.75rem;
    left: 1.75rem;
  }

  .mobile\:inset-8{
    top: 2rem;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
  }

  .mobile\:inset-9{
    top: 2.25rem;
    right: 2.25rem;
    bottom: 2.25rem;
    left: 2.25rem;
  }

  .mobile\:inset-10{
    top: 2.5rem;
    right: 2.5rem;
    bottom: 2.5rem;
    left: 2.5rem;
  }

  .mobile\:inset-11{
    top: 2.75rem;
    right: 2.75rem;
    bottom: 2.75rem;
    left: 2.75rem;
  }

  .mobile\:inset-12{
    top: 3rem;
    right: 3rem;
    bottom: 3rem;
    left: 3rem;
  }

  .mobile\:inset-14{
    top: 3.5rem;
    right: 3.5rem;
    bottom: 3.5rem;
    left: 3.5rem;
  }

  .mobile\:inset-16{
    top: 4rem;
    right: 4rem;
    bottom: 4rem;
    left: 4rem;
  }

  .mobile\:inset-20{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .mobile\:inset-24{
    top: 6rem;
    right: 6rem;
    bottom: 6rem;
    left: 6rem;
  }

  .mobile\:inset-28{
    top: 7rem;
    right: 7rem;
    bottom: 7rem;
    left: 7rem;
  }

  .mobile\:inset-32{
    top: 8rem;
    right: 8rem;
    bottom: 8rem;
    left: 8rem;
  }

  .mobile\:inset-36{
    top: 9rem;
    right: 9rem;
    bottom: 9rem;
    left: 9rem;
  }

  .mobile\:inset-40{
    top: 10rem;
    right: 10rem;
    bottom: 10rem;
    left: 10rem;
  }

  .mobile\:inset-44{
    top: 11rem;
    right: 11rem;
    bottom: 11rem;
    left: 11rem;
  }

  .mobile\:inset-48{
    top: 12rem;
    right: 12rem;
    bottom: 12rem;
    left: 12rem;
  }

  .mobile\:inset-52{
    top: 13rem;
    right: 13rem;
    bottom: 13rem;
    left: 13rem;
  }

  .mobile\:inset-56{
    top: 14rem;
    right: 14rem;
    bottom: 14rem;
    left: 14rem;
  }

  .mobile\:inset-60{
    top: 15rem;
    right: 15rem;
    bottom: 15rem;
    left: 15rem;
  }

  .mobile\:inset-64{
    top: 16rem;
    right: 16rem;
    bottom: 16rem;
    left: 16rem;
  }

  .mobile\:inset-72{
    top: 18rem;
    right: 18rem;
    bottom: 18rem;
    left: 18rem;
  }

  .mobile\:inset-80{
    top: 20rem;
    right: 20rem;
    bottom: 20rem;
    left: 20rem;
  }

  .mobile\:inset-96{
    top: 24rem;
    right: 24rem;
    bottom: 24rem;
    left: 24rem;
  }

  .mobile\:inset-auto{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .mobile\:inset-px{
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
  }

  .mobile\:inset-0\.5{
    top: 0.125rem;
    right: 0.125rem;
    bottom: 0.125rem;
    left: 0.125rem;
  }

  .mobile\:inset-1\.5{
    top: 0.375rem;
    right: 0.375rem;
    bottom: 0.375rem;
    left: 0.375rem;
  }

  .mobile\:inset-2\.5{
    top: 0.625rem;
    right: 0.625rem;
    bottom: 0.625rem;
    left: 0.625rem;
  }

  .mobile\:inset-3\.5{
    top: 0.875rem;
    right: 0.875rem;
    bottom: 0.875rem;
    left: 0.875rem;
  }

  .mobile\:-inset-0{
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }

  .mobile\:-inset-1{
    top: -0.25rem;
    right: -0.25rem;
    bottom: -0.25rem;
    left: -0.25rem;
  }

  .mobile\:-inset-2{
    top: -0.5rem;
    right: -0.5rem;
    bottom: -0.5rem;
    left: -0.5rem;
  }

  .mobile\:-inset-3{
    top: -0.75rem;
    right: -0.75rem;
    bottom: -0.75rem;
    left: -0.75rem;
  }

  .mobile\:-inset-4{
    top: -1rem;
    right: -1rem;
    bottom: -1rem;
    left: -1rem;
  }

  .mobile\:-inset-5{
    top: -1.25rem;
    right: -1.25rem;
    bottom: -1.25rem;
    left: -1.25rem;
  }

  .mobile\:-inset-6{
    top: -1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    left: -1.5rem;
  }

  .mobile\:-inset-7{
    top: -1.75rem;
    right: -1.75rem;
    bottom: -1.75rem;
    left: -1.75rem;
  }

  .mobile\:-inset-8{
    top: -2rem;
    right: -2rem;
    bottom: -2rem;
    left: -2rem;
  }

  .mobile\:-inset-9{
    top: -2.25rem;
    right: -2.25rem;
    bottom: -2.25rem;
    left: -2.25rem;
  }

  .mobile\:-inset-10{
    top: -2.5rem;
    right: -2.5rem;
    bottom: -2.5rem;
    left: -2.5rem;
  }

  .mobile\:-inset-11{
    top: -2.75rem;
    right: -2.75rem;
    bottom: -2.75rem;
    left: -2.75rem;
  }

  .mobile\:-inset-12{
    top: -3rem;
    right: -3rem;
    bottom: -3rem;
    left: -3rem;
  }

  .mobile\:-inset-14{
    top: -3.5rem;
    right: -3.5rem;
    bottom: -3.5rem;
    left: -3.5rem;
  }

  .mobile\:-inset-16{
    top: -4rem;
    right: -4rem;
    bottom: -4rem;
    left: -4rem;
  }

  .mobile\:-inset-20{
    top: -5rem;
    right: -5rem;
    bottom: -5rem;
    left: -5rem;
  }

  .mobile\:-inset-24{
    top: -6rem;
    right: -6rem;
    bottom: -6rem;
    left: -6rem;
  }

  .mobile\:-inset-28{
    top: -7rem;
    right: -7rem;
    bottom: -7rem;
    left: -7rem;
  }

  .mobile\:-inset-32{
    top: -8rem;
    right: -8rem;
    bottom: -8rem;
    left: -8rem;
  }

  .mobile\:-inset-36{
    top: -9rem;
    right: -9rem;
    bottom: -9rem;
    left: -9rem;
  }

  .mobile\:-inset-40{
    top: -10rem;
    right: -10rem;
    bottom: -10rem;
    left: -10rem;
  }

  .mobile\:-inset-44{
    top: -11rem;
    right: -11rem;
    bottom: -11rem;
    left: -11rem;
  }

  .mobile\:-inset-48{
    top: -12rem;
    right: -12rem;
    bottom: -12rem;
    left: -12rem;
  }

  .mobile\:-inset-52{
    top: -13rem;
    right: -13rem;
    bottom: -13rem;
    left: -13rem;
  }

  .mobile\:-inset-56{
    top: -14rem;
    right: -14rem;
    bottom: -14rem;
    left: -14rem;
  }

  .mobile\:-inset-60{
    top: -15rem;
    right: -15rem;
    bottom: -15rem;
    left: -15rem;
  }

  .mobile\:-inset-64{
    top: -16rem;
    right: -16rem;
    bottom: -16rem;
    left: -16rem;
  }

  .mobile\:-inset-72{
    top: -18rem;
    right: -18rem;
    bottom: -18rem;
    left: -18rem;
  }

  .mobile\:-inset-80{
    top: -20rem;
    right: -20rem;
    bottom: -20rem;
    left: -20rem;
  }

  .mobile\:-inset-96{
    top: -24rem;
    right: -24rem;
    bottom: -24rem;
    left: -24rem;
  }

  .mobile\:-inset-px{
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
  }

  .mobile\:-inset-0\.5{
    top: -0.125rem;
    right: -0.125rem;
    bottom: -0.125rem;
    left: -0.125rem;
  }

  .mobile\:-inset-1\.5{
    top: -0.375rem;
    right: -0.375rem;
    bottom: -0.375rem;
    left: -0.375rem;
  }

  .mobile\:-inset-2\.5{
    top: -0.625rem;
    right: -0.625rem;
    bottom: -0.625rem;
    left: -0.625rem;
  }

  .mobile\:-inset-3\.5{
    top: -0.875rem;
    right: -0.875rem;
    bottom: -0.875rem;
    left: -0.875rem;
  }

  .mobile\:inset-1\/2{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .mobile\:inset-1\/3{
    top: 33.333333%;
    right: 33.333333%;
    bottom: 33.333333%;
    left: 33.333333%;
  }

  .mobile\:inset-2\/3{
    top: 66.666667%;
    right: 66.666667%;
    bottom: 66.666667%;
    left: 66.666667%;
  }

  .mobile\:inset-1\/4{
    top: 25%;
    right: 25%;
    bottom: 25%;
    left: 25%;
  }

  .mobile\:inset-2\/4{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .mobile\:inset-3\/4{
    top: 75%;
    right: 75%;
    bottom: 75%;
    left: 75%;
  }

  .mobile\:inset-full{
    top: 100%;
    right: 100%;
    bottom: 100%;
    left: 100%;
  }

  .mobile\:-inset-1\/2{
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
  }

  .mobile\:-inset-1\/3{
    top: -33.333333%;
    right: -33.333333%;
    bottom: -33.333333%;
    left: -33.333333%;
  }

  .mobile\:-inset-2\/3{
    top: -66.666667%;
    right: -66.666667%;
    bottom: -66.666667%;
    left: -66.666667%;
  }

  .mobile\:-inset-1\/4{
    top: -25%;
    right: -25%;
    bottom: -25%;
    left: -25%;
  }

  .mobile\:-inset-2\/4{
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
  }

  .mobile\:-inset-3\/4{
    top: -75%;
    right: -75%;
    bottom: -75%;
    left: -75%;
  }

  .mobile\:-inset-full{
    top: -100%;
    right: -100%;
    bottom: -100%;
    left: -100%;
  }

  .mobile\:inset-x-0{
    left: 0px;
    right: 0px;
  }

  .mobile\:inset-x-1{
    left: 0.25rem;
    right: 0.25rem;
  }

  .mobile\:inset-x-2{
    left: 0.5rem;
    right: 0.5rem;
  }

  .mobile\:inset-x-3{
    left: 0.75rem;
    right: 0.75rem;
  }

  .mobile\:inset-x-4{
    left: 1rem;
    right: 1rem;
  }

  .mobile\:inset-x-5{
    left: 1.25rem;
    right: 1.25rem;
  }

  .mobile\:inset-x-6{
    left: 1.5rem;
    right: 1.5rem;
  }

  .mobile\:inset-x-7{
    left: 1.75rem;
    right: 1.75rem;
  }

  .mobile\:inset-x-8{
    left: 2rem;
    right: 2rem;
  }

  .mobile\:inset-x-9{
    left: 2.25rem;
    right: 2.25rem;
  }

  .mobile\:inset-x-10{
    left: 2.5rem;
    right: 2.5rem;
  }

  .mobile\:inset-x-11{
    left: 2.75rem;
    right: 2.75rem;
  }

  .mobile\:inset-x-12{
    left: 3rem;
    right: 3rem;
  }

  .mobile\:inset-x-14{
    left: 3.5rem;
    right: 3.5rem;
  }

  .mobile\:inset-x-16{
    left: 4rem;
    right: 4rem;
  }

  .mobile\:inset-x-20{
    left: 5rem;
    right: 5rem;
  }

  .mobile\:inset-x-24{
    left: 6rem;
    right: 6rem;
  }

  .mobile\:inset-x-28{
    left: 7rem;
    right: 7rem;
  }

  .mobile\:inset-x-32{
    left: 8rem;
    right: 8rem;
  }

  .mobile\:inset-x-36{
    left: 9rem;
    right: 9rem;
  }

  .mobile\:inset-x-40{
    left: 10rem;
    right: 10rem;
  }

  .mobile\:inset-x-44{
    left: 11rem;
    right: 11rem;
  }

  .mobile\:inset-x-48{
    left: 12rem;
    right: 12rem;
  }

  .mobile\:inset-x-52{
    left: 13rem;
    right: 13rem;
  }

  .mobile\:inset-x-56{
    left: 14rem;
    right: 14rem;
  }

  .mobile\:inset-x-60{
    left: 15rem;
    right: 15rem;
  }

  .mobile\:inset-x-64{
    left: 16rem;
    right: 16rem;
  }

  .mobile\:inset-x-72{
    left: 18rem;
    right: 18rem;
  }

  .mobile\:inset-x-80{
    left: 20rem;
    right: 20rem;
  }

  .mobile\:inset-x-96{
    left: 24rem;
    right: 24rem;
  }

  .mobile\:inset-x-auto{
    left: auto;
    right: auto;
  }

  .mobile\:inset-x-px{
    left: 1px;
    right: 1px;
  }

  .mobile\:inset-x-0\.5{
    left: 0.125rem;
    right: 0.125rem;
  }

  .mobile\:inset-x-1\.5{
    left: 0.375rem;
    right: 0.375rem;
  }

  .mobile\:inset-x-2\.5{
    left: 0.625rem;
    right: 0.625rem;
  }

  .mobile\:inset-x-3\.5{
    left: 0.875rem;
    right: 0.875rem;
  }

  .mobile\:-inset-x-0{
    left: 0px;
    right: 0px;
  }

  .mobile\:-inset-x-1{
    left: -0.25rem;
    right: -0.25rem;
  }

  .mobile\:-inset-x-2{
    left: -0.5rem;
    right: -0.5rem;
  }

  .mobile\:-inset-x-3{
    left: -0.75rem;
    right: -0.75rem;
  }

  .mobile\:-inset-x-4{
    left: -1rem;
    right: -1rem;
  }

  .mobile\:-inset-x-5{
    left: -1.25rem;
    right: -1.25rem;
  }

  .mobile\:-inset-x-6{
    left: -1.5rem;
    right: -1.5rem;
  }

  .mobile\:-inset-x-7{
    left: -1.75rem;
    right: -1.75rem;
  }

  .mobile\:-inset-x-8{
    left: -2rem;
    right: -2rem;
  }

  .mobile\:-inset-x-9{
    left: -2.25rem;
    right: -2.25rem;
  }

  .mobile\:-inset-x-10{
    left: -2.5rem;
    right: -2.5rem;
  }

  .mobile\:-inset-x-11{
    left: -2.75rem;
    right: -2.75rem;
  }

  .mobile\:-inset-x-12{
    left: -3rem;
    right: -3rem;
  }

  .mobile\:-inset-x-14{
    left: -3.5rem;
    right: -3.5rem;
  }

  .mobile\:-inset-x-16{
    left: -4rem;
    right: -4rem;
  }

  .mobile\:-inset-x-20{
    left: -5rem;
    right: -5rem;
  }

  .mobile\:-inset-x-24{
    left: -6rem;
    right: -6rem;
  }

  .mobile\:-inset-x-28{
    left: -7rem;
    right: -7rem;
  }

  .mobile\:-inset-x-32{
    left: -8rem;
    right: -8rem;
  }

  .mobile\:-inset-x-36{
    left: -9rem;
    right: -9rem;
  }

  .mobile\:-inset-x-40{
    left: -10rem;
    right: -10rem;
  }

  .mobile\:-inset-x-44{
    left: -11rem;
    right: -11rem;
  }

  .mobile\:-inset-x-48{
    left: -12rem;
    right: -12rem;
  }

  .mobile\:-inset-x-52{
    left: -13rem;
    right: -13rem;
  }

  .mobile\:-inset-x-56{
    left: -14rem;
    right: -14rem;
  }

  .mobile\:-inset-x-60{
    left: -15rem;
    right: -15rem;
  }

  .mobile\:-inset-x-64{
    left: -16rem;
    right: -16rem;
  }

  .mobile\:-inset-x-72{
    left: -18rem;
    right: -18rem;
  }

  .mobile\:-inset-x-80{
    left: -20rem;
    right: -20rem;
  }

  .mobile\:-inset-x-96{
    left: -24rem;
    right: -24rem;
  }

  .mobile\:-inset-x-px{
    left: -1px;
    right: -1px;
  }

  .mobile\:-inset-x-0\.5{
    left: -0.125rem;
    right: -0.125rem;
  }

  .mobile\:-inset-x-1\.5{
    left: -0.375rem;
    right: -0.375rem;
  }

  .mobile\:-inset-x-2\.5{
    left: -0.625rem;
    right: -0.625rem;
  }

  .mobile\:-inset-x-3\.5{
    left: -0.875rem;
    right: -0.875rem;
  }

  .mobile\:inset-x-1\/2{
    left: 50%;
    right: 50%;
  }

  .mobile\:inset-x-1\/3{
    left: 33.333333%;
    right: 33.333333%;
  }

  .mobile\:inset-x-2\/3{
    left: 66.666667%;
    right: 66.666667%;
  }

  .mobile\:inset-x-1\/4{
    left: 25%;
    right: 25%;
  }

  .mobile\:inset-x-2\/4{
    left: 50%;
    right: 50%;
  }

  .mobile\:inset-x-3\/4{
    left: 75%;
    right: 75%;
  }

  .mobile\:inset-x-full{
    left: 100%;
    right: 100%;
  }

  .mobile\:-inset-x-1\/2{
    left: -50%;
    right: -50%;
  }

  .mobile\:-inset-x-1\/3{
    left: -33.333333%;
    right: -33.333333%;
  }

  .mobile\:-inset-x-2\/3{
    left: -66.666667%;
    right: -66.666667%;
  }

  .mobile\:-inset-x-1\/4{
    left: -25%;
    right: -25%;
  }

  .mobile\:-inset-x-2\/4{
    left: -50%;
    right: -50%;
  }

  .mobile\:-inset-x-3\/4{
    left: -75%;
    right: -75%;
  }

  .mobile\:-inset-x-full{
    left: -100%;
    right: -100%;
  }

  .mobile\:inset-y-0{
    top: 0px;
    bottom: 0px;
  }

  .mobile\:inset-y-1{
    top: 0.25rem;
    bottom: 0.25rem;
  }

  .mobile\:inset-y-2{
    top: 0.5rem;
    bottom: 0.5rem;
  }

  .mobile\:inset-y-3{
    top: 0.75rem;
    bottom: 0.75rem;
  }

  .mobile\:inset-y-4{
    top: 1rem;
    bottom: 1rem;
  }

  .mobile\:inset-y-5{
    top: 1.25rem;
    bottom: 1.25rem;
  }

  .mobile\:inset-y-6{
    top: 1.5rem;
    bottom: 1.5rem;
  }

  .mobile\:inset-y-7{
    top: 1.75rem;
    bottom: 1.75rem;
  }

  .mobile\:inset-y-8{
    top: 2rem;
    bottom: 2rem;
  }

  .mobile\:inset-y-9{
    top: 2.25rem;
    bottom: 2.25rem;
  }

  .mobile\:inset-y-10{
    top: 2.5rem;
    bottom: 2.5rem;
  }

  .mobile\:inset-y-11{
    top: 2.75rem;
    bottom: 2.75rem;
  }

  .mobile\:inset-y-12{
    top: 3rem;
    bottom: 3rem;
  }

  .mobile\:inset-y-14{
    top: 3.5rem;
    bottom: 3.5rem;
  }

  .mobile\:inset-y-16{
    top: 4rem;
    bottom: 4rem;
  }

  .mobile\:inset-y-20{
    top: 5rem;
    bottom: 5rem;
  }

  .mobile\:inset-y-24{
    top: 6rem;
    bottom: 6rem;
  }

  .mobile\:inset-y-28{
    top: 7rem;
    bottom: 7rem;
  }

  .mobile\:inset-y-32{
    top: 8rem;
    bottom: 8rem;
  }

  .mobile\:inset-y-36{
    top: 9rem;
    bottom: 9rem;
  }

  .mobile\:inset-y-40{
    top: 10rem;
    bottom: 10rem;
  }

  .mobile\:inset-y-44{
    top: 11rem;
    bottom: 11rem;
  }

  .mobile\:inset-y-48{
    top: 12rem;
    bottom: 12rem;
  }

  .mobile\:inset-y-52{
    top: 13rem;
    bottom: 13rem;
  }

  .mobile\:inset-y-56{
    top: 14rem;
    bottom: 14rem;
  }

  .mobile\:inset-y-60{
    top: 15rem;
    bottom: 15rem;
  }

  .mobile\:inset-y-64{
    top: 16rem;
    bottom: 16rem;
  }

  .mobile\:inset-y-72{
    top: 18rem;
    bottom: 18rem;
  }

  .mobile\:inset-y-80{
    top: 20rem;
    bottom: 20rem;
  }

  .mobile\:inset-y-96{
    top: 24rem;
    bottom: 24rem;
  }

  .mobile\:inset-y-auto{
    top: auto;
    bottom: auto;
  }

  .mobile\:inset-y-px{
    top: 1px;
    bottom: 1px;
  }

  .mobile\:inset-y-0\.5{
    top: 0.125rem;
    bottom: 0.125rem;
  }

  .mobile\:inset-y-1\.5{
    top: 0.375rem;
    bottom: 0.375rem;
  }

  .mobile\:inset-y-2\.5{
    top: 0.625rem;
    bottom: 0.625rem;
  }

  .mobile\:inset-y-3\.5{
    top: 0.875rem;
    bottom: 0.875rem;
  }

  .mobile\:-inset-y-0{
    top: 0px;
    bottom: 0px;
  }

  .mobile\:-inset-y-1{
    top: -0.25rem;
    bottom: -0.25rem;
  }

  .mobile\:-inset-y-2{
    top: -0.5rem;
    bottom: -0.5rem;
  }

  .mobile\:-inset-y-3{
    top: -0.75rem;
    bottom: -0.75rem;
  }

  .mobile\:-inset-y-4{
    top: -1rem;
    bottom: -1rem;
  }

  .mobile\:-inset-y-5{
    top: -1.25rem;
    bottom: -1.25rem;
  }

  .mobile\:-inset-y-6{
    top: -1.5rem;
    bottom: -1.5rem;
  }

  .mobile\:-inset-y-7{
    top: -1.75rem;
    bottom: -1.75rem;
  }

  .mobile\:-inset-y-8{
    top: -2rem;
    bottom: -2rem;
  }

  .mobile\:-inset-y-9{
    top: -2.25rem;
    bottom: -2.25rem;
  }

  .mobile\:-inset-y-10{
    top: -2.5rem;
    bottom: -2.5rem;
  }

  .mobile\:-inset-y-11{
    top: -2.75rem;
    bottom: -2.75rem;
  }

  .mobile\:-inset-y-12{
    top: -3rem;
    bottom: -3rem;
  }

  .mobile\:-inset-y-14{
    top: -3.5rem;
    bottom: -3.5rem;
  }

  .mobile\:-inset-y-16{
    top: -4rem;
    bottom: -4rem;
  }

  .mobile\:-inset-y-20{
    top: -5rem;
    bottom: -5rem;
  }

  .mobile\:-inset-y-24{
    top: -6rem;
    bottom: -6rem;
  }

  .mobile\:-inset-y-28{
    top: -7rem;
    bottom: -7rem;
  }

  .mobile\:-inset-y-32{
    top: -8rem;
    bottom: -8rem;
  }

  .mobile\:-inset-y-36{
    top: -9rem;
    bottom: -9rem;
  }

  .mobile\:-inset-y-40{
    top: -10rem;
    bottom: -10rem;
  }

  .mobile\:-inset-y-44{
    top: -11rem;
    bottom: -11rem;
  }

  .mobile\:-inset-y-48{
    top: -12rem;
    bottom: -12rem;
  }

  .mobile\:-inset-y-52{
    top: -13rem;
    bottom: -13rem;
  }

  .mobile\:-inset-y-56{
    top: -14rem;
    bottom: -14rem;
  }

  .mobile\:-inset-y-60{
    top: -15rem;
    bottom: -15rem;
  }

  .mobile\:-inset-y-64{
    top: -16rem;
    bottom: -16rem;
  }

  .mobile\:-inset-y-72{
    top: -18rem;
    bottom: -18rem;
  }

  .mobile\:-inset-y-80{
    top: -20rem;
    bottom: -20rem;
  }

  .mobile\:-inset-y-96{
    top: -24rem;
    bottom: -24rem;
  }

  .mobile\:-inset-y-px{
    top: -1px;
    bottom: -1px;
  }

  .mobile\:-inset-y-0\.5{
    top: -0.125rem;
    bottom: -0.125rem;
  }

  .mobile\:-inset-y-1\.5{
    top: -0.375rem;
    bottom: -0.375rem;
  }

  .mobile\:-inset-y-2\.5{
    top: -0.625rem;
    bottom: -0.625rem;
  }

  .mobile\:-inset-y-3\.5{
    top: -0.875rem;
    bottom: -0.875rem;
  }

  .mobile\:inset-y-1\/2{
    top: 50%;
    bottom: 50%;
  }

  .mobile\:inset-y-1\/3{
    top: 33.333333%;
    bottom: 33.333333%;
  }

  .mobile\:inset-y-2\/3{
    top: 66.666667%;
    bottom: 66.666667%;
  }

  .mobile\:inset-y-1\/4{
    top: 25%;
    bottom: 25%;
  }

  .mobile\:inset-y-2\/4{
    top: 50%;
    bottom: 50%;
  }

  .mobile\:inset-y-3\/4{
    top: 75%;
    bottom: 75%;
  }

  .mobile\:inset-y-full{
    top: 100%;
    bottom: 100%;
  }

  .mobile\:-inset-y-1\/2{
    top: -50%;
    bottom: -50%;
  }

  .mobile\:-inset-y-1\/3{
    top: -33.333333%;
    bottom: -33.333333%;
  }

  .mobile\:-inset-y-2\/3{
    top: -66.666667%;
    bottom: -66.666667%;
  }

  .mobile\:-inset-y-1\/4{
    top: -25%;
    bottom: -25%;
  }

  .mobile\:-inset-y-2\/4{
    top: -50%;
    bottom: -50%;
  }

  .mobile\:-inset-y-3\/4{
    top: -75%;
    bottom: -75%;
  }

  .mobile\:-inset-y-full{
    top: -100%;
    bottom: -100%;
  }

  .mobile\:top-0{
    top: 0px;
  }

  .mobile\:top-1{
    top: 0.25rem;
  }

  .mobile\:top-2{
    top: 0.5rem;
  }

  .mobile\:top-3{
    top: 0.75rem;
  }

  .mobile\:top-4{
    top: 1rem;
  }

  .mobile\:top-5{
    top: 1.25rem;
  }

  .mobile\:top-6{
    top: 1.5rem;
  }

  .mobile\:top-7{
    top: 1.75rem;
  }

  .mobile\:top-8{
    top: 2rem;
  }

  .mobile\:top-9{
    top: 2.25rem;
  }

  .mobile\:top-10{
    top: 2.5rem;
  }

  .mobile\:top-11{
    top: 2.75rem;
  }

  .mobile\:top-12{
    top: 3rem;
  }

  .mobile\:top-14{
    top: 3.5rem;
  }

  .mobile\:top-16{
    top: 4rem;
  }

  .mobile\:top-20{
    top: 5rem;
  }

  .mobile\:top-24{
    top: 6rem;
  }

  .mobile\:top-28{
    top: 7rem;
  }

  .mobile\:top-32{
    top: 8rem;
  }

  .mobile\:top-36{
    top: 9rem;
  }

  .mobile\:top-40{
    top: 10rem;
  }

  .mobile\:top-44{
    top: 11rem;
  }

  .mobile\:top-48{
    top: 12rem;
  }

  .mobile\:top-52{
    top: 13rem;
  }

  .mobile\:top-56{
    top: 14rem;
  }

  .mobile\:top-60{
    top: 15rem;
  }

  .mobile\:top-64{
    top: 16rem;
  }

  .mobile\:top-72{
    top: 18rem;
  }

  .mobile\:top-80{
    top: 20rem;
  }

  .mobile\:top-96{
    top: 24rem;
  }

  .mobile\:top-auto{
    top: auto;
  }

  .mobile\:top-px{
    top: 1px;
  }

  .mobile\:top-0\.5{
    top: 0.125rem;
  }

  .mobile\:top-1\.5{
    top: 0.375rem;
  }

  .mobile\:top-2\.5{
    top: 0.625rem;
  }

  .mobile\:top-3\.5{
    top: 0.875rem;
  }

  .mobile\:-top-0{
    top: 0px;
  }

  .mobile\:-top-1{
    top: -0.25rem;
  }

  .mobile\:-top-2{
    top: -0.5rem;
  }

  .mobile\:-top-3{
    top: -0.75rem;
  }

  .mobile\:-top-4{
    top: -1rem;
  }

  .mobile\:-top-5{
    top: -1.25rem;
  }

  .mobile\:-top-6{
    top: -1.5rem;
  }

  .mobile\:-top-7{
    top: -1.75rem;
  }

  .mobile\:-top-8{
    top: -2rem;
  }

  .mobile\:-top-9{
    top: -2.25rem;
  }

  .mobile\:-top-10{
    top: -2.5rem;
  }

  .mobile\:-top-11{
    top: -2.75rem;
  }

  .mobile\:-top-12{
    top: -3rem;
  }

  .mobile\:-top-14{
    top: -3.5rem;
  }

  .mobile\:-top-16{
    top: -4rem;
  }

  .mobile\:-top-20{
    top: -5rem;
  }

  .mobile\:-top-24{
    top: -6rem;
  }

  .mobile\:-top-28{
    top: -7rem;
  }

  .mobile\:-top-32{
    top: -8rem;
  }

  .mobile\:-top-36{
    top: -9rem;
  }

  .mobile\:-top-40{
    top: -10rem;
  }

  .mobile\:-top-44{
    top: -11rem;
  }

  .mobile\:-top-48{
    top: -12rem;
  }

  .mobile\:-top-52{
    top: -13rem;
  }

  .mobile\:-top-56{
    top: -14rem;
  }

  .mobile\:-top-60{
    top: -15rem;
  }

  .mobile\:-top-64{
    top: -16rem;
  }

  .mobile\:-top-72{
    top: -18rem;
  }

  .mobile\:-top-80{
    top: -20rem;
  }

  .mobile\:-top-96{
    top: -24rem;
  }

  .mobile\:-top-px{
    top: -1px;
  }

  .mobile\:-top-0\.5{
    top: -0.125rem;
  }

  .mobile\:-top-1\.5{
    top: -0.375rem;
  }

  .mobile\:-top-2\.5{
    top: -0.625rem;
  }

  .mobile\:-top-3\.5{
    top: -0.875rem;
  }

  .mobile\:top-1\/2{
    top: 50%;
  }

  .mobile\:top-1\/3{
    top: 33.333333%;
  }

  .mobile\:top-2\/3{
    top: 66.666667%;
  }

  .mobile\:top-1\/4{
    top: 25%;
  }

  .mobile\:top-2\/4{
    top: 50%;
  }

  .mobile\:top-3\/4{
    top: 75%;
  }

  .mobile\:top-full{
    top: 100%;
  }

  .mobile\:-top-1\/2{
    top: -50%;
  }

  .mobile\:-top-1\/3{
    top: -33.333333%;
  }

  .mobile\:-top-2\/3{
    top: -66.666667%;
  }

  .mobile\:-top-1\/4{
    top: -25%;
  }

  .mobile\:-top-2\/4{
    top: -50%;
  }

  .mobile\:-top-3\/4{
    top: -75%;
  }

  .mobile\:-top-full{
    top: -100%;
  }

  .mobile\:right-0{
    right: 0px;
  }

  .mobile\:right-1{
    right: 0.25rem;
  }

  .mobile\:right-2{
    right: 0.5rem;
  }

  .mobile\:right-3{
    right: 0.75rem;
  }

  .mobile\:right-4{
    right: 1rem;
  }

  .mobile\:right-5{
    right: 1.25rem;
  }

  .mobile\:right-6{
    right: 1.5rem;
  }

  .mobile\:right-7{
    right: 1.75rem;
  }

  .mobile\:right-8{
    right: 2rem;
  }

  .mobile\:right-9{
    right: 2.25rem;
  }

  .mobile\:right-10{
    right: 2.5rem;
  }

  .mobile\:right-11{
    right: 2.75rem;
  }

  .mobile\:right-12{
    right: 3rem;
  }

  .mobile\:right-14{
    right: 3.5rem;
  }

  .mobile\:right-16{
    right: 4rem;
  }

  .mobile\:right-20{
    right: 5rem;
  }

  .mobile\:right-24{
    right: 6rem;
  }

  .mobile\:right-28{
    right: 7rem;
  }

  .mobile\:right-32{
    right: 8rem;
  }

  .mobile\:right-36{
    right: 9rem;
  }

  .mobile\:right-40{
    right: 10rem;
  }

  .mobile\:right-44{
    right: 11rem;
  }

  .mobile\:right-48{
    right: 12rem;
  }

  .mobile\:right-52{
    right: 13rem;
  }

  .mobile\:right-56{
    right: 14rem;
  }

  .mobile\:right-60{
    right: 15rem;
  }

  .mobile\:right-64{
    right: 16rem;
  }

  .mobile\:right-72{
    right: 18rem;
  }

  .mobile\:right-80{
    right: 20rem;
  }

  .mobile\:right-96{
    right: 24rem;
  }

  .mobile\:right-auto{
    right: auto;
  }

  .mobile\:right-px{
    right: 1px;
  }

  .mobile\:right-0\.5{
    right: 0.125rem;
  }

  .mobile\:right-1\.5{
    right: 0.375rem;
  }

  .mobile\:right-2\.5{
    right: 0.625rem;
  }

  .mobile\:right-3\.5{
    right: 0.875rem;
  }

  .mobile\:-right-0{
    right: 0px;
  }

  .mobile\:-right-1{
    right: -0.25rem;
  }

  .mobile\:-right-2{
    right: -0.5rem;
  }

  .mobile\:-right-3{
    right: -0.75rem;
  }

  .mobile\:-right-4{
    right: -1rem;
  }

  .mobile\:-right-5{
    right: -1.25rem;
  }

  .mobile\:-right-6{
    right: -1.5rem;
  }

  .mobile\:-right-7{
    right: -1.75rem;
  }

  .mobile\:-right-8{
    right: -2rem;
  }

  .mobile\:-right-9{
    right: -2.25rem;
  }

  .mobile\:-right-10{
    right: -2.5rem;
  }

  .mobile\:-right-11{
    right: -2.75rem;
  }

  .mobile\:-right-12{
    right: -3rem;
  }

  .mobile\:-right-14{
    right: -3.5rem;
  }

  .mobile\:-right-16{
    right: -4rem;
  }

  .mobile\:-right-20{
    right: -5rem;
  }

  .mobile\:-right-24{
    right: -6rem;
  }

  .mobile\:-right-28{
    right: -7rem;
  }

  .mobile\:-right-32{
    right: -8rem;
  }

  .mobile\:-right-36{
    right: -9rem;
  }

  .mobile\:-right-40{
    right: -10rem;
  }

  .mobile\:-right-44{
    right: -11rem;
  }

  .mobile\:-right-48{
    right: -12rem;
  }

  .mobile\:-right-52{
    right: -13rem;
  }

  .mobile\:-right-56{
    right: -14rem;
  }

  .mobile\:-right-60{
    right: -15rem;
  }

  .mobile\:-right-64{
    right: -16rem;
  }

  .mobile\:-right-72{
    right: -18rem;
  }

  .mobile\:-right-80{
    right: -20rem;
  }

  .mobile\:-right-96{
    right: -24rem;
  }

  .mobile\:-right-px{
    right: -1px;
  }

  .mobile\:-right-0\.5{
    right: -0.125rem;
  }

  .mobile\:-right-1\.5{
    right: -0.375rem;
  }

  .mobile\:-right-2\.5{
    right: -0.625rem;
  }

  .mobile\:-right-3\.5{
    right: -0.875rem;
  }

  .mobile\:right-1\/2{
    right: 50%;
  }

  .mobile\:right-1\/3{
    right: 33.333333%;
  }

  .mobile\:right-2\/3{
    right: 66.666667%;
  }

  .mobile\:right-1\/4{
    right: 25%;
  }

  .mobile\:right-2\/4{
    right: 50%;
  }

  .mobile\:right-3\/4{
    right: 75%;
  }

  .mobile\:right-full{
    right: 100%;
  }

  .mobile\:-right-1\/2{
    right: -50%;
  }

  .mobile\:-right-1\/3{
    right: -33.333333%;
  }

  .mobile\:-right-2\/3{
    right: -66.666667%;
  }

  .mobile\:-right-1\/4{
    right: -25%;
  }

  .mobile\:-right-2\/4{
    right: -50%;
  }

  .mobile\:-right-3\/4{
    right: -75%;
  }

  .mobile\:-right-full{
    right: -100%;
  }

  .mobile\:bottom-0{
    bottom: 0px;
  }

  .mobile\:bottom-1{
    bottom: 0.25rem;
  }

  .mobile\:bottom-2{
    bottom: 0.5rem;
  }

  .mobile\:bottom-3{
    bottom: 0.75rem;
  }

  .mobile\:bottom-4{
    bottom: 1rem;
  }

  .mobile\:bottom-5{
    bottom: 1.25rem;
  }

  .mobile\:bottom-6{
    bottom: 1.5rem;
  }

  .mobile\:bottom-7{
    bottom: 1.75rem;
  }

  .mobile\:bottom-8{
    bottom: 2rem;
  }

  .mobile\:bottom-9{
    bottom: 2.25rem;
  }

  .mobile\:bottom-10{
    bottom: 2.5rem;
  }

  .mobile\:bottom-11{
    bottom: 2.75rem;
  }

  .mobile\:bottom-12{
    bottom: 3rem;
  }

  .mobile\:bottom-14{
    bottom: 3.5rem;
  }

  .mobile\:bottom-16{
    bottom: 4rem;
  }

  .mobile\:bottom-20{
    bottom: 5rem;
  }

  .mobile\:bottom-24{
    bottom: 6rem;
  }

  .mobile\:bottom-28{
    bottom: 7rem;
  }

  .mobile\:bottom-32{
    bottom: 8rem;
  }

  .mobile\:bottom-36{
    bottom: 9rem;
  }

  .mobile\:bottom-40{
    bottom: 10rem;
  }

  .mobile\:bottom-44{
    bottom: 11rem;
  }

  .mobile\:bottom-48{
    bottom: 12rem;
  }

  .mobile\:bottom-52{
    bottom: 13rem;
  }

  .mobile\:bottom-56{
    bottom: 14rem;
  }

  .mobile\:bottom-60{
    bottom: 15rem;
  }

  .mobile\:bottom-64{
    bottom: 16rem;
  }

  .mobile\:bottom-72{
    bottom: 18rem;
  }

  .mobile\:bottom-80{
    bottom: 20rem;
  }

  .mobile\:bottom-96{
    bottom: 24rem;
  }

  .mobile\:bottom-auto{
    bottom: auto;
  }

  .mobile\:bottom-px{
    bottom: 1px;
  }

  .mobile\:bottom-0\.5{
    bottom: 0.125rem;
  }

  .mobile\:bottom-1\.5{
    bottom: 0.375rem;
  }

  .mobile\:bottom-2\.5{
    bottom: 0.625rem;
  }

  .mobile\:bottom-3\.5{
    bottom: 0.875rem;
  }

  .mobile\:-bottom-0{
    bottom: 0px;
  }

  .mobile\:-bottom-1{
    bottom: -0.25rem;
  }

  .mobile\:-bottom-2{
    bottom: -0.5rem;
  }

  .mobile\:-bottom-3{
    bottom: -0.75rem;
  }

  .mobile\:-bottom-4{
    bottom: -1rem;
  }

  .mobile\:-bottom-5{
    bottom: -1.25rem;
  }

  .mobile\:-bottom-6{
    bottom: -1.5rem;
  }

  .mobile\:-bottom-7{
    bottom: -1.75rem;
  }

  .mobile\:-bottom-8{
    bottom: -2rem;
  }

  .mobile\:-bottom-9{
    bottom: -2.25rem;
  }

  .mobile\:-bottom-10{
    bottom: -2.5rem;
  }

  .mobile\:-bottom-11{
    bottom: -2.75rem;
  }

  .mobile\:-bottom-12{
    bottom: -3rem;
  }

  .mobile\:-bottom-14{
    bottom: -3.5rem;
  }

  .mobile\:-bottom-16{
    bottom: -4rem;
  }

  .mobile\:-bottom-20{
    bottom: -5rem;
  }

  .mobile\:-bottom-24{
    bottom: -6rem;
  }

  .mobile\:-bottom-28{
    bottom: -7rem;
  }

  .mobile\:-bottom-32{
    bottom: -8rem;
  }

  .mobile\:-bottom-36{
    bottom: -9rem;
  }

  .mobile\:-bottom-40{
    bottom: -10rem;
  }

  .mobile\:-bottom-44{
    bottom: -11rem;
  }

  .mobile\:-bottom-48{
    bottom: -12rem;
  }

  .mobile\:-bottom-52{
    bottom: -13rem;
  }

  .mobile\:-bottom-56{
    bottom: -14rem;
  }

  .mobile\:-bottom-60{
    bottom: -15rem;
  }

  .mobile\:-bottom-64{
    bottom: -16rem;
  }

  .mobile\:-bottom-72{
    bottom: -18rem;
  }

  .mobile\:-bottom-80{
    bottom: -20rem;
  }

  .mobile\:-bottom-96{
    bottom: -24rem;
  }

  .mobile\:-bottom-px{
    bottom: -1px;
  }

  .mobile\:-bottom-0\.5{
    bottom: -0.125rem;
  }

  .mobile\:-bottom-1\.5{
    bottom: -0.375rem;
  }

  .mobile\:-bottom-2\.5{
    bottom: -0.625rem;
  }

  .mobile\:-bottom-3\.5{
    bottom: -0.875rem;
  }

  .mobile\:bottom-1\/2{
    bottom: 50%;
  }

  .mobile\:bottom-1\/3{
    bottom: 33.333333%;
  }

  .mobile\:bottom-2\/3{
    bottom: 66.666667%;
  }

  .mobile\:bottom-1\/4{
    bottom: 25%;
  }

  .mobile\:bottom-2\/4{
    bottom: 50%;
  }

  .mobile\:bottom-3\/4{
    bottom: 75%;
  }

  .mobile\:bottom-full{
    bottom: 100%;
  }

  .mobile\:-bottom-1\/2{
    bottom: -50%;
  }

  .mobile\:-bottom-1\/3{
    bottom: -33.333333%;
  }

  .mobile\:-bottom-2\/3{
    bottom: -66.666667%;
  }

  .mobile\:-bottom-1\/4{
    bottom: -25%;
  }

  .mobile\:-bottom-2\/4{
    bottom: -50%;
  }

  .mobile\:-bottom-3\/4{
    bottom: -75%;
  }

  .mobile\:-bottom-full{
    bottom: -100%;
  }

  .mobile\:left-0{
    left: 0px;
  }

  .mobile\:left-1{
    left: 0.25rem;
  }

  .mobile\:left-2{
    left: 0.5rem;
  }

  .mobile\:left-3{
    left: 0.75rem;
  }

  .mobile\:left-4{
    left: 1rem;
  }

  .mobile\:left-5{
    left: 1.25rem;
  }

  .mobile\:left-6{
    left: 1.5rem;
  }

  .mobile\:left-7{
    left: 1.75rem;
  }

  .mobile\:left-8{
    left: 2rem;
  }

  .mobile\:left-9{
    left: 2.25rem;
  }

  .mobile\:left-10{
    left: 2.5rem;
  }

  .mobile\:left-11{
    left: 2.75rem;
  }

  .mobile\:left-12{
    left: 3rem;
  }

  .mobile\:left-14{
    left: 3.5rem;
  }

  .mobile\:left-16{
    left: 4rem;
  }

  .mobile\:left-20{
    left: 5rem;
  }

  .mobile\:left-24{
    left: 6rem;
  }

  .mobile\:left-28{
    left: 7rem;
  }

  .mobile\:left-32{
    left: 8rem;
  }

  .mobile\:left-36{
    left: 9rem;
  }

  .mobile\:left-40{
    left: 10rem;
  }

  .mobile\:left-44{
    left: 11rem;
  }

  .mobile\:left-48{
    left: 12rem;
  }

  .mobile\:left-52{
    left: 13rem;
  }

  .mobile\:left-56{
    left: 14rem;
  }

  .mobile\:left-60{
    left: 15rem;
  }

  .mobile\:left-64{
    left: 16rem;
  }

  .mobile\:left-72{
    left: 18rem;
  }

  .mobile\:left-80{
    left: 20rem;
  }

  .mobile\:left-96{
    left: 24rem;
  }

  .mobile\:left-auto{
    left: auto;
  }

  .mobile\:left-px{
    left: 1px;
  }

  .mobile\:left-0\.5{
    left: 0.125rem;
  }

  .mobile\:left-1\.5{
    left: 0.375rem;
  }

  .mobile\:left-2\.5{
    left: 0.625rem;
  }

  .mobile\:left-3\.5{
    left: 0.875rem;
  }

  .mobile\:-left-0{
    left: 0px;
  }

  .mobile\:-left-1{
    left: -0.25rem;
  }

  .mobile\:-left-2{
    left: -0.5rem;
  }

  .mobile\:-left-3{
    left: -0.75rem;
  }

  .mobile\:-left-4{
    left: -1rem;
  }

  .mobile\:-left-5{
    left: -1.25rem;
  }

  .mobile\:-left-6{
    left: -1.5rem;
  }

  .mobile\:-left-7{
    left: -1.75rem;
  }

  .mobile\:-left-8{
    left: -2rem;
  }

  .mobile\:-left-9{
    left: -2.25rem;
  }

  .mobile\:-left-10{
    left: -2.5rem;
  }

  .mobile\:-left-11{
    left: -2.75rem;
  }

  .mobile\:-left-12{
    left: -3rem;
  }

  .mobile\:-left-14{
    left: -3.5rem;
  }

  .mobile\:-left-16{
    left: -4rem;
  }

  .mobile\:-left-20{
    left: -5rem;
  }

  .mobile\:-left-24{
    left: -6rem;
  }

  .mobile\:-left-28{
    left: -7rem;
  }

  .mobile\:-left-32{
    left: -8rem;
  }

  .mobile\:-left-36{
    left: -9rem;
  }

  .mobile\:-left-40{
    left: -10rem;
  }

  .mobile\:-left-44{
    left: -11rem;
  }

  .mobile\:-left-48{
    left: -12rem;
  }

  .mobile\:-left-52{
    left: -13rem;
  }

  .mobile\:-left-56{
    left: -14rem;
  }

  .mobile\:-left-60{
    left: -15rem;
  }

  .mobile\:-left-64{
    left: -16rem;
  }

  .mobile\:-left-72{
    left: -18rem;
  }

  .mobile\:-left-80{
    left: -20rem;
  }

  .mobile\:-left-96{
    left: -24rem;
  }

  .mobile\:-left-px{
    left: -1px;
  }

  .mobile\:-left-0\.5{
    left: -0.125rem;
  }

  .mobile\:-left-1\.5{
    left: -0.375rem;
  }

  .mobile\:-left-2\.5{
    left: -0.625rem;
  }

  .mobile\:-left-3\.5{
    left: -0.875rem;
  }

  .mobile\:left-1\/2{
    left: 50%;
  }

  .mobile\:left-1\/3{
    left: 33.333333%;
  }

  .mobile\:left-2\/3{
    left: 66.666667%;
  }

  .mobile\:left-1\/4{
    left: 25%;
  }

  .mobile\:left-2\/4{
    left: 50%;
  }

  .mobile\:left-3\/4{
    left: 75%;
  }

  .mobile\:left-full{
    left: 100%;
  }

  .mobile\:-left-1\/2{
    left: -50%;
  }

  .mobile\:-left-1\/3{
    left: -33.333333%;
  }

  .mobile\:-left-2\/3{
    left: -66.666667%;
  }

  .mobile\:-left-1\/4{
    left: -25%;
  }

  .mobile\:-left-2\/4{
    left: -50%;
  }

  .mobile\:-left-3\/4{
    left: -75%;
  }

  .mobile\:-left-full{
    left: -100%;
  }

  .mobile\:isolate{
    isolation: isolate;
  }

  .mobile\:isolation-auto{
    isolation: auto;
  }

  .mobile\:z-0{
    z-index: 0;
  }

  .mobile\:z-10{
    z-index: 10;
  }

  .mobile\:z-20{
    z-index: 20;
  }

  .mobile\:z-30{
    z-index: 30;
  }

  .mobile\:z-40{
    z-index: 40;
  }

  .mobile\:z-50{
    z-index: 50;
  }

  .mobile\:z-60{
    z-index: 60;
  }

  .mobile\:z-70{
    z-index: 70;
  }

  .mobile\:z-80{
    z-index: 80;
  }

  .mobile\:z-90{
    z-index: 90;
  }

  .mobile\:z-100{
    z-index: 100;
  }

  .mobile\:z-auto{
    z-index: auto;
  }

  .mobile\:focus-within\:z-0:focus-within{
    z-index: 0;
  }

  .mobile\:focus-within\:z-10:focus-within{
    z-index: 10;
  }

  .mobile\:focus-within\:z-20:focus-within{
    z-index: 20;
  }

  .mobile\:focus-within\:z-30:focus-within{
    z-index: 30;
  }

  .mobile\:focus-within\:z-40:focus-within{
    z-index: 40;
  }

  .mobile\:focus-within\:z-50:focus-within{
    z-index: 50;
  }

  .mobile\:focus-within\:z-60:focus-within{
    z-index: 60;
  }

  .mobile\:focus-within\:z-70:focus-within{
    z-index: 70;
  }

  .mobile\:focus-within\:z-80:focus-within{
    z-index: 80;
  }

  .mobile\:focus-within\:z-90:focus-within{
    z-index: 90;
  }

  .mobile\:focus-within\:z-100:focus-within{
    z-index: 100;
  }

  .mobile\:focus-within\:z-auto:focus-within{
    z-index: auto;
  }

  .mobile\:focus\:z-0:focus{
    z-index: 0;
  }

  .mobile\:focus\:z-10:focus{
    z-index: 10;
  }

  .mobile\:focus\:z-20:focus{
    z-index: 20;
  }

  .mobile\:focus\:z-30:focus{
    z-index: 30;
  }

  .mobile\:focus\:z-40:focus{
    z-index: 40;
  }

  .mobile\:focus\:z-50:focus{
    z-index: 50;
  }

  .mobile\:focus\:z-60:focus{
    z-index: 60;
  }

  .mobile\:focus\:z-70:focus{
    z-index: 70;
  }

  .mobile\:focus\:z-80:focus{
    z-index: 80;
  }

  .mobile\:focus\:z-90:focus{
    z-index: 90;
  }

  .mobile\:focus\:z-100:focus{
    z-index: 100;
  }

  .mobile\:focus\:z-auto:focus{
    z-index: auto;
  }

  .mobile\:order-1{
    order: 1;
  }

  .mobile\:order-2{
    order: 2;
  }

  .mobile\:order-3{
    order: 3;
  }

  .mobile\:order-4{
    order: 4;
  }

  .mobile\:order-5{
    order: 5;
  }

  .mobile\:order-6{
    order: 6;
  }

  .mobile\:order-7{
    order: 7;
  }

  .mobile\:order-8{
    order: 8;
  }

  .mobile\:order-9{
    order: 9;
  }

  .mobile\:order-10{
    order: 10;
  }

  .mobile\:order-11{
    order: 11;
  }

  .mobile\:order-12{
    order: 12;
  }

  .mobile\:order-first{
    order: -9999;
  }

  .mobile\:order-last{
    order: 9999;
  }

  .mobile\:order-none{
    order: 0;
  }

  .mobile\:col-auto{
    grid-column: auto;
  }

  .mobile\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .mobile\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .mobile\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .mobile\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .mobile\:col-span-5{
    grid-column: span 5 / span 5;
  }

  .mobile\:col-span-6{
    grid-column: span 6 / span 6;
  }

  .mobile\:col-span-7{
    grid-column: span 7 / span 7;
  }

  .mobile\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .mobile\:col-span-9{
    grid-column: span 9 / span 9;
  }

  .mobile\:col-span-10{
    grid-column: span 10 / span 10;
  }

  .mobile\:col-span-11{
    grid-column: span 11 / span 11;
  }

  .mobile\:col-span-12{
    grid-column: span 12 / span 12;
  }

  .mobile\:col-span-full{
    grid-column: 1 / -1;
  }

  .mobile\:col-start-1{
    grid-column-start: 1;
  }

  .mobile\:col-start-2{
    grid-column-start: 2;
  }

  .mobile\:col-start-3{
    grid-column-start: 3;
  }

  .mobile\:col-start-4{
    grid-column-start: 4;
  }

  .mobile\:col-start-5{
    grid-column-start: 5;
  }

  .mobile\:col-start-6{
    grid-column-start: 6;
  }

  .mobile\:col-start-7{
    grid-column-start: 7;
  }

  .mobile\:col-start-8{
    grid-column-start: 8;
  }

  .mobile\:col-start-9{
    grid-column-start: 9;
  }

  .mobile\:col-start-10{
    grid-column-start: 10;
  }

  .mobile\:col-start-11{
    grid-column-start: 11;
  }

  .mobile\:col-start-12{
    grid-column-start: 12;
  }

  .mobile\:col-start-13{
    grid-column-start: 13;
  }

  .mobile\:col-start-auto{
    grid-column-start: auto;
  }

  .mobile\:col-end-1{
    grid-column-end: 1;
  }

  .mobile\:col-end-2{
    grid-column-end: 2;
  }

  .mobile\:col-end-3{
    grid-column-end: 3;
  }

  .mobile\:col-end-4{
    grid-column-end: 4;
  }

  .mobile\:col-end-5{
    grid-column-end: 5;
  }

  .mobile\:col-end-6{
    grid-column-end: 6;
  }

  .mobile\:col-end-7{
    grid-column-end: 7;
  }

  .mobile\:col-end-8{
    grid-column-end: 8;
  }

  .mobile\:col-end-9{
    grid-column-end: 9;
  }

  .mobile\:col-end-10{
    grid-column-end: 10;
  }

  .mobile\:col-end-11{
    grid-column-end: 11;
  }

  .mobile\:col-end-12{
    grid-column-end: 12;
  }

  .mobile\:col-end-13{
    grid-column-end: 13;
  }

  .mobile\:col-end-auto{
    grid-column-end: auto;
  }

  .mobile\:row-auto{
    grid-row: auto;
  }

  .mobile\:row-span-1{
    grid-row: span 1 / span 1;
  }

  .mobile\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .mobile\:row-span-3{
    grid-row: span 3 / span 3;
  }

  .mobile\:row-span-4{
    grid-row: span 4 / span 4;
  }

  .mobile\:row-span-5{
    grid-row: span 5 / span 5;
  }

  .mobile\:row-span-6{
    grid-row: span 6 / span 6;
  }

  .mobile\:row-span-full{
    grid-row: 1 / -1;
  }

  .mobile\:row-start-1{
    grid-row-start: 1;
  }

  .mobile\:row-start-2{
    grid-row-start: 2;
  }

  .mobile\:row-start-3{
    grid-row-start: 3;
  }

  .mobile\:row-start-4{
    grid-row-start: 4;
  }

  .mobile\:row-start-5{
    grid-row-start: 5;
  }

  .mobile\:row-start-6{
    grid-row-start: 6;
  }

  .mobile\:row-start-7{
    grid-row-start: 7;
  }

  .mobile\:row-start-auto{
    grid-row-start: auto;
  }

  .mobile\:row-end-1{
    grid-row-end: 1;
  }

  .mobile\:row-end-2{
    grid-row-end: 2;
  }

  .mobile\:row-end-3{
    grid-row-end: 3;
  }

  .mobile\:row-end-4{
    grid-row-end: 4;
  }

  .mobile\:row-end-5{
    grid-row-end: 5;
  }

  .mobile\:row-end-6{
    grid-row-end: 6;
  }

  .mobile\:row-end-7{
    grid-row-end: 7;
  }

  .mobile\:row-end-auto{
    grid-row-end: auto;
  }

  .mobile\:float-right{
    float: right;
  }

  .mobile\:float-left{
    float: left;
  }

  .mobile\:float-none{
    float: none;
  }

  .mobile\:clear-left{
    clear: left;
  }

  .mobile\:clear-right{
    clear: right;
  }

  .mobile\:clear-both{
    clear: both;
  }

  .mobile\:clear-none{
    clear: none;
  }

  .mobile\:m-0{
    margin: 0px;
  }

  .mobile\:m-1{
    margin: 0.25rem;
  }

  .mobile\:m-2{
    margin: 0.5rem;
  }

  .mobile\:m-3{
    margin: 0.75rem;
  }

  .mobile\:m-4{
    margin: 1rem;
  }

  .mobile\:m-5{
    margin: 1.25rem;
  }

  .mobile\:m-6{
    margin: 1.5rem;
  }

  .mobile\:m-7{
    margin: 1.75rem;
  }

  .mobile\:m-8{
    margin: 2rem;
  }

  .mobile\:m-9{
    margin: 2.25rem;
  }

  .mobile\:m-10{
    margin: 2.5rem;
  }

  .mobile\:m-11{
    margin: 2.75rem;
  }

  .mobile\:m-12{
    margin: 3rem;
  }

  .mobile\:m-14{
    margin: 3.5rem;
  }

  .mobile\:m-16{
    margin: 4rem;
  }

  .mobile\:m-20{
    margin: 5rem;
  }

  .mobile\:m-24{
    margin: 6rem;
  }

  .mobile\:m-28{
    margin: 7rem;
  }

  .mobile\:m-32{
    margin: 8rem;
  }

  .mobile\:m-36{
    margin: 9rem;
  }

  .mobile\:m-40{
    margin: 10rem;
  }

  .mobile\:m-44{
    margin: 11rem;
  }

  .mobile\:m-48{
    margin: 12rem;
  }

  .mobile\:m-52{
    margin: 13rem;
  }

  .mobile\:m-56{
    margin: 14rem;
  }

  .mobile\:m-60{
    margin: 15rem;
  }

  .mobile\:m-64{
    margin: 16rem;
  }

  .mobile\:m-72{
    margin: 18rem;
  }

  .mobile\:m-80{
    margin: 20rem;
  }

  .mobile\:m-96{
    margin: 24rem;
  }

  .mobile\:m-auto{
    margin: auto;
  }

  .mobile\:m-px{
    margin: 1px;
  }

  .mobile\:m-0\.5{
    margin: 0.125rem;
  }

  .mobile\:m-1\.5{
    margin: 0.375rem;
  }

  .mobile\:m-2\.5{
    margin: 0.625rem;
  }

  .mobile\:m-3\.5{
    margin: 0.875rem;
  }

  .mobile\:-m-0{
    margin: 0px;
  }

  .mobile\:-m-1{
    margin: -0.25rem;
  }

  .mobile\:-m-2{
    margin: -0.5rem;
  }

  .mobile\:-m-3{
    margin: -0.75rem;
  }

  .mobile\:-m-4{
    margin: -1rem;
  }

  .mobile\:-m-5{
    margin: -1.25rem;
  }

  .mobile\:-m-6{
    margin: -1.5rem;
  }

  .mobile\:-m-7{
    margin: -1.75rem;
  }

  .mobile\:-m-8{
    margin: -2rem;
  }

  .mobile\:-m-9{
    margin: -2.25rem;
  }

  .mobile\:-m-10{
    margin: -2.5rem;
  }

  .mobile\:-m-11{
    margin: -2.75rem;
  }

  .mobile\:-m-12{
    margin: -3rem;
  }

  .mobile\:-m-14{
    margin: -3.5rem;
  }

  .mobile\:-m-16{
    margin: -4rem;
  }

  .mobile\:-m-20{
    margin: -5rem;
  }

  .mobile\:-m-24{
    margin: -6rem;
  }

  .mobile\:-m-28{
    margin: -7rem;
  }

  .mobile\:-m-32{
    margin: -8rem;
  }

  .mobile\:-m-36{
    margin: -9rem;
  }

  .mobile\:-m-40{
    margin: -10rem;
  }

  .mobile\:-m-44{
    margin: -11rem;
  }

  .mobile\:-m-48{
    margin: -12rem;
  }

  .mobile\:-m-52{
    margin: -13rem;
  }

  .mobile\:-m-56{
    margin: -14rem;
  }

  .mobile\:-m-60{
    margin: -15rem;
  }

  .mobile\:-m-64{
    margin: -16rem;
  }

  .mobile\:-m-72{
    margin: -18rem;
  }

  .mobile\:-m-80{
    margin: -20rem;
  }

  .mobile\:-m-96{
    margin: -24rem;
  }

  .mobile\:-m-px{
    margin: -1px;
  }

  .mobile\:-m-0\.5{
    margin: -0.125rem;
  }

  .mobile\:-m-1\.5{
    margin: -0.375rem;
  }

  .mobile\:-m-2\.5{
    margin: -0.625rem;
  }

  .mobile\:-m-3\.5{
    margin: -0.875rem;
  }

  .mobile\:m-neg1{
    margin: -.25rem;
  }

  .mobile\:m-neg2{
    margin: -.5rem;
  }

  .mobile\:m-neg4{
    margin: -1.0rem;
  }

  .mobile\:m-neg6{
    margin: -1.5rem;
  }

  .mobile\:m-neg12{
    margin: -3rem;
  }

  .mobile\:m-neg20{
    margin: -5rem;
  }

  .mobile\:last\:m-0:last-child{
    margin: 0px;
  }

  .mobile\:last\:m-1:last-child{
    margin: 0.25rem;
  }

  .mobile\:last\:m-2:last-child{
    margin: 0.5rem;
  }

  .mobile\:last\:m-3:last-child{
    margin: 0.75rem;
  }

  .mobile\:last\:m-4:last-child{
    margin: 1rem;
  }

  .mobile\:last\:m-5:last-child{
    margin: 1.25rem;
  }

  .mobile\:last\:m-6:last-child{
    margin: 1.5rem;
  }

  .mobile\:last\:m-7:last-child{
    margin: 1.75rem;
  }

  .mobile\:last\:m-8:last-child{
    margin: 2rem;
  }

  .mobile\:last\:m-9:last-child{
    margin: 2.25rem;
  }

  .mobile\:last\:m-10:last-child{
    margin: 2.5rem;
  }

  .mobile\:last\:m-11:last-child{
    margin: 2.75rem;
  }

  .mobile\:last\:m-12:last-child{
    margin: 3rem;
  }

  .mobile\:last\:m-14:last-child{
    margin: 3.5rem;
  }

  .mobile\:last\:m-16:last-child{
    margin: 4rem;
  }

  .mobile\:last\:m-20:last-child{
    margin: 5rem;
  }

  .mobile\:last\:m-24:last-child{
    margin: 6rem;
  }

  .mobile\:last\:m-28:last-child{
    margin: 7rem;
  }

  .mobile\:last\:m-32:last-child{
    margin: 8rem;
  }

  .mobile\:last\:m-36:last-child{
    margin: 9rem;
  }

  .mobile\:last\:m-40:last-child{
    margin: 10rem;
  }

  .mobile\:last\:m-44:last-child{
    margin: 11rem;
  }

  .mobile\:last\:m-48:last-child{
    margin: 12rem;
  }

  .mobile\:last\:m-52:last-child{
    margin: 13rem;
  }

  .mobile\:last\:m-56:last-child{
    margin: 14rem;
  }

  .mobile\:last\:m-60:last-child{
    margin: 15rem;
  }

  .mobile\:last\:m-64:last-child{
    margin: 16rem;
  }

  .mobile\:last\:m-72:last-child{
    margin: 18rem;
  }

  .mobile\:last\:m-80:last-child{
    margin: 20rem;
  }

  .mobile\:last\:m-96:last-child{
    margin: 24rem;
  }

  .mobile\:last\:m-auto:last-child{
    margin: auto;
  }

  .mobile\:last\:m-px:last-child{
    margin: 1px;
  }

  .mobile\:last\:m-0\.5:last-child{
    margin: 0.125rem;
  }

  .mobile\:last\:m-1\.5:last-child{
    margin: 0.375rem;
  }

  .mobile\:last\:m-2\.5:last-child{
    margin: 0.625rem;
  }

  .mobile\:last\:m-3\.5:last-child{
    margin: 0.875rem;
  }

  .mobile\:last\:-m-0:last-child{
    margin: 0px;
  }

  .mobile\:last\:-m-1:last-child{
    margin: -0.25rem;
  }

  .mobile\:last\:-m-2:last-child{
    margin: -0.5rem;
  }

  .mobile\:last\:-m-3:last-child{
    margin: -0.75rem;
  }

  .mobile\:last\:-m-4:last-child{
    margin: -1rem;
  }

  .mobile\:last\:-m-5:last-child{
    margin: -1.25rem;
  }

  .mobile\:last\:-m-6:last-child{
    margin: -1.5rem;
  }

  .mobile\:last\:-m-7:last-child{
    margin: -1.75rem;
  }

  .mobile\:last\:-m-8:last-child{
    margin: -2rem;
  }

  .mobile\:last\:-m-9:last-child{
    margin: -2.25rem;
  }

  .mobile\:last\:-m-10:last-child{
    margin: -2.5rem;
  }

  .mobile\:last\:-m-11:last-child{
    margin: -2.75rem;
  }

  .mobile\:last\:-m-12:last-child{
    margin: -3rem;
  }

  .mobile\:last\:-m-14:last-child{
    margin: -3.5rem;
  }

  .mobile\:last\:-m-16:last-child{
    margin: -4rem;
  }

  .mobile\:last\:-m-20:last-child{
    margin: -5rem;
  }

  .mobile\:last\:-m-24:last-child{
    margin: -6rem;
  }

  .mobile\:last\:-m-28:last-child{
    margin: -7rem;
  }

  .mobile\:last\:-m-32:last-child{
    margin: -8rem;
  }

  .mobile\:last\:-m-36:last-child{
    margin: -9rem;
  }

  .mobile\:last\:-m-40:last-child{
    margin: -10rem;
  }

  .mobile\:last\:-m-44:last-child{
    margin: -11rem;
  }

  .mobile\:last\:-m-48:last-child{
    margin: -12rem;
  }

  .mobile\:last\:-m-52:last-child{
    margin: -13rem;
  }

  .mobile\:last\:-m-56:last-child{
    margin: -14rem;
  }

  .mobile\:last\:-m-60:last-child{
    margin: -15rem;
  }

  .mobile\:last\:-m-64:last-child{
    margin: -16rem;
  }

  .mobile\:last\:-m-72:last-child{
    margin: -18rem;
  }

  .mobile\:last\:-m-80:last-child{
    margin: -20rem;
  }

  .mobile\:last\:-m-96:last-child{
    margin: -24rem;
  }

  .mobile\:last\:-m-px:last-child{
    margin: -1px;
  }

  .mobile\:last\:-m-0\.5:last-child{
    margin: -0.125rem;
  }

  .mobile\:last\:-m-1\.5:last-child{
    margin: -0.375rem;
  }

  .mobile\:last\:-m-2\.5:last-child{
    margin: -0.625rem;
  }

  .mobile\:last\:-m-3\.5:last-child{
    margin: -0.875rem;
  }

  .mobile\:last\:m-neg1:last-child{
    margin: -.25rem;
  }

  .mobile\:last\:m-neg2:last-child{
    margin: -.5rem;
  }

  .mobile\:last\:m-neg4:last-child{
    margin: -1.0rem;
  }

  .mobile\:last\:m-neg6:last-child{
    margin: -1.5rem;
  }

  .mobile\:last\:m-neg12:last-child{
    margin: -3rem;
  }

  .mobile\:last\:m-neg20:last-child{
    margin: -5rem;
  }

  .mobile\:hover\:m-0:hover{
    margin: 0px;
  }

  .mobile\:hover\:m-1:hover{
    margin: 0.25rem;
  }

  .mobile\:hover\:m-2:hover{
    margin: 0.5rem;
  }

  .mobile\:hover\:m-3:hover{
    margin: 0.75rem;
  }

  .mobile\:hover\:m-4:hover{
    margin: 1rem;
  }

  .mobile\:hover\:m-5:hover{
    margin: 1.25rem;
  }

  .mobile\:hover\:m-6:hover{
    margin: 1.5rem;
  }

  .mobile\:hover\:m-7:hover{
    margin: 1.75rem;
  }

  .mobile\:hover\:m-8:hover{
    margin: 2rem;
  }

  .mobile\:hover\:m-9:hover{
    margin: 2.25rem;
  }

  .mobile\:hover\:m-10:hover{
    margin: 2.5rem;
  }

  .mobile\:hover\:m-11:hover{
    margin: 2.75rem;
  }

  .mobile\:hover\:m-12:hover{
    margin: 3rem;
  }

  .mobile\:hover\:m-14:hover{
    margin: 3.5rem;
  }

  .mobile\:hover\:m-16:hover{
    margin: 4rem;
  }

  .mobile\:hover\:m-20:hover{
    margin: 5rem;
  }

  .mobile\:hover\:m-24:hover{
    margin: 6rem;
  }

  .mobile\:hover\:m-28:hover{
    margin: 7rem;
  }

  .mobile\:hover\:m-32:hover{
    margin: 8rem;
  }

  .mobile\:hover\:m-36:hover{
    margin: 9rem;
  }

  .mobile\:hover\:m-40:hover{
    margin: 10rem;
  }

  .mobile\:hover\:m-44:hover{
    margin: 11rem;
  }

  .mobile\:hover\:m-48:hover{
    margin: 12rem;
  }

  .mobile\:hover\:m-52:hover{
    margin: 13rem;
  }

  .mobile\:hover\:m-56:hover{
    margin: 14rem;
  }

  .mobile\:hover\:m-60:hover{
    margin: 15rem;
  }

  .mobile\:hover\:m-64:hover{
    margin: 16rem;
  }

  .mobile\:hover\:m-72:hover{
    margin: 18rem;
  }

  .mobile\:hover\:m-80:hover{
    margin: 20rem;
  }

  .mobile\:hover\:m-96:hover{
    margin: 24rem;
  }

  .mobile\:hover\:m-auto:hover{
    margin: auto;
  }

  .mobile\:hover\:m-px:hover{
    margin: 1px;
  }

  .mobile\:hover\:m-0\.5:hover{
    margin: 0.125rem;
  }

  .mobile\:hover\:m-1\.5:hover{
    margin: 0.375rem;
  }

  .mobile\:hover\:m-2\.5:hover{
    margin: 0.625rem;
  }

  .mobile\:hover\:m-3\.5:hover{
    margin: 0.875rem;
  }

  .mobile\:hover\:-m-0:hover{
    margin: 0px;
  }

  .mobile\:hover\:-m-1:hover{
    margin: -0.25rem;
  }

  .mobile\:hover\:-m-2:hover{
    margin: -0.5rem;
  }

  .mobile\:hover\:-m-3:hover{
    margin: -0.75rem;
  }

  .mobile\:hover\:-m-4:hover{
    margin: -1rem;
  }

  .mobile\:hover\:-m-5:hover{
    margin: -1.25rem;
  }

  .mobile\:hover\:-m-6:hover{
    margin: -1.5rem;
  }

  .mobile\:hover\:-m-7:hover{
    margin: -1.75rem;
  }

  .mobile\:hover\:-m-8:hover{
    margin: -2rem;
  }

  .mobile\:hover\:-m-9:hover{
    margin: -2.25rem;
  }

  .mobile\:hover\:-m-10:hover{
    margin: -2.5rem;
  }

  .mobile\:hover\:-m-11:hover{
    margin: -2.75rem;
  }

  .mobile\:hover\:-m-12:hover{
    margin: -3rem;
  }

  .mobile\:hover\:-m-14:hover{
    margin: -3.5rem;
  }

  .mobile\:hover\:-m-16:hover{
    margin: -4rem;
  }

  .mobile\:hover\:-m-20:hover{
    margin: -5rem;
  }

  .mobile\:hover\:-m-24:hover{
    margin: -6rem;
  }

  .mobile\:hover\:-m-28:hover{
    margin: -7rem;
  }

  .mobile\:hover\:-m-32:hover{
    margin: -8rem;
  }

  .mobile\:hover\:-m-36:hover{
    margin: -9rem;
  }

  .mobile\:hover\:-m-40:hover{
    margin: -10rem;
  }

  .mobile\:hover\:-m-44:hover{
    margin: -11rem;
  }

  .mobile\:hover\:-m-48:hover{
    margin: -12rem;
  }

  .mobile\:hover\:-m-52:hover{
    margin: -13rem;
  }

  .mobile\:hover\:-m-56:hover{
    margin: -14rem;
  }

  .mobile\:hover\:-m-60:hover{
    margin: -15rem;
  }

  .mobile\:hover\:-m-64:hover{
    margin: -16rem;
  }

  .mobile\:hover\:-m-72:hover{
    margin: -18rem;
  }

  .mobile\:hover\:-m-80:hover{
    margin: -20rem;
  }

  .mobile\:hover\:-m-96:hover{
    margin: -24rem;
  }

  .mobile\:hover\:-m-px:hover{
    margin: -1px;
  }

  .mobile\:hover\:-m-0\.5:hover{
    margin: -0.125rem;
  }

  .mobile\:hover\:-m-1\.5:hover{
    margin: -0.375rem;
  }

  .mobile\:hover\:-m-2\.5:hover{
    margin: -0.625rem;
  }

  .mobile\:hover\:-m-3\.5:hover{
    margin: -0.875rem;
  }

  .mobile\:hover\:m-neg1:hover{
    margin: -.25rem;
  }

  .mobile\:hover\:m-neg2:hover{
    margin: -.5rem;
  }

  .mobile\:hover\:m-neg4:hover{
    margin: -1.0rem;
  }

  .mobile\:hover\:m-neg6:hover{
    margin: -1.5rem;
  }

  .mobile\:hover\:m-neg12:hover{
    margin: -3rem;
  }

  .mobile\:hover\:m-neg20:hover{
    margin: -5rem;
  }

  .mobile\:focus\:m-0:focus{
    margin: 0px;
  }

  .mobile\:focus\:m-1:focus{
    margin: 0.25rem;
  }

  .mobile\:focus\:m-2:focus{
    margin: 0.5rem;
  }

  .mobile\:focus\:m-3:focus{
    margin: 0.75rem;
  }

  .mobile\:focus\:m-4:focus{
    margin: 1rem;
  }

  .mobile\:focus\:m-5:focus{
    margin: 1.25rem;
  }

  .mobile\:focus\:m-6:focus{
    margin: 1.5rem;
  }

  .mobile\:focus\:m-7:focus{
    margin: 1.75rem;
  }

  .mobile\:focus\:m-8:focus{
    margin: 2rem;
  }

  .mobile\:focus\:m-9:focus{
    margin: 2.25rem;
  }

  .mobile\:focus\:m-10:focus{
    margin: 2.5rem;
  }

  .mobile\:focus\:m-11:focus{
    margin: 2.75rem;
  }

  .mobile\:focus\:m-12:focus{
    margin: 3rem;
  }

  .mobile\:focus\:m-14:focus{
    margin: 3.5rem;
  }

  .mobile\:focus\:m-16:focus{
    margin: 4rem;
  }

  .mobile\:focus\:m-20:focus{
    margin: 5rem;
  }

  .mobile\:focus\:m-24:focus{
    margin: 6rem;
  }

  .mobile\:focus\:m-28:focus{
    margin: 7rem;
  }

  .mobile\:focus\:m-32:focus{
    margin: 8rem;
  }

  .mobile\:focus\:m-36:focus{
    margin: 9rem;
  }

  .mobile\:focus\:m-40:focus{
    margin: 10rem;
  }

  .mobile\:focus\:m-44:focus{
    margin: 11rem;
  }

  .mobile\:focus\:m-48:focus{
    margin: 12rem;
  }

  .mobile\:focus\:m-52:focus{
    margin: 13rem;
  }

  .mobile\:focus\:m-56:focus{
    margin: 14rem;
  }

  .mobile\:focus\:m-60:focus{
    margin: 15rem;
  }

  .mobile\:focus\:m-64:focus{
    margin: 16rem;
  }

  .mobile\:focus\:m-72:focus{
    margin: 18rem;
  }

  .mobile\:focus\:m-80:focus{
    margin: 20rem;
  }

  .mobile\:focus\:m-96:focus{
    margin: 24rem;
  }

  .mobile\:focus\:m-auto:focus{
    margin: auto;
  }

  .mobile\:focus\:m-px:focus{
    margin: 1px;
  }

  .mobile\:focus\:m-0\.5:focus{
    margin: 0.125rem;
  }

  .mobile\:focus\:m-1\.5:focus{
    margin: 0.375rem;
  }

  .mobile\:focus\:m-2\.5:focus{
    margin: 0.625rem;
  }

  .mobile\:focus\:m-3\.5:focus{
    margin: 0.875rem;
  }

  .mobile\:focus\:-m-0:focus{
    margin: 0px;
  }

  .mobile\:focus\:-m-1:focus{
    margin: -0.25rem;
  }

  .mobile\:focus\:-m-2:focus{
    margin: -0.5rem;
  }

  .mobile\:focus\:-m-3:focus{
    margin: -0.75rem;
  }

  .mobile\:focus\:-m-4:focus{
    margin: -1rem;
  }

  .mobile\:focus\:-m-5:focus{
    margin: -1.25rem;
  }

  .mobile\:focus\:-m-6:focus{
    margin: -1.5rem;
  }

  .mobile\:focus\:-m-7:focus{
    margin: -1.75rem;
  }

  .mobile\:focus\:-m-8:focus{
    margin: -2rem;
  }

  .mobile\:focus\:-m-9:focus{
    margin: -2.25rem;
  }

  .mobile\:focus\:-m-10:focus{
    margin: -2.5rem;
  }

  .mobile\:focus\:-m-11:focus{
    margin: -2.75rem;
  }

  .mobile\:focus\:-m-12:focus{
    margin: -3rem;
  }

  .mobile\:focus\:-m-14:focus{
    margin: -3.5rem;
  }

  .mobile\:focus\:-m-16:focus{
    margin: -4rem;
  }

  .mobile\:focus\:-m-20:focus{
    margin: -5rem;
  }

  .mobile\:focus\:-m-24:focus{
    margin: -6rem;
  }

  .mobile\:focus\:-m-28:focus{
    margin: -7rem;
  }

  .mobile\:focus\:-m-32:focus{
    margin: -8rem;
  }

  .mobile\:focus\:-m-36:focus{
    margin: -9rem;
  }

  .mobile\:focus\:-m-40:focus{
    margin: -10rem;
  }

  .mobile\:focus\:-m-44:focus{
    margin: -11rem;
  }

  .mobile\:focus\:-m-48:focus{
    margin: -12rem;
  }

  .mobile\:focus\:-m-52:focus{
    margin: -13rem;
  }

  .mobile\:focus\:-m-56:focus{
    margin: -14rem;
  }

  .mobile\:focus\:-m-60:focus{
    margin: -15rem;
  }

  .mobile\:focus\:-m-64:focus{
    margin: -16rem;
  }

  .mobile\:focus\:-m-72:focus{
    margin: -18rem;
  }

  .mobile\:focus\:-m-80:focus{
    margin: -20rem;
  }

  .mobile\:focus\:-m-96:focus{
    margin: -24rem;
  }

  .mobile\:focus\:-m-px:focus{
    margin: -1px;
  }

  .mobile\:focus\:-m-0\.5:focus{
    margin: -0.125rem;
  }

  .mobile\:focus\:-m-1\.5:focus{
    margin: -0.375rem;
  }

  .mobile\:focus\:-m-2\.5:focus{
    margin: -0.625rem;
  }

  .mobile\:focus\:-m-3\.5:focus{
    margin: -0.875rem;
  }

  .mobile\:focus\:m-neg1:focus{
    margin: -.25rem;
  }

  .mobile\:focus\:m-neg2:focus{
    margin: -.5rem;
  }

  .mobile\:focus\:m-neg4:focus{
    margin: -1.0rem;
  }

  .mobile\:focus\:m-neg6:focus{
    margin: -1.5rem;
  }

  .mobile\:focus\:m-neg12:focus{
    margin: -3rem;
  }

  .mobile\:focus\:m-neg20:focus{
    margin: -5rem;
  }

  .mobile\:first\:m-0:first-child{
    margin: 0px;
  }

  .mobile\:first\:m-1:first-child{
    margin: 0.25rem;
  }

  .mobile\:first\:m-2:first-child{
    margin: 0.5rem;
  }

  .mobile\:first\:m-3:first-child{
    margin: 0.75rem;
  }

  .mobile\:first\:m-4:first-child{
    margin: 1rem;
  }

  .mobile\:first\:m-5:first-child{
    margin: 1.25rem;
  }

  .mobile\:first\:m-6:first-child{
    margin: 1.5rem;
  }

  .mobile\:first\:m-7:first-child{
    margin: 1.75rem;
  }

  .mobile\:first\:m-8:first-child{
    margin: 2rem;
  }

  .mobile\:first\:m-9:first-child{
    margin: 2.25rem;
  }

  .mobile\:first\:m-10:first-child{
    margin: 2.5rem;
  }

  .mobile\:first\:m-11:first-child{
    margin: 2.75rem;
  }

  .mobile\:first\:m-12:first-child{
    margin: 3rem;
  }

  .mobile\:first\:m-14:first-child{
    margin: 3.5rem;
  }

  .mobile\:first\:m-16:first-child{
    margin: 4rem;
  }

  .mobile\:first\:m-20:first-child{
    margin: 5rem;
  }

  .mobile\:first\:m-24:first-child{
    margin: 6rem;
  }

  .mobile\:first\:m-28:first-child{
    margin: 7rem;
  }

  .mobile\:first\:m-32:first-child{
    margin: 8rem;
  }

  .mobile\:first\:m-36:first-child{
    margin: 9rem;
  }

  .mobile\:first\:m-40:first-child{
    margin: 10rem;
  }

  .mobile\:first\:m-44:first-child{
    margin: 11rem;
  }

  .mobile\:first\:m-48:first-child{
    margin: 12rem;
  }

  .mobile\:first\:m-52:first-child{
    margin: 13rem;
  }

  .mobile\:first\:m-56:first-child{
    margin: 14rem;
  }

  .mobile\:first\:m-60:first-child{
    margin: 15rem;
  }

  .mobile\:first\:m-64:first-child{
    margin: 16rem;
  }

  .mobile\:first\:m-72:first-child{
    margin: 18rem;
  }

  .mobile\:first\:m-80:first-child{
    margin: 20rem;
  }

  .mobile\:first\:m-96:first-child{
    margin: 24rem;
  }

  .mobile\:first\:m-auto:first-child{
    margin: auto;
  }

  .mobile\:first\:m-px:first-child{
    margin: 1px;
  }

  .mobile\:first\:m-0\.5:first-child{
    margin: 0.125rem;
  }

  .mobile\:first\:m-1\.5:first-child{
    margin: 0.375rem;
  }

  .mobile\:first\:m-2\.5:first-child{
    margin: 0.625rem;
  }

  .mobile\:first\:m-3\.5:first-child{
    margin: 0.875rem;
  }

  .mobile\:first\:-m-0:first-child{
    margin: 0px;
  }

  .mobile\:first\:-m-1:first-child{
    margin: -0.25rem;
  }

  .mobile\:first\:-m-2:first-child{
    margin: -0.5rem;
  }

  .mobile\:first\:-m-3:first-child{
    margin: -0.75rem;
  }

  .mobile\:first\:-m-4:first-child{
    margin: -1rem;
  }

  .mobile\:first\:-m-5:first-child{
    margin: -1.25rem;
  }

  .mobile\:first\:-m-6:first-child{
    margin: -1.5rem;
  }

  .mobile\:first\:-m-7:first-child{
    margin: -1.75rem;
  }

  .mobile\:first\:-m-8:first-child{
    margin: -2rem;
  }

  .mobile\:first\:-m-9:first-child{
    margin: -2.25rem;
  }

  .mobile\:first\:-m-10:first-child{
    margin: -2.5rem;
  }

  .mobile\:first\:-m-11:first-child{
    margin: -2.75rem;
  }

  .mobile\:first\:-m-12:first-child{
    margin: -3rem;
  }

  .mobile\:first\:-m-14:first-child{
    margin: -3.5rem;
  }

  .mobile\:first\:-m-16:first-child{
    margin: -4rem;
  }

  .mobile\:first\:-m-20:first-child{
    margin: -5rem;
  }

  .mobile\:first\:-m-24:first-child{
    margin: -6rem;
  }

  .mobile\:first\:-m-28:first-child{
    margin: -7rem;
  }

  .mobile\:first\:-m-32:first-child{
    margin: -8rem;
  }

  .mobile\:first\:-m-36:first-child{
    margin: -9rem;
  }

  .mobile\:first\:-m-40:first-child{
    margin: -10rem;
  }

  .mobile\:first\:-m-44:first-child{
    margin: -11rem;
  }

  .mobile\:first\:-m-48:first-child{
    margin: -12rem;
  }

  .mobile\:first\:-m-52:first-child{
    margin: -13rem;
  }

  .mobile\:first\:-m-56:first-child{
    margin: -14rem;
  }

  .mobile\:first\:-m-60:first-child{
    margin: -15rem;
  }

  .mobile\:first\:-m-64:first-child{
    margin: -16rem;
  }

  .mobile\:first\:-m-72:first-child{
    margin: -18rem;
  }

  .mobile\:first\:-m-80:first-child{
    margin: -20rem;
  }

  .mobile\:first\:-m-96:first-child{
    margin: -24rem;
  }

  .mobile\:first\:-m-px:first-child{
    margin: -1px;
  }

  .mobile\:first\:-m-0\.5:first-child{
    margin: -0.125rem;
  }

  .mobile\:first\:-m-1\.5:first-child{
    margin: -0.375rem;
  }

  .mobile\:first\:-m-2\.5:first-child{
    margin: -0.625rem;
  }

  .mobile\:first\:-m-3\.5:first-child{
    margin: -0.875rem;
  }

  .mobile\:first\:m-neg1:first-child{
    margin: -.25rem;
  }

  .mobile\:first\:m-neg2:first-child{
    margin: -.5rem;
  }

  .mobile\:first\:m-neg4:first-child{
    margin: -1.0rem;
  }

  .mobile\:first\:m-neg6:first-child{
    margin: -1.5rem;
  }

  .mobile\:first\:m-neg12:first-child{
    margin: -3rem;
  }

  .mobile\:first\:m-neg20:first-child{
    margin: -5rem;
  }

  .mobile\:last\:m-0:last-child{
    margin: 0px;
  }

  .mobile\:last\:m-1:last-child{
    margin: 0.25rem;
  }

  .mobile\:last\:m-2:last-child{
    margin: 0.5rem;
  }

  .mobile\:last\:m-3:last-child{
    margin: 0.75rem;
  }

  .mobile\:last\:m-4:last-child{
    margin: 1rem;
  }

  .mobile\:last\:m-5:last-child{
    margin: 1.25rem;
  }

  .mobile\:last\:m-6:last-child{
    margin: 1.5rem;
  }

  .mobile\:last\:m-7:last-child{
    margin: 1.75rem;
  }

  .mobile\:last\:m-8:last-child{
    margin: 2rem;
  }

  .mobile\:last\:m-9:last-child{
    margin: 2.25rem;
  }

  .mobile\:last\:m-10:last-child{
    margin: 2.5rem;
  }

  .mobile\:last\:m-11:last-child{
    margin: 2.75rem;
  }

  .mobile\:last\:m-12:last-child{
    margin: 3rem;
  }

  .mobile\:last\:m-14:last-child{
    margin: 3.5rem;
  }

  .mobile\:last\:m-16:last-child{
    margin: 4rem;
  }

  .mobile\:last\:m-20:last-child{
    margin: 5rem;
  }

  .mobile\:last\:m-24:last-child{
    margin: 6rem;
  }

  .mobile\:last\:m-28:last-child{
    margin: 7rem;
  }

  .mobile\:last\:m-32:last-child{
    margin: 8rem;
  }

  .mobile\:last\:m-36:last-child{
    margin: 9rem;
  }

  .mobile\:last\:m-40:last-child{
    margin: 10rem;
  }

  .mobile\:last\:m-44:last-child{
    margin: 11rem;
  }

  .mobile\:last\:m-48:last-child{
    margin: 12rem;
  }

  .mobile\:last\:m-52:last-child{
    margin: 13rem;
  }

  .mobile\:last\:m-56:last-child{
    margin: 14rem;
  }

  .mobile\:last\:m-60:last-child{
    margin: 15rem;
  }

  .mobile\:last\:m-64:last-child{
    margin: 16rem;
  }

  .mobile\:last\:m-72:last-child{
    margin: 18rem;
  }

  .mobile\:last\:m-80:last-child{
    margin: 20rem;
  }

  .mobile\:last\:m-96:last-child{
    margin: 24rem;
  }

  .mobile\:last\:m-auto:last-child{
    margin: auto;
  }

  .mobile\:last\:m-px:last-child{
    margin: 1px;
  }

  .mobile\:last\:m-0\.5:last-child{
    margin: 0.125rem;
  }

  .mobile\:last\:m-1\.5:last-child{
    margin: 0.375rem;
  }

  .mobile\:last\:m-2\.5:last-child{
    margin: 0.625rem;
  }

  .mobile\:last\:m-3\.5:last-child{
    margin: 0.875rem;
  }

  .mobile\:last\:-m-0:last-child{
    margin: 0px;
  }

  .mobile\:last\:-m-1:last-child{
    margin: -0.25rem;
  }

  .mobile\:last\:-m-2:last-child{
    margin: -0.5rem;
  }

  .mobile\:last\:-m-3:last-child{
    margin: -0.75rem;
  }

  .mobile\:last\:-m-4:last-child{
    margin: -1rem;
  }

  .mobile\:last\:-m-5:last-child{
    margin: -1.25rem;
  }

  .mobile\:last\:-m-6:last-child{
    margin: -1.5rem;
  }

  .mobile\:last\:-m-7:last-child{
    margin: -1.75rem;
  }

  .mobile\:last\:-m-8:last-child{
    margin: -2rem;
  }

  .mobile\:last\:-m-9:last-child{
    margin: -2.25rem;
  }

  .mobile\:last\:-m-10:last-child{
    margin: -2.5rem;
  }

  .mobile\:last\:-m-11:last-child{
    margin: -2.75rem;
  }

  .mobile\:last\:-m-12:last-child{
    margin: -3rem;
  }

  .mobile\:last\:-m-14:last-child{
    margin: -3.5rem;
  }

  .mobile\:last\:-m-16:last-child{
    margin: -4rem;
  }

  .mobile\:last\:-m-20:last-child{
    margin: -5rem;
  }

  .mobile\:last\:-m-24:last-child{
    margin: -6rem;
  }

  .mobile\:last\:-m-28:last-child{
    margin: -7rem;
  }

  .mobile\:last\:-m-32:last-child{
    margin: -8rem;
  }

  .mobile\:last\:-m-36:last-child{
    margin: -9rem;
  }

  .mobile\:last\:-m-40:last-child{
    margin: -10rem;
  }

  .mobile\:last\:-m-44:last-child{
    margin: -11rem;
  }

  .mobile\:last\:-m-48:last-child{
    margin: -12rem;
  }

  .mobile\:last\:-m-52:last-child{
    margin: -13rem;
  }

  .mobile\:last\:-m-56:last-child{
    margin: -14rem;
  }

  .mobile\:last\:-m-60:last-child{
    margin: -15rem;
  }

  .mobile\:last\:-m-64:last-child{
    margin: -16rem;
  }

  .mobile\:last\:-m-72:last-child{
    margin: -18rem;
  }

  .mobile\:last\:-m-80:last-child{
    margin: -20rem;
  }

  .mobile\:last\:-m-96:last-child{
    margin: -24rem;
  }

  .mobile\:last\:-m-px:last-child{
    margin: -1px;
  }

  .mobile\:last\:-m-0\.5:last-child{
    margin: -0.125rem;
  }

  .mobile\:last\:-m-1\.5:last-child{
    margin: -0.375rem;
  }

  .mobile\:last\:-m-2\.5:last-child{
    margin: -0.625rem;
  }

  .mobile\:last\:-m-3\.5:last-child{
    margin: -0.875rem;
  }

  .mobile\:last\:m-neg1:last-child{
    margin: -.25rem;
  }

  .mobile\:last\:m-neg2:last-child{
    margin: -.5rem;
  }

  .mobile\:last\:m-neg4:last-child{
    margin: -1.0rem;
  }

  .mobile\:last\:m-neg6:last-child{
    margin: -1.5rem;
  }

  .mobile\:last\:m-neg12:last-child{
    margin: -3rem;
  }

  .mobile\:last\:m-neg20:last-child{
    margin: -5rem;
  }

  .mobile\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }

  .mobile\:mx-1{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .mobile\:mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .mobile\:mx-3{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .mobile\:mx-4{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .mobile\:mx-5{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .mobile\:mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .mobile\:mx-7{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .mobile\:mx-8{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .mobile\:mx-9{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .mobile\:mx-10{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .mobile\:mx-11{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .mobile\:mx-12{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .mobile\:mx-14{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .mobile\:mx-16{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .mobile\:mx-20{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .mobile\:mx-24{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .mobile\:mx-28{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .mobile\:mx-32{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .mobile\:mx-36{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .mobile\:mx-40{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .mobile\:mx-44{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .mobile\:mx-48{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .mobile\:mx-52{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .mobile\:mx-56{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .mobile\:mx-60{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .mobile\:mx-64{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .mobile\:mx-72{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .mobile\:mx-80{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .mobile\:mx-96{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .mobile\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .mobile\:mx-px{
    margin-left: 1px;
    margin-right: 1px;
  }

  .mobile\:mx-0\.5{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .mobile\:mx-1\.5{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .mobile\:mx-2\.5{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .mobile\:mx-3\.5{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .mobile\:-mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }

  .mobile\:-mx-1{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .mobile\:-mx-2{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .mobile\:-mx-3{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .mobile\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .mobile\:-mx-5{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .mobile\:-mx-6{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .mobile\:-mx-7{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .mobile\:-mx-8{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .mobile\:-mx-9{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .mobile\:-mx-10{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .mobile\:-mx-11{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .mobile\:-mx-12{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .mobile\:-mx-14{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .mobile\:-mx-16{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .mobile\:-mx-20{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .mobile\:-mx-24{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .mobile\:-mx-28{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .mobile\:-mx-32{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .mobile\:-mx-36{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .mobile\:-mx-40{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .mobile\:-mx-44{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .mobile\:-mx-48{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .mobile\:-mx-52{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .mobile\:-mx-56{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .mobile\:-mx-60{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .mobile\:-mx-64{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .mobile\:-mx-72{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .mobile\:-mx-80{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .mobile\:-mx-96{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .mobile\:-mx-px{
    margin-left: -1px;
    margin-right: -1px;
  }

  .mobile\:-mx-0\.5{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .mobile\:-mx-1\.5{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .mobile\:-mx-2\.5{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .mobile\:-mx-3\.5{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .mobile\:mx-neg1{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .mobile\:mx-neg2{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .mobile\:mx-neg4{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .mobile\:mx-neg6{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .mobile\:mx-neg12{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .mobile\:mx-neg20{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .mobile\:my-0{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mobile\:my-1{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .mobile\:my-2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .mobile\:my-3{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .mobile\:my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .mobile\:my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .mobile\:my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mobile\:my-7{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .mobile\:my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .mobile\:my-9{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .mobile\:my-10{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .mobile\:my-11{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .mobile\:my-12{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .mobile\:my-14{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .mobile\:my-16{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .mobile\:my-20{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .mobile\:my-24{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .mobile\:my-28{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .mobile\:my-32{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .mobile\:my-36{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .mobile\:my-40{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .mobile\:my-44{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .mobile\:my-48{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .mobile\:my-52{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .mobile\:my-56{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .mobile\:my-60{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .mobile\:my-64{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .mobile\:my-72{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .mobile\:my-80{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .mobile\:my-96{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .mobile\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }

  .mobile\:my-px{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .mobile\:my-0\.5{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .mobile\:my-1\.5{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .mobile\:my-2\.5{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .mobile\:my-3\.5{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .mobile\:-my-0{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mobile\:-my-1{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .mobile\:-my-2{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .mobile\:-my-3{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .mobile\:-my-4{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .mobile\:-my-5{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .mobile\:-my-6{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .mobile\:-my-7{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .mobile\:-my-8{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .mobile\:-my-9{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .mobile\:-my-10{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .mobile\:-my-11{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .mobile\:-my-12{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .mobile\:-my-14{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .mobile\:-my-16{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .mobile\:-my-20{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .mobile\:-my-24{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .mobile\:-my-28{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .mobile\:-my-32{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .mobile\:-my-36{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .mobile\:-my-40{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .mobile\:-my-44{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .mobile\:-my-48{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .mobile\:-my-52{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .mobile\:-my-56{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .mobile\:-my-60{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .mobile\:-my-64{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .mobile\:-my-72{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .mobile\:-my-80{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .mobile\:-my-96{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .mobile\:-my-px{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .mobile\:-my-0\.5{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .mobile\:-my-1\.5{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .mobile\:-my-2\.5{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .mobile\:-my-3\.5{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .mobile\:my-neg1{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .mobile\:my-neg2{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .mobile\:my-neg4{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .mobile\:my-neg6{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .mobile\:my-neg12{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .mobile\:my-neg20{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .mobile\:last\:mx-0:last-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .mobile\:last\:mx-1:last-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .mobile\:last\:mx-2:last-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .mobile\:last\:mx-3:last-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .mobile\:last\:mx-4:last-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .mobile\:last\:mx-5:last-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .mobile\:last\:mx-6:last-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .mobile\:last\:mx-7:last-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .mobile\:last\:mx-8:last-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .mobile\:last\:mx-9:last-child{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .mobile\:last\:mx-10:last-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .mobile\:last\:mx-11:last-child{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .mobile\:last\:mx-12:last-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .mobile\:last\:mx-14:last-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .mobile\:last\:mx-16:last-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .mobile\:last\:mx-20:last-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .mobile\:last\:mx-24:last-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .mobile\:last\:mx-28:last-child{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .mobile\:last\:mx-32:last-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .mobile\:last\:mx-36:last-child{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .mobile\:last\:mx-40:last-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .mobile\:last\:mx-44:last-child{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .mobile\:last\:mx-48:last-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .mobile\:last\:mx-52:last-child{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .mobile\:last\:mx-56:last-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .mobile\:last\:mx-60:last-child{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .mobile\:last\:mx-64:last-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .mobile\:last\:mx-72:last-child{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .mobile\:last\:mx-80:last-child{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .mobile\:last\:mx-96:last-child{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .mobile\:last\:mx-auto:last-child{
    margin-left: auto;
    margin-right: auto;
  }

  .mobile\:last\:mx-px:last-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .mobile\:last\:mx-0\.5:last-child{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .mobile\:last\:mx-1\.5:last-child{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .mobile\:last\:mx-2\.5:last-child{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .mobile\:last\:mx-3\.5:last-child{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .mobile\:last\:-mx-0:last-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .mobile\:last\:-mx-1:last-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .mobile\:last\:-mx-2:last-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .mobile\:last\:-mx-3:last-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .mobile\:last\:-mx-4:last-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .mobile\:last\:-mx-5:last-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .mobile\:last\:-mx-6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .mobile\:last\:-mx-7:last-child{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .mobile\:last\:-mx-8:last-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .mobile\:last\:-mx-9:last-child{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .mobile\:last\:-mx-10:last-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .mobile\:last\:-mx-11:last-child{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .mobile\:last\:-mx-12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .mobile\:last\:-mx-14:last-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .mobile\:last\:-mx-16:last-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .mobile\:last\:-mx-20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .mobile\:last\:-mx-24:last-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .mobile\:last\:-mx-28:last-child{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .mobile\:last\:-mx-32:last-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .mobile\:last\:-mx-36:last-child{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .mobile\:last\:-mx-40:last-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .mobile\:last\:-mx-44:last-child{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .mobile\:last\:-mx-48:last-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .mobile\:last\:-mx-52:last-child{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .mobile\:last\:-mx-56:last-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .mobile\:last\:-mx-60:last-child{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .mobile\:last\:-mx-64:last-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .mobile\:last\:-mx-72:last-child{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .mobile\:last\:-mx-80:last-child{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .mobile\:last\:-mx-96:last-child{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .mobile\:last\:-mx-px:last-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .mobile\:last\:-mx-0\.5:last-child{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .mobile\:last\:-mx-1\.5:last-child{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .mobile\:last\:-mx-2\.5:last-child{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .mobile\:last\:-mx-3\.5:last-child{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .mobile\:last\:mx-neg1:last-child{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .mobile\:last\:mx-neg2:last-child{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .mobile\:last\:mx-neg4:last-child{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .mobile\:last\:mx-neg6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .mobile\:last\:mx-neg12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .mobile\:last\:mx-neg20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .mobile\:last\:my-0:last-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mobile\:last\:my-1:last-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .mobile\:last\:my-2:last-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .mobile\:last\:my-3:last-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .mobile\:last\:my-4:last-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .mobile\:last\:my-5:last-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .mobile\:last\:my-6:last-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mobile\:last\:my-7:last-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .mobile\:last\:my-8:last-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .mobile\:last\:my-9:last-child{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .mobile\:last\:my-10:last-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .mobile\:last\:my-11:last-child{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .mobile\:last\:my-12:last-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .mobile\:last\:my-14:last-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .mobile\:last\:my-16:last-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .mobile\:last\:my-20:last-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .mobile\:last\:my-24:last-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .mobile\:last\:my-28:last-child{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .mobile\:last\:my-32:last-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .mobile\:last\:my-36:last-child{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .mobile\:last\:my-40:last-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .mobile\:last\:my-44:last-child{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .mobile\:last\:my-48:last-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .mobile\:last\:my-52:last-child{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .mobile\:last\:my-56:last-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .mobile\:last\:my-60:last-child{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .mobile\:last\:my-64:last-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .mobile\:last\:my-72:last-child{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .mobile\:last\:my-80:last-child{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .mobile\:last\:my-96:last-child{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .mobile\:last\:my-auto:last-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .mobile\:last\:my-px:last-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .mobile\:last\:my-0\.5:last-child{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .mobile\:last\:my-1\.5:last-child{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .mobile\:last\:my-2\.5:last-child{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .mobile\:last\:my-3\.5:last-child{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .mobile\:last\:-my-0:last-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mobile\:last\:-my-1:last-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .mobile\:last\:-my-2:last-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .mobile\:last\:-my-3:last-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .mobile\:last\:-my-4:last-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .mobile\:last\:-my-5:last-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .mobile\:last\:-my-6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .mobile\:last\:-my-7:last-child{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .mobile\:last\:-my-8:last-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .mobile\:last\:-my-9:last-child{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .mobile\:last\:-my-10:last-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .mobile\:last\:-my-11:last-child{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .mobile\:last\:-my-12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .mobile\:last\:-my-14:last-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .mobile\:last\:-my-16:last-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .mobile\:last\:-my-20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .mobile\:last\:-my-24:last-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .mobile\:last\:-my-28:last-child{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .mobile\:last\:-my-32:last-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .mobile\:last\:-my-36:last-child{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .mobile\:last\:-my-40:last-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .mobile\:last\:-my-44:last-child{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .mobile\:last\:-my-48:last-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .mobile\:last\:-my-52:last-child{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .mobile\:last\:-my-56:last-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .mobile\:last\:-my-60:last-child{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .mobile\:last\:-my-64:last-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .mobile\:last\:-my-72:last-child{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .mobile\:last\:-my-80:last-child{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .mobile\:last\:-my-96:last-child{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .mobile\:last\:-my-px:last-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .mobile\:last\:-my-0\.5:last-child{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .mobile\:last\:-my-1\.5:last-child{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .mobile\:last\:-my-2\.5:last-child{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .mobile\:last\:-my-3\.5:last-child{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .mobile\:last\:my-neg1:last-child{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .mobile\:last\:my-neg2:last-child{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .mobile\:last\:my-neg4:last-child{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .mobile\:last\:my-neg6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .mobile\:last\:my-neg12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .mobile\:last\:my-neg20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .mobile\:hover\:mx-0:hover{
    margin-left: 0px;
    margin-right: 0px;
  }

  .mobile\:hover\:mx-1:hover{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .mobile\:hover\:mx-2:hover{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .mobile\:hover\:mx-3:hover{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .mobile\:hover\:mx-4:hover{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .mobile\:hover\:mx-5:hover{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .mobile\:hover\:mx-6:hover{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .mobile\:hover\:mx-7:hover{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .mobile\:hover\:mx-8:hover{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .mobile\:hover\:mx-9:hover{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .mobile\:hover\:mx-10:hover{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .mobile\:hover\:mx-11:hover{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .mobile\:hover\:mx-12:hover{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .mobile\:hover\:mx-14:hover{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .mobile\:hover\:mx-16:hover{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .mobile\:hover\:mx-20:hover{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .mobile\:hover\:mx-24:hover{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .mobile\:hover\:mx-28:hover{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .mobile\:hover\:mx-32:hover{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .mobile\:hover\:mx-36:hover{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .mobile\:hover\:mx-40:hover{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .mobile\:hover\:mx-44:hover{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .mobile\:hover\:mx-48:hover{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .mobile\:hover\:mx-52:hover{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .mobile\:hover\:mx-56:hover{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .mobile\:hover\:mx-60:hover{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .mobile\:hover\:mx-64:hover{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .mobile\:hover\:mx-72:hover{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .mobile\:hover\:mx-80:hover{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .mobile\:hover\:mx-96:hover{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .mobile\:hover\:mx-auto:hover{
    margin-left: auto;
    margin-right: auto;
  }

  .mobile\:hover\:mx-px:hover{
    margin-left: 1px;
    margin-right: 1px;
  }

  .mobile\:hover\:mx-0\.5:hover{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .mobile\:hover\:mx-1\.5:hover{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .mobile\:hover\:mx-2\.5:hover{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .mobile\:hover\:mx-3\.5:hover{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .mobile\:hover\:-mx-0:hover{
    margin-left: 0px;
    margin-right: 0px;
  }

  .mobile\:hover\:-mx-1:hover{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .mobile\:hover\:-mx-2:hover{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .mobile\:hover\:-mx-3:hover{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .mobile\:hover\:-mx-4:hover{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .mobile\:hover\:-mx-5:hover{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .mobile\:hover\:-mx-6:hover{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .mobile\:hover\:-mx-7:hover{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .mobile\:hover\:-mx-8:hover{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .mobile\:hover\:-mx-9:hover{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .mobile\:hover\:-mx-10:hover{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .mobile\:hover\:-mx-11:hover{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .mobile\:hover\:-mx-12:hover{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .mobile\:hover\:-mx-14:hover{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .mobile\:hover\:-mx-16:hover{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .mobile\:hover\:-mx-20:hover{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .mobile\:hover\:-mx-24:hover{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .mobile\:hover\:-mx-28:hover{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .mobile\:hover\:-mx-32:hover{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .mobile\:hover\:-mx-36:hover{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .mobile\:hover\:-mx-40:hover{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .mobile\:hover\:-mx-44:hover{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .mobile\:hover\:-mx-48:hover{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .mobile\:hover\:-mx-52:hover{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .mobile\:hover\:-mx-56:hover{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .mobile\:hover\:-mx-60:hover{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .mobile\:hover\:-mx-64:hover{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .mobile\:hover\:-mx-72:hover{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .mobile\:hover\:-mx-80:hover{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .mobile\:hover\:-mx-96:hover{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .mobile\:hover\:-mx-px:hover{
    margin-left: -1px;
    margin-right: -1px;
  }

  .mobile\:hover\:-mx-0\.5:hover{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .mobile\:hover\:-mx-1\.5:hover{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .mobile\:hover\:-mx-2\.5:hover{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .mobile\:hover\:-mx-3\.5:hover{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .mobile\:hover\:mx-neg1:hover{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .mobile\:hover\:mx-neg2:hover{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .mobile\:hover\:mx-neg4:hover{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .mobile\:hover\:mx-neg6:hover{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .mobile\:hover\:mx-neg12:hover{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .mobile\:hover\:mx-neg20:hover{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .mobile\:hover\:my-0:hover{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mobile\:hover\:my-1:hover{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .mobile\:hover\:my-2:hover{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .mobile\:hover\:my-3:hover{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .mobile\:hover\:my-4:hover{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .mobile\:hover\:my-5:hover{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .mobile\:hover\:my-6:hover{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mobile\:hover\:my-7:hover{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .mobile\:hover\:my-8:hover{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .mobile\:hover\:my-9:hover{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .mobile\:hover\:my-10:hover{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .mobile\:hover\:my-11:hover{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .mobile\:hover\:my-12:hover{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .mobile\:hover\:my-14:hover{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .mobile\:hover\:my-16:hover{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .mobile\:hover\:my-20:hover{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .mobile\:hover\:my-24:hover{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .mobile\:hover\:my-28:hover{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .mobile\:hover\:my-32:hover{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .mobile\:hover\:my-36:hover{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .mobile\:hover\:my-40:hover{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .mobile\:hover\:my-44:hover{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .mobile\:hover\:my-48:hover{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .mobile\:hover\:my-52:hover{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .mobile\:hover\:my-56:hover{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .mobile\:hover\:my-60:hover{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .mobile\:hover\:my-64:hover{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .mobile\:hover\:my-72:hover{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .mobile\:hover\:my-80:hover{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .mobile\:hover\:my-96:hover{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .mobile\:hover\:my-auto:hover{
    margin-top: auto;
    margin-bottom: auto;
  }

  .mobile\:hover\:my-px:hover{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .mobile\:hover\:my-0\.5:hover{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .mobile\:hover\:my-1\.5:hover{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .mobile\:hover\:my-2\.5:hover{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .mobile\:hover\:my-3\.5:hover{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .mobile\:hover\:-my-0:hover{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mobile\:hover\:-my-1:hover{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .mobile\:hover\:-my-2:hover{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .mobile\:hover\:-my-3:hover{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .mobile\:hover\:-my-4:hover{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .mobile\:hover\:-my-5:hover{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .mobile\:hover\:-my-6:hover{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .mobile\:hover\:-my-7:hover{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .mobile\:hover\:-my-8:hover{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .mobile\:hover\:-my-9:hover{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .mobile\:hover\:-my-10:hover{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .mobile\:hover\:-my-11:hover{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .mobile\:hover\:-my-12:hover{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .mobile\:hover\:-my-14:hover{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .mobile\:hover\:-my-16:hover{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .mobile\:hover\:-my-20:hover{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .mobile\:hover\:-my-24:hover{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .mobile\:hover\:-my-28:hover{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .mobile\:hover\:-my-32:hover{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .mobile\:hover\:-my-36:hover{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .mobile\:hover\:-my-40:hover{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .mobile\:hover\:-my-44:hover{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .mobile\:hover\:-my-48:hover{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .mobile\:hover\:-my-52:hover{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .mobile\:hover\:-my-56:hover{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .mobile\:hover\:-my-60:hover{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .mobile\:hover\:-my-64:hover{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .mobile\:hover\:-my-72:hover{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .mobile\:hover\:-my-80:hover{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .mobile\:hover\:-my-96:hover{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .mobile\:hover\:-my-px:hover{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .mobile\:hover\:-my-0\.5:hover{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .mobile\:hover\:-my-1\.5:hover{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .mobile\:hover\:-my-2\.5:hover{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .mobile\:hover\:-my-3\.5:hover{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .mobile\:hover\:my-neg1:hover{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .mobile\:hover\:my-neg2:hover{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .mobile\:hover\:my-neg4:hover{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .mobile\:hover\:my-neg6:hover{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .mobile\:hover\:my-neg12:hover{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .mobile\:hover\:my-neg20:hover{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .mobile\:focus\:mx-0:focus{
    margin-left: 0px;
    margin-right: 0px;
  }

  .mobile\:focus\:mx-1:focus{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .mobile\:focus\:mx-2:focus{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .mobile\:focus\:mx-3:focus{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .mobile\:focus\:mx-4:focus{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .mobile\:focus\:mx-5:focus{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .mobile\:focus\:mx-6:focus{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .mobile\:focus\:mx-7:focus{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .mobile\:focus\:mx-8:focus{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .mobile\:focus\:mx-9:focus{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .mobile\:focus\:mx-10:focus{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .mobile\:focus\:mx-11:focus{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .mobile\:focus\:mx-12:focus{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .mobile\:focus\:mx-14:focus{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .mobile\:focus\:mx-16:focus{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .mobile\:focus\:mx-20:focus{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .mobile\:focus\:mx-24:focus{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .mobile\:focus\:mx-28:focus{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .mobile\:focus\:mx-32:focus{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .mobile\:focus\:mx-36:focus{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .mobile\:focus\:mx-40:focus{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .mobile\:focus\:mx-44:focus{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .mobile\:focus\:mx-48:focus{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .mobile\:focus\:mx-52:focus{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .mobile\:focus\:mx-56:focus{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .mobile\:focus\:mx-60:focus{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .mobile\:focus\:mx-64:focus{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .mobile\:focus\:mx-72:focus{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .mobile\:focus\:mx-80:focus{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .mobile\:focus\:mx-96:focus{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .mobile\:focus\:mx-auto:focus{
    margin-left: auto;
    margin-right: auto;
  }

  .mobile\:focus\:mx-px:focus{
    margin-left: 1px;
    margin-right: 1px;
  }

  .mobile\:focus\:mx-0\.5:focus{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .mobile\:focus\:mx-1\.5:focus{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .mobile\:focus\:mx-2\.5:focus{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .mobile\:focus\:mx-3\.5:focus{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .mobile\:focus\:-mx-0:focus{
    margin-left: 0px;
    margin-right: 0px;
  }

  .mobile\:focus\:-mx-1:focus{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .mobile\:focus\:-mx-2:focus{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .mobile\:focus\:-mx-3:focus{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .mobile\:focus\:-mx-4:focus{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .mobile\:focus\:-mx-5:focus{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .mobile\:focus\:-mx-6:focus{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .mobile\:focus\:-mx-7:focus{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .mobile\:focus\:-mx-8:focus{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .mobile\:focus\:-mx-9:focus{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .mobile\:focus\:-mx-10:focus{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .mobile\:focus\:-mx-11:focus{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .mobile\:focus\:-mx-12:focus{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .mobile\:focus\:-mx-14:focus{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .mobile\:focus\:-mx-16:focus{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .mobile\:focus\:-mx-20:focus{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .mobile\:focus\:-mx-24:focus{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .mobile\:focus\:-mx-28:focus{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .mobile\:focus\:-mx-32:focus{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .mobile\:focus\:-mx-36:focus{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .mobile\:focus\:-mx-40:focus{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .mobile\:focus\:-mx-44:focus{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .mobile\:focus\:-mx-48:focus{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .mobile\:focus\:-mx-52:focus{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .mobile\:focus\:-mx-56:focus{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .mobile\:focus\:-mx-60:focus{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .mobile\:focus\:-mx-64:focus{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .mobile\:focus\:-mx-72:focus{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .mobile\:focus\:-mx-80:focus{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .mobile\:focus\:-mx-96:focus{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .mobile\:focus\:-mx-px:focus{
    margin-left: -1px;
    margin-right: -1px;
  }

  .mobile\:focus\:-mx-0\.5:focus{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .mobile\:focus\:-mx-1\.5:focus{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .mobile\:focus\:-mx-2\.5:focus{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .mobile\:focus\:-mx-3\.5:focus{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .mobile\:focus\:mx-neg1:focus{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .mobile\:focus\:mx-neg2:focus{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .mobile\:focus\:mx-neg4:focus{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .mobile\:focus\:mx-neg6:focus{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .mobile\:focus\:mx-neg12:focus{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .mobile\:focus\:mx-neg20:focus{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .mobile\:focus\:my-0:focus{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mobile\:focus\:my-1:focus{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .mobile\:focus\:my-2:focus{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .mobile\:focus\:my-3:focus{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .mobile\:focus\:my-4:focus{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .mobile\:focus\:my-5:focus{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .mobile\:focus\:my-6:focus{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mobile\:focus\:my-7:focus{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .mobile\:focus\:my-8:focus{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .mobile\:focus\:my-9:focus{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .mobile\:focus\:my-10:focus{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .mobile\:focus\:my-11:focus{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .mobile\:focus\:my-12:focus{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .mobile\:focus\:my-14:focus{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .mobile\:focus\:my-16:focus{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .mobile\:focus\:my-20:focus{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .mobile\:focus\:my-24:focus{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .mobile\:focus\:my-28:focus{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .mobile\:focus\:my-32:focus{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .mobile\:focus\:my-36:focus{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .mobile\:focus\:my-40:focus{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .mobile\:focus\:my-44:focus{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .mobile\:focus\:my-48:focus{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .mobile\:focus\:my-52:focus{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .mobile\:focus\:my-56:focus{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .mobile\:focus\:my-60:focus{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .mobile\:focus\:my-64:focus{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .mobile\:focus\:my-72:focus{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .mobile\:focus\:my-80:focus{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .mobile\:focus\:my-96:focus{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .mobile\:focus\:my-auto:focus{
    margin-top: auto;
    margin-bottom: auto;
  }

  .mobile\:focus\:my-px:focus{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .mobile\:focus\:my-0\.5:focus{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .mobile\:focus\:my-1\.5:focus{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .mobile\:focus\:my-2\.5:focus{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .mobile\:focus\:my-3\.5:focus{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .mobile\:focus\:-my-0:focus{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mobile\:focus\:-my-1:focus{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .mobile\:focus\:-my-2:focus{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .mobile\:focus\:-my-3:focus{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .mobile\:focus\:-my-4:focus{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .mobile\:focus\:-my-5:focus{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .mobile\:focus\:-my-6:focus{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .mobile\:focus\:-my-7:focus{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .mobile\:focus\:-my-8:focus{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .mobile\:focus\:-my-9:focus{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .mobile\:focus\:-my-10:focus{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .mobile\:focus\:-my-11:focus{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .mobile\:focus\:-my-12:focus{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .mobile\:focus\:-my-14:focus{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .mobile\:focus\:-my-16:focus{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .mobile\:focus\:-my-20:focus{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .mobile\:focus\:-my-24:focus{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .mobile\:focus\:-my-28:focus{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .mobile\:focus\:-my-32:focus{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .mobile\:focus\:-my-36:focus{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .mobile\:focus\:-my-40:focus{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .mobile\:focus\:-my-44:focus{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .mobile\:focus\:-my-48:focus{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .mobile\:focus\:-my-52:focus{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .mobile\:focus\:-my-56:focus{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .mobile\:focus\:-my-60:focus{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .mobile\:focus\:-my-64:focus{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .mobile\:focus\:-my-72:focus{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .mobile\:focus\:-my-80:focus{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .mobile\:focus\:-my-96:focus{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .mobile\:focus\:-my-px:focus{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .mobile\:focus\:-my-0\.5:focus{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .mobile\:focus\:-my-1\.5:focus{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .mobile\:focus\:-my-2\.5:focus{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .mobile\:focus\:-my-3\.5:focus{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .mobile\:focus\:my-neg1:focus{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .mobile\:focus\:my-neg2:focus{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .mobile\:focus\:my-neg4:focus{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .mobile\:focus\:my-neg6:focus{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .mobile\:focus\:my-neg12:focus{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .mobile\:focus\:my-neg20:focus{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .mobile\:first\:mx-0:first-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .mobile\:first\:mx-1:first-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .mobile\:first\:mx-2:first-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .mobile\:first\:mx-3:first-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .mobile\:first\:mx-4:first-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .mobile\:first\:mx-5:first-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .mobile\:first\:mx-6:first-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .mobile\:first\:mx-7:first-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .mobile\:first\:mx-8:first-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .mobile\:first\:mx-9:first-child{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .mobile\:first\:mx-10:first-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .mobile\:first\:mx-11:first-child{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .mobile\:first\:mx-12:first-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .mobile\:first\:mx-14:first-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .mobile\:first\:mx-16:first-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .mobile\:first\:mx-20:first-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .mobile\:first\:mx-24:first-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .mobile\:first\:mx-28:first-child{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .mobile\:first\:mx-32:first-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .mobile\:first\:mx-36:first-child{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .mobile\:first\:mx-40:first-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .mobile\:first\:mx-44:first-child{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .mobile\:first\:mx-48:first-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .mobile\:first\:mx-52:first-child{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .mobile\:first\:mx-56:first-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .mobile\:first\:mx-60:first-child{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .mobile\:first\:mx-64:first-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .mobile\:first\:mx-72:first-child{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .mobile\:first\:mx-80:first-child{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .mobile\:first\:mx-96:first-child{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .mobile\:first\:mx-auto:first-child{
    margin-left: auto;
    margin-right: auto;
  }

  .mobile\:first\:mx-px:first-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .mobile\:first\:mx-0\.5:first-child{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .mobile\:first\:mx-1\.5:first-child{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .mobile\:first\:mx-2\.5:first-child{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .mobile\:first\:mx-3\.5:first-child{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .mobile\:first\:-mx-0:first-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .mobile\:first\:-mx-1:first-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .mobile\:first\:-mx-2:first-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .mobile\:first\:-mx-3:first-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .mobile\:first\:-mx-4:first-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .mobile\:first\:-mx-5:first-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .mobile\:first\:-mx-6:first-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .mobile\:first\:-mx-7:first-child{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .mobile\:first\:-mx-8:first-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .mobile\:first\:-mx-9:first-child{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .mobile\:first\:-mx-10:first-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .mobile\:first\:-mx-11:first-child{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .mobile\:first\:-mx-12:first-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .mobile\:first\:-mx-14:first-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .mobile\:first\:-mx-16:first-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .mobile\:first\:-mx-20:first-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .mobile\:first\:-mx-24:first-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .mobile\:first\:-mx-28:first-child{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .mobile\:first\:-mx-32:first-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .mobile\:first\:-mx-36:first-child{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .mobile\:first\:-mx-40:first-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .mobile\:first\:-mx-44:first-child{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .mobile\:first\:-mx-48:first-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .mobile\:first\:-mx-52:first-child{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .mobile\:first\:-mx-56:first-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .mobile\:first\:-mx-60:first-child{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .mobile\:first\:-mx-64:first-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .mobile\:first\:-mx-72:first-child{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .mobile\:first\:-mx-80:first-child{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .mobile\:first\:-mx-96:first-child{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .mobile\:first\:-mx-px:first-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .mobile\:first\:-mx-0\.5:first-child{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .mobile\:first\:-mx-1\.5:first-child{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .mobile\:first\:-mx-2\.5:first-child{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .mobile\:first\:-mx-3\.5:first-child{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .mobile\:first\:mx-neg1:first-child{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .mobile\:first\:mx-neg2:first-child{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .mobile\:first\:mx-neg4:first-child{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .mobile\:first\:mx-neg6:first-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .mobile\:first\:mx-neg12:first-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .mobile\:first\:mx-neg20:first-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .mobile\:first\:my-0:first-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mobile\:first\:my-1:first-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .mobile\:first\:my-2:first-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .mobile\:first\:my-3:first-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .mobile\:first\:my-4:first-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .mobile\:first\:my-5:first-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .mobile\:first\:my-6:first-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mobile\:first\:my-7:first-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .mobile\:first\:my-8:first-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .mobile\:first\:my-9:first-child{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .mobile\:first\:my-10:first-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .mobile\:first\:my-11:first-child{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .mobile\:first\:my-12:first-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .mobile\:first\:my-14:first-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .mobile\:first\:my-16:first-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .mobile\:first\:my-20:first-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .mobile\:first\:my-24:first-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .mobile\:first\:my-28:first-child{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .mobile\:first\:my-32:first-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .mobile\:first\:my-36:first-child{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .mobile\:first\:my-40:first-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .mobile\:first\:my-44:first-child{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .mobile\:first\:my-48:first-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .mobile\:first\:my-52:first-child{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .mobile\:first\:my-56:first-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .mobile\:first\:my-60:first-child{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .mobile\:first\:my-64:first-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .mobile\:first\:my-72:first-child{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .mobile\:first\:my-80:first-child{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .mobile\:first\:my-96:first-child{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .mobile\:first\:my-auto:first-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .mobile\:first\:my-px:first-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .mobile\:first\:my-0\.5:first-child{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .mobile\:first\:my-1\.5:first-child{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .mobile\:first\:my-2\.5:first-child{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .mobile\:first\:my-3\.5:first-child{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .mobile\:first\:-my-0:first-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mobile\:first\:-my-1:first-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .mobile\:first\:-my-2:first-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .mobile\:first\:-my-3:first-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .mobile\:first\:-my-4:first-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .mobile\:first\:-my-5:first-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .mobile\:first\:-my-6:first-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .mobile\:first\:-my-7:first-child{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .mobile\:first\:-my-8:first-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .mobile\:first\:-my-9:first-child{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .mobile\:first\:-my-10:first-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .mobile\:first\:-my-11:first-child{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .mobile\:first\:-my-12:first-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .mobile\:first\:-my-14:first-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .mobile\:first\:-my-16:first-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .mobile\:first\:-my-20:first-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .mobile\:first\:-my-24:first-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .mobile\:first\:-my-28:first-child{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .mobile\:first\:-my-32:first-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .mobile\:first\:-my-36:first-child{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .mobile\:first\:-my-40:first-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .mobile\:first\:-my-44:first-child{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .mobile\:first\:-my-48:first-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .mobile\:first\:-my-52:first-child{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .mobile\:first\:-my-56:first-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .mobile\:first\:-my-60:first-child{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .mobile\:first\:-my-64:first-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .mobile\:first\:-my-72:first-child{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .mobile\:first\:-my-80:first-child{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .mobile\:first\:-my-96:first-child{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .mobile\:first\:-my-px:first-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .mobile\:first\:-my-0\.5:first-child{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .mobile\:first\:-my-1\.5:first-child{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .mobile\:first\:-my-2\.5:first-child{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .mobile\:first\:-my-3\.5:first-child{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .mobile\:first\:my-neg1:first-child{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .mobile\:first\:my-neg2:first-child{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .mobile\:first\:my-neg4:first-child{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .mobile\:first\:my-neg6:first-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .mobile\:first\:my-neg12:first-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .mobile\:first\:my-neg20:first-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .mobile\:last\:mx-0:last-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .mobile\:last\:mx-1:last-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .mobile\:last\:mx-2:last-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .mobile\:last\:mx-3:last-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .mobile\:last\:mx-4:last-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .mobile\:last\:mx-5:last-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .mobile\:last\:mx-6:last-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .mobile\:last\:mx-7:last-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .mobile\:last\:mx-8:last-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .mobile\:last\:mx-9:last-child{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .mobile\:last\:mx-10:last-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .mobile\:last\:mx-11:last-child{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .mobile\:last\:mx-12:last-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .mobile\:last\:mx-14:last-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .mobile\:last\:mx-16:last-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .mobile\:last\:mx-20:last-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .mobile\:last\:mx-24:last-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .mobile\:last\:mx-28:last-child{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .mobile\:last\:mx-32:last-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .mobile\:last\:mx-36:last-child{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .mobile\:last\:mx-40:last-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .mobile\:last\:mx-44:last-child{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .mobile\:last\:mx-48:last-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .mobile\:last\:mx-52:last-child{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .mobile\:last\:mx-56:last-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .mobile\:last\:mx-60:last-child{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .mobile\:last\:mx-64:last-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .mobile\:last\:mx-72:last-child{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .mobile\:last\:mx-80:last-child{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .mobile\:last\:mx-96:last-child{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .mobile\:last\:mx-auto:last-child{
    margin-left: auto;
    margin-right: auto;
  }

  .mobile\:last\:mx-px:last-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .mobile\:last\:mx-0\.5:last-child{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .mobile\:last\:mx-1\.5:last-child{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .mobile\:last\:mx-2\.5:last-child{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .mobile\:last\:mx-3\.5:last-child{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .mobile\:last\:-mx-0:last-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .mobile\:last\:-mx-1:last-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .mobile\:last\:-mx-2:last-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .mobile\:last\:-mx-3:last-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .mobile\:last\:-mx-4:last-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .mobile\:last\:-mx-5:last-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .mobile\:last\:-mx-6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .mobile\:last\:-mx-7:last-child{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .mobile\:last\:-mx-8:last-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .mobile\:last\:-mx-9:last-child{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .mobile\:last\:-mx-10:last-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .mobile\:last\:-mx-11:last-child{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .mobile\:last\:-mx-12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .mobile\:last\:-mx-14:last-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .mobile\:last\:-mx-16:last-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .mobile\:last\:-mx-20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .mobile\:last\:-mx-24:last-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .mobile\:last\:-mx-28:last-child{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .mobile\:last\:-mx-32:last-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .mobile\:last\:-mx-36:last-child{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .mobile\:last\:-mx-40:last-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .mobile\:last\:-mx-44:last-child{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .mobile\:last\:-mx-48:last-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .mobile\:last\:-mx-52:last-child{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .mobile\:last\:-mx-56:last-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .mobile\:last\:-mx-60:last-child{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .mobile\:last\:-mx-64:last-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .mobile\:last\:-mx-72:last-child{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .mobile\:last\:-mx-80:last-child{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .mobile\:last\:-mx-96:last-child{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .mobile\:last\:-mx-px:last-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .mobile\:last\:-mx-0\.5:last-child{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .mobile\:last\:-mx-1\.5:last-child{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .mobile\:last\:-mx-2\.5:last-child{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .mobile\:last\:-mx-3\.5:last-child{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .mobile\:last\:mx-neg1:last-child{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .mobile\:last\:mx-neg2:last-child{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .mobile\:last\:mx-neg4:last-child{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .mobile\:last\:mx-neg6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .mobile\:last\:mx-neg12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .mobile\:last\:mx-neg20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .mobile\:last\:my-0:last-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mobile\:last\:my-1:last-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .mobile\:last\:my-2:last-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .mobile\:last\:my-3:last-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .mobile\:last\:my-4:last-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .mobile\:last\:my-5:last-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .mobile\:last\:my-6:last-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mobile\:last\:my-7:last-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .mobile\:last\:my-8:last-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .mobile\:last\:my-9:last-child{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .mobile\:last\:my-10:last-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .mobile\:last\:my-11:last-child{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .mobile\:last\:my-12:last-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .mobile\:last\:my-14:last-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .mobile\:last\:my-16:last-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .mobile\:last\:my-20:last-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .mobile\:last\:my-24:last-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .mobile\:last\:my-28:last-child{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .mobile\:last\:my-32:last-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .mobile\:last\:my-36:last-child{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .mobile\:last\:my-40:last-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .mobile\:last\:my-44:last-child{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .mobile\:last\:my-48:last-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .mobile\:last\:my-52:last-child{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .mobile\:last\:my-56:last-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .mobile\:last\:my-60:last-child{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .mobile\:last\:my-64:last-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .mobile\:last\:my-72:last-child{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .mobile\:last\:my-80:last-child{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .mobile\:last\:my-96:last-child{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .mobile\:last\:my-auto:last-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .mobile\:last\:my-px:last-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .mobile\:last\:my-0\.5:last-child{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .mobile\:last\:my-1\.5:last-child{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .mobile\:last\:my-2\.5:last-child{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .mobile\:last\:my-3\.5:last-child{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .mobile\:last\:-my-0:last-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .mobile\:last\:-my-1:last-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .mobile\:last\:-my-2:last-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .mobile\:last\:-my-3:last-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .mobile\:last\:-my-4:last-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .mobile\:last\:-my-5:last-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .mobile\:last\:-my-6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .mobile\:last\:-my-7:last-child{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .mobile\:last\:-my-8:last-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .mobile\:last\:-my-9:last-child{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .mobile\:last\:-my-10:last-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .mobile\:last\:-my-11:last-child{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .mobile\:last\:-my-12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .mobile\:last\:-my-14:last-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .mobile\:last\:-my-16:last-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .mobile\:last\:-my-20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .mobile\:last\:-my-24:last-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .mobile\:last\:-my-28:last-child{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .mobile\:last\:-my-32:last-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .mobile\:last\:-my-36:last-child{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .mobile\:last\:-my-40:last-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .mobile\:last\:-my-44:last-child{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .mobile\:last\:-my-48:last-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .mobile\:last\:-my-52:last-child{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .mobile\:last\:-my-56:last-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .mobile\:last\:-my-60:last-child{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .mobile\:last\:-my-64:last-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .mobile\:last\:-my-72:last-child{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .mobile\:last\:-my-80:last-child{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .mobile\:last\:-my-96:last-child{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .mobile\:last\:-my-px:last-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .mobile\:last\:-my-0\.5:last-child{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .mobile\:last\:-my-1\.5:last-child{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .mobile\:last\:-my-2\.5:last-child{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .mobile\:last\:-my-3\.5:last-child{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .mobile\:last\:my-neg1:last-child{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .mobile\:last\:my-neg2:last-child{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .mobile\:last\:my-neg4:last-child{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .mobile\:last\:my-neg6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .mobile\:last\:my-neg12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .mobile\:last\:my-neg20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .mobile\:mt-0{
    margin-top: 0px;
  }

  .mobile\:mt-1{
    margin-top: 0.25rem;
  }

  .mobile\:mt-2{
    margin-top: 0.5rem;
  }

  .mobile\:mt-3{
    margin-top: 0.75rem;
  }

  .mobile\:mt-4{
    margin-top: 1rem;
  }

  .mobile\:mt-5{
    margin-top: 1.25rem;
  }

  .mobile\:mt-6{
    margin-top: 1.5rem;
  }

  .mobile\:mt-7{
    margin-top: 1.75rem;
  }

  .mobile\:mt-8{
    margin-top: 2rem;
  }

  .mobile\:mt-9{
    margin-top: 2.25rem;
  }

  .mobile\:mt-10{
    margin-top: 2.5rem;
  }

  .mobile\:mt-11{
    margin-top: 2.75rem;
  }

  .mobile\:mt-12{
    margin-top: 3rem;
  }

  .mobile\:mt-14{
    margin-top: 3.5rem;
  }

  .mobile\:mt-16{
    margin-top: 4rem;
  }

  .mobile\:mt-20{
    margin-top: 5rem;
  }

  .mobile\:mt-24{
    margin-top: 6rem;
  }

  .mobile\:mt-28{
    margin-top: 7rem;
  }

  .mobile\:mt-32{
    margin-top: 8rem;
  }

  .mobile\:mt-36{
    margin-top: 9rem;
  }

  .mobile\:mt-40{
    margin-top: 10rem;
  }

  .mobile\:mt-44{
    margin-top: 11rem;
  }

  .mobile\:mt-48{
    margin-top: 12rem;
  }

  .mobile\:mt-52{
    margin-top: 13rem;
  }

  .mobile\:mt-56{
    margin-top: 14rem;
  }

  .mobile\:mt-60{
    margin-top: 15rem;
  }

  .mobile\:mt-64{
    margin-top: 16rem;
  }

  .mobile\:mt-72{
    margin-top: 18rem;
  }

  .mobile\:mt-80{
    margin-top: 20rem;
  }

  .mobile\:mt-96{
    margin-top: 24rem;
  }

  .mobile\:mt-auto{
    margin-top: auto;
  }

  .mobile\:mt-px{
    margin-top: 1px;
  }

  .mobile\:mt-0\.5{
    margin-top: 0.125rem;
  }

  .mobile\:mt-1\.5{
    margin-top: 0.375rem;
  }

  .mobile\:mt-2\.5{
    margin-top: 0.625rem;
  }

  .mobile\:mt-3\.5{
    margin-top: 0.875rem;
  }

  .mobile\:-mt-0{
    margin-top: 0px;
  }

  .mobile\:-mt-1{
    margin-top: -0.25rem;
  }

  .mobile\:-mt-2{
    margin-top: -0.5rem;
  }

  .mobile\:-mt-3{
    margin-top: -0.75rem;
  }

  .mobile\:-mt-4{
    margin-top: -1rem;
  }

  .mobile\:-mt-5{
    margin-top: -1.25rem;
  }

  .mobile\:-mt-6{
    margin-top: -1.5rem;
  }

  .mobile\:-mt-7{
    margin-top: -1.75rem;
  }

  .mobile\:-mt-8{
    margin-top: -2rem;
  }

  .mobile\:-mt-9{
    margin-top: -2.25rem;
  }

  .mobile\:-mt-10{
    margin-top: -2.5rem;
  }

  .mobile\:-mt-11{
    margin-top: -2.75rem;
  }

  .mobile\:-mt-12{
    margin-top: -3rem;
  }

  .mobile\:-mt-14{
    margin-top: -3.5rem;
  }

  .mobile\:-mt-16{
    margin-top: -4rem;
  }

  .mobile\:-mt-20{
    margin-top: -5rem;
  }

  .mobile\:-mt-24{
    margin-top: -6rem;
  }

  .mobile\:-mt-28{
    margin-top: -7rem;
  }

  .mobile\:-mt-32{
    margin-top: -8rem;
  }

  .mobile\:-mt-36{
    margin-top: -9rem;
  }

  .mobile\:-mt-40{
    margin-top: -10rem;
  }

  .mobile\:-mt-44{
    margin-top: -11rem;
  }

  .mobile\:-mt-48{
    margin-top: -12rem;
  }

  .mobile\:-mt-52{
    margin-top: -13rem;
  }

  .mobile\:-mt-56{
    margin-top: -14rem;
  }

  .mobile\:-mt-60{
    margin-top: -15rem;
  }

  .mobile\:-mt-64{
    margin-top: -16rem;
  }

  .mobile\:-mt-72{
    margin-top: -18rem;
  }

  .mobile\:-mt-80{
    margin-top: -20rem;
  }

  .mobile\:-mt-96{
    margin-top: -24rem;
  }

  .mobile\:-mt-px{
    margin-top: -1px;
  }

  .mobile\:-mt-0\.5{
    margin-top: -0.125rem;
  }

  .mobile\:-mt-1\.5{
    margin-top: -0.375rem;
  }

  .mobile\:-mt-2\.5{
    margin-top: -0.625rem;
  }

  .mobile\:-mt-3\.5{
    margin-top: -0.875rem;
  }

  .mobile\:mt-neg1{
    margin-top: -.25rem;
  }

  .mobile\:mt-neg2{
    margin-top: -.5rem;
  }

  .mobile\:mt-neg4{
    margin-top: -1.0rem;
  }

  .mobile\:mt-neg6{
    margin-top: -1.5rem;
  }

  .mobile\:mt-neg12{
    margin-top: -3rem;
  }

  .mobile\:mt-neg20{
    margin-top: -5rem;
  }

  .mobile\:mr-0{
    margin-right: 0px;
  }

  .mobile\:mr-1{
    margin-right: 0.25rem;
  }

  .mobile\:mr-2{
    margin-right: 0.5rem;
  }

  .mobile\:mr-3{
    margin-right: 0.75rem;
  }

  .mobile\:mr-4{
    margin-right: 1rem;
  }

  .mobile\:mr-5{
    margin-right: 1.25rem;
  }

  .mobile\:mr-6{
    margin-right: 1.5rem;
  }

  .mobile\:mr-7{
    margin-right: 1.75rem;
  }

  .mobile\:mr-8{
    margin-right: 2rem;
  }

  .mobile\:mr-9{
    margin-right: 2.25rem;
  }

  .mobile\:mr-10{
    margin-right: 2.5rem;
  }

  .mobile\:mr-11{
    margin-right: 2.75rem;
  }

  .mobile\:mr-12{
    margin-right: 3rem;
  }

  .mobile\:mr-14{
    margin-right: 3.5rem;
  }

  .mobile\:mr-16{
    margin-right: 4rem;
  }

  .mobile\:mr-20{
    margin-right: 5rem;
  }

  .mobile\:mr-24{
    margin-right: 6rem;
  }

  .mobile\:mr-28{
    margin-right: 7rem;
  }

  .mobile\:mr-32{
    margin-right: 8rem;
  }

  .mobile\:mr-36{
    margin-right: 9rem;
  }

  .mobile\:mr-40{
    margin-right: 10rem;
  }

  .mobile\:mr-44{
    margin-right: 11rem;
  }

  .mobile\:mr-48{
    margin-right: 12rem;
  }

  .mobile\:mr-52{
    margin-right: 13rem;
  }

  .mobile\:mr-56{
    margin-right: 14rem;
  }

  .mobile\:mr-60{
    margin-right: 15rem;
  }

  .mobile\:mr-64{
    margin-right: 16rem;
  }

  .mobile\:mr-72{
    margin-right: 18rem;
  }

  .mobile\:mr-80{
    margin-right: 20rem;
  }

  .mobile\:mr-96{
    margin-right: 24rem;
  }

  .mobile\:mr-auto{
    margin-right: auto;
  }

  .mobile\:mr-px{
    margin-right: 1px;
  }

  .mobile\:mr-0\.5{
    margin-right: 0.125rem;
  }

  .mobile\:mr-1\.5{
    margin-right: 0.375rem;
  }

  .mobile\:mr-2\.5{
    margin-right: 0.625rem;
  }

  .mobile\:mr-3\.5{
    margin-right: 0.875rem;
  }

  .mobile\:-mr-0{
    margin-right: 0px;
  }

  .mobile\:-mr-1{
    margin-right: -0.25rem;
  }

  .mobile\:-mr-2{
    margin-right: -0.5rem;
  }

  .mobile\:-mr-3{
    margin-right: -0.75rem;
  }

  .mobile\:-mr-4{
    margin-right: -1rem;
  }

  .mobile\:-mr-5{
    margin-right: -1.25rem;
  }

  .mobile\:-mr-6{
    margin-right: -1.5rem;
  }

  .mobile\:-mr-7{
    margin-right: -1.75rem;
  }

  .mobile\:-mr-8{
    margin-right: -2rem;
  }

  .mobile\:-mr-9{
    margin-right: -2.25rem;
  }

  .mobile\:-mr-10{
    margin-right: -2.5rem;
  }

  .mobile\:-mr-11{
    margin-right: -2.75rem;
  }

  .mobile\:-mr-12{
    margin-right: -3rem;
  }

  .mobile\:-mr-14{
    margin-right: -3.5rem;
  }

  .mobile\:-mr-16{
    margin-right: -4rem;
  }

  .mobile\:-mr-20{
    margin-right: -5rem;
  }

  .mobile\:-mr-24{
    margin-right: -6rem;
  }

  .mobile\:-mr-28{
    margin-right: -7rem;
  }

  .mobile\:-mr-32{
    margin-right: -8rem;
  }

  .mobile\:-mr-36{
    margin-right: -9rem;
  }

  .mobile\:-mr-40{
    margin-right: -10rem;
  }

  .mobile\:-mr-44{
    margin-right: -11rem;
  }

  .mobile\:-mr-48{
    margin-right: -12rem;
  }

  .mobile\:-mr-52{
    margin-right: -13rem;
  }

  .mobile\:-mr-56{
    margin-right: -14rem;
  }

  .mobile\:-mr-60{
    margin-right: -15rem;
  }

  .mobile\:-mr-64{
    margin-right: -16rem;
  }

  .mobile\:-mr-72{
    margin-right: -18rem;
  }

  .mobile\:-mr-80{
    margin-right: -20rem;
  }

  .mobile\:-mr-96{
    margin-right: -24rem;
  }

  .mobile\:-mr-px{
    margin-right: -1px;
  }

  .mobile\:-mr-0\.5{
    margin-right: -0.125rem;
  }

  .mobile\:-mr-1\.5{
    margin-right: -0.375rem;
  }

  .mobile\:-mr-2\.5{
    margin-right: -0.625rem;
  }

  .mobile\:-mr-3\.5{
    margin-right: -0.875rem;
  }

  .mobile\:mr-neg1{
    margin-right: -.25rem;
  }

  .mobile\:mr-neg2{
    margin-right: -.5rem;
  }

  .mobile\:mr-neg4{
    margin-right: -1.0rem;
  }

  .mobile\:mr-neg6{
    margin-right: -1.5rem;
  }

  .mobile\:mr-neg12{
    margin-right: -3rem;
  }

  .mobile\:mr-neg20{
    margin-right: -5rem;
  }

  .mobile\:mb-0{
    margin-bottom: 0px;
  }

  .mobile\:mb-1{
    margin-bottom: 0.25rem;
  }

  .mobile\:mb-2{
    margin-bottom: 0.5rem;
  }

  .mobile\:mb-3{
    margin-bottom: 0.75rem;
  }

  .mobile\:mb-4{
    margin-bottom: 1rem;
  }

  .mobile\:mb-5{
    margin-bottom: 1.25rem;
  }

  .mobile\:mb-6{
    margin-bottom: 1.5rem;
  }

  .mobile\:mb-7{
    margin-bottom: 1.75rem;
  }

  .mobile\:mb-8{
    margin-bottom: 2rem;
  }

  .mobile\:mb-9{
    margin-bottom: 2.25rem;
  }

  .mobile\:mb-10{
    margin-bottom: 2.5rem;
  }

  .mobile\:mb-11{
    margin-bottom: 2.75rem;
  }

  .mobile\:mb-12{
    margin-bottom: 3rem;
  }

  .mobile\:mb-14{
    margin-bottom: 3.5rem;
  }

  .mobile\:mb-16{
    margin-bottom: 4rem;
  }

  .mobile\:mb-20{
    margin-bottom: 5rem;
  }

  .mobile\:mb-24{
    margin-bottom: 6rem;
  }

  .mobile\:mb-28{
    margin-bottom: 7rem;
  }

  .mobile\:mb-32{
    margin-bottom: 8rem;
  }

  .mobile\:mb-36{
    margin-bottom: 9rem;
  }

  .mobile\:mb-40{
    margin-bottom: 10rem;
  }

  .mobile\:mb-44{
    margin-bottom: 11rem;
  }

  .mobile\:mb-48{
    margin-bottom: 12rem;
  }

  .mobile\:mb-52{
    margin-bottom: 13rem;
  }

  .mobile\:mb-56{
    margin-bottom: 14rem;
  }

  .mobile\:mb-60{
    margin-bottom: 15rem;
  }

  .mobile\:mb-64{
    margin-bottom: 16rem;
  }

  .mobile\:mb-72{
    margin-bottom: 18rem;
  }

  .mobile\:mb-80{
    margin-bottom: 20rem;
  }

  .mobile\:mb-96{
    margin-bottom: 24rem;
  }

  .mobile\:mb-auto{
    margin-bottom: auto;
  }

  .mobile\:mb-px{
    margin-bottom: 1px;
  }

  .mobile\:mb-0\.5{
    margin-bottom: 0.125rem;
  }

  .mobile\:mb-1\.5{
    margin-bottom: 0.375rem;
  }

  .mobile\:mb-2\.5{
    margin-bottom: 0.625rem;
  }

  .mobile\:mb-3\.5{
    margin-bottom: 0.875rem;
  }

  .mobile\:-mb-0{
    margin-bottom: 0px;
  }

  .mobile\:-mb-1{
    margin-bottom: -0.25rem;
  }

  .mobile\:-mb-2{
    margin-bottom: -0.5rem;
  }

  .mobile\:-mb-3{
    margin-bottom: -0.75rem;
  }

  .mobile\:-mb-4{
    margin-bottom: -1rem;
  }

  .mobile\:-mb-5{
    margin-bottom: -1.25rem;
  }

  .mobile\:-mb-6{
    margin-bottom: -1.5rem;
  }

  .mobile\:-mb-7{
    margin-bottom: -1.75rem;
  }

  .mobile\:-mb-8{
    margin-bottom: -2rem;
  }

  .mobile\:-mb-9{
    margin-bottom: -2.25rem;
  }

  .mobile\:-mb-10{
    margin-bottom: -2.5rem;
  }

  .mobile\:-mb-11{
    margin-bottom: -2.75rem;
  }

  .mobile\:-mb-12{
    margin-bottom: -3rem;
  }

  .mobile\:-mb-14{
    margin-bottom: -3.5rem;
  }

  .mobile\:-mb-16{
    margin-bottom: -4rem;
  }

  .mobile\:-mb-20{
    margin-bottom: -5rem;
  }

  .mobile\:-mb-24{
    margin-bottom: -6rem;
  }

  .mobile\:-mb-28{
    margin-bottom: -7rem;
  }

  .mobile\:-mb-32{
    margin-bottom: -8rem;
  }

  .mobile\:-mb-36{
    margin-bottom: -9rem;
  }

  .mobile\:-mb-40{
    margin-bottom: -10rem;
  }

  .mobile\:-mb-44{
    margin-bottom: -11rem;
  }

  .mobile\:-mb-48{
    margin-bottom: -12rem;
  }

  .mobile\:-mb-52{
    margin-bottom: -13rem;
  }

  .mobile\:-mb-56{
    margin-bottom: -14rem;
  }

  .mobile\:-mb-60{
    margin-bottom: -15rem;
  }

  .mobile\:-mb-64{
    margin-bottom: -16rem;
  }

  .mobile\:-mb-72{
    margin-bottom: -18rem;
  }

  .mobile\:-mb-80{
    margin-bottom: -20rem;
  }

  .mobile\:-mb-96{
    margin-bottom: -24rem;
  }

  .mobile\:-mb-px{
    margin-bottom: -1px;
  }

  .mobile\:-mb-0\.5{
    margin-bottom: -0.125rem;
  }

  .mobile\:-mb-1\.5{
    margin-bottom: -0.375rem;
  }

  .mobile\:-mb-2\.5{
    margin-bottom: -0.625rem;
  }

  .mobile\:-mb-3\.5{
    margin-bottom: -0.875rem;
  }

  .mobile\:mb-neg1{
    margin-bottom: -.25rem;
  }

  .mobile\:mb-neg2{
    margin-bottom: -.5rem;
  }

  .mobile\:mb-neg4{
    margin-bottom: -1.0rem;
  }

  .mobile\:mb-neg6{
    margin-bottom: -1.5rem;
  }

  .mobile\:mb-neg12{
    margin-bottom: -3rem;
  }

  .mobile\:mb-neg20{
    margin-bottom: -5rem;
  }

  .mobile\:ml-0{
    margin-left: 0px;
  }

  .mobile\:ml-1{
    margin-left: 0.25rem;
  }

  .mobile\:ml-2{
    margin-left: 0.5rem;
  }

  .mobile\:ml-3{
    margin-left: 0.75rem;
  }

  .mobile\:ml-4{
    margin-left: 1rem;
  }

  .mobile\:ml-5{
    margin-left: 1.25rem;
  }

  .mobile\:ml-6{
    margin-left: 1.5rem;
  }

  .mobile\:ml-7{
    margin-left: 1.75rem;
  }

  .mobile\:ml-8{
    margin-left: 2rem;
  }

  .mobile\:ml-9{
    margin-left: 2.25rem;
  }

  .mobile\:ml-10{
    margin-left: 2.5rem;
  }

  .mobile\:ml-11{
    margin-left: 2.75rem;
  }

  .mobile\:ml-12{
    margin-left: 3rem;
  }

  .mobile\:ml-14{
    margin-left: 3.5rem;
  }

  .mobile\:ml-16{
    margin-left: 4rem;
  }

  .mobile\:ml-20{
    margin-left: 5rem;
  }

  .mobile\:ml-24{
    margin-left: 6rem;
  }

  .mobile\:ml-28{
    margin-left: 7rem;
  }

  .mobile\:ml-32{
    margin-left: 8rem;
  }

  .mobile\:ml-36{
    margin-left: 9rem;
  }

  .mobile\:ml-40{
    margin-left: 10rem;
  }

  .mobile\:ml-44{
    margin-left: 11rem;
  }

  .mobile\:ml-48{
    margin-left: 12rem;
  }

  .mobile\:ml-52{
    margin-left: 13rem;
  }

  .mobile\:ml-56{
    margin-left: 14rem;
  }

  .mobile\:ml-60{
    margin-left: 15rem;
  }

  .mobile\:ml-64{
    margin-left: 16rem;
  }

  .mobile\:ml-72{
    margin-left: 18rem;
  }

  .mobile\:ml-80{
    margin-left: 20rem;
  }

  .mobile\:ml-96{
    margin-left: 24rem;
  }

  .mobile\:ml-auto{
    margin-left: auto;
  }

  .mobile\:ml-px{
    margin-left: 1px;
  }

  .mobile\:ml-0\.5{
    margin-left: 0.125rem;
  }

  .mobile\:ml-1\.5{
    margin-left: 0.375rem;
  }

  .mobile\:ml-2\.5{
    margin-left: 0.625rem;
  }

  .mobile\:ml-3\.5{
    margin-left: 0.875rem;
  }

  .mobile\:-ml-0{
    margin-left: 0px;
  }

  .mobile\:-ml-1{
    margin-left: -0.25rem;
  }

  .mobile\:-ml-2{
    margin-left: -0.5rem;
  }

  .mobile\:-ml-3{
    margin-left: -0.75rem;
  }

  .mobile\:-ml-4{
    margin-left: -1rem;
  }

  .mobile\:-ml-5{
    margin-left: -1.25rem;
  }

  .mobile\:-ml-6{
    margin-left: -1.5rem;
  }

  .mobile\:-ml-7{
    margin-left: -1.75rem;
  }

  .mobile\:-ml-8{
    margin-left: -2rem;
  }

  .mobile\:-ml-9{
    margin-left: -2.25rem;
  }

  .mobile\:-ml-10{
    margin-left: -2.5rem;
  }

  .mobile\:-ml-11{
    margin-left: -2.75rem;
  }

  .mobile\:-ml-12{
    margin-left: -3rem;
  }

  .mobile\:-ml-14{
    margin-left: -3.5rem;
  }

  .mobile\:-ml-16{
    margin-left: -4rem;
  }

  .mobile\:-ml-20{
    margin-left: -5rem;
  }

  .mobile\:-ml-24{
    margin-left: -6rem;
  }

  .mobile\:-ml-28{
    margin-left: -7rem;
  }

  .mobile\:-ml-32{
    margin-left: -8rem;
  }

  .mobile\:-ml-36{
    margin-left: -9rem;
  }

  .mobile\:-ml-40{
    margin-left: -10rem;
  }

  .mobile\:-ml-44{
    margin-left: -11rem;
  }

  .mobile\:-ml-48{
    margin-left: -12rem;
  }

  .mobile\:-ml-52{
    margin-left: -13rem;
  }

  .mobile\:-ml-56{
    margin-left: -14rem;
  }

  .mobile\:-ml-60{
    margin-left: -15rem;
  }

  .mobile\:-ml-64{
    margin-left: -16rem;
  }

  .mobile\:-ml-72{
    margin-left: -18rem;
  }

  .mobile\:-ml-80{
    margin-left: -20rem;
  }

  .mobile\:-ml-96{
    margin-left: -24rem;
  }

  .mobile\:-ml-px{
    margin-left: -1px;
  }

  .mobile\:-ml-0\.5{
    margin-left: -0.125rem;
  }

  .mobile\:-ml-1\.5{
    margin-left: -0.375rem;
  }

  .mobile\:-ml-2\.5{
    margin-left: -0.625rem;
  }

  .mobile\:-ml-3\.5{
    margin-left: -0.875rem;
  }

  .mobile\:ml-neg1{
    margin-left: -.25rem;
  }

  .mobile\:ml-neg2{
    margin-left: -.5rem;
  }

  .mobile\:ml-neg4{
    margin-left: -1.0rem;
  }

  .mobile\:ml-neg6{
    margin-left: -1.5rem;
  }

  .mobile\:ml-neg12{
    margin-left: -3rem;
  }

  .mobile\:ml-neg20{
    margin-left: -5rem;
  }

  .mobile\:last\:mt-0:last-child{
    margin-top: 0px;
  }

  .mobile\:last\:mt-1:last-child{
    margin-top: 0.25rem;
  }

  .mobile\:last\:mt-2:last-child{
    margin-top: 0.5rem;
  }

  .mobile\:last\:mt-3:last-child{
    margin-top: 0.75rem;
  }

  .mobile\:last\:mt-4:last-child{
    margin-top: 1rem;
  }

  .mobile\:last\:mt-5:last-child{
    margin-top: 1.25rem;
  }

  .mobile\:last\:mt-6:last-child{
    margin-top: 1.5rem;
  }

  .mobile\:last\:mt-7:last-child{
    margin-top: 1.75rem;
  }

  .mobile\:last\:mt-8:last-child{
    margin-top: 2rem;
  }

  .mobile\:last\:mt-9:last-child{
    margin-top: 2.25rem;
  }

  .mobile\:last\:mt-10:last-child{
    margin-top: 2.5rem;
  }

  .mobile\:last\:mt-11:last-child{
    margin-top: 2.75rem;
  }

  .mobile\:last\:mt-12:last-child{
    margin-top: 3rem;
  }

  .mobile\:last\:mt-14:last-child{
    margin-top: 3.5rem;
  }

  .mobile\:last\:mt-16:last-child{
    margin-top: 4rem;
  }

  .mobile\:last\:mt-20:last-child{
    margin-top: 5rem;
  }

  .mobile\:last\:mt-24:last-child{
    margin-top: 6rem;
  }

  .mobile\:last\:mt-28:last-child{
    margin-top: 7rem;
  }

  .mobile\:last\:mt-32:last-child{
    margin-top: 8rem;
  }

  .mobile\:last\:mt-36:last-child{
    margin-top: 9rem;
  }

  .mobile\:last\:mt-40:last-child{
    margin-top: 10rem;
  }

  .mobile\:last\:mt-44:last-child{
    margin-top: 11rem;
  }

  .mobile\:last\:mt-48:last-child{
    margin-top: 12rem;
  }

  .mobile\:last\:mt-52:last-child{
    margin-top: 13rem;
  }

  .mobile\:last\:mt-56:last-child{
    margin-top: 14rem;
  }

  .mobile\:last\:mt-60:last-child{
    margin-top: 15rem;
  }

  .mobile\:last\:mt-64:last-child{
    margin-top: 16rem;
  }

  .mobile\:last\:mt-72:last-child{
    margin-top: 18rem;
  }

  .mobile\:last\:mt-80:last-child{
    margin-top: 20rem;
  }

  .mobile\:last\:mt-96:last-child{
    margin-top: 24rem;
  }

  .mobile\:last\:mt-auto:last-child{
    margin-top: auto;
  }

  .mobile\:last\:mt-px:last-child{
    margin-top: 1px;
  }

  .mobile\:last\:mt-0\.5:last-child{
    margin-top: 0.125rem;
  }

  .mobile\:last\:mt-1\.5:last-child{
    margin-top: 0.375rem;
  }

  .mobile\:last\:mt-2\.5:last-child{
    margin-top: 0.625rem;
  }

  .mobile\:last\:mt-3\.5:last-child{
    margin-top: 0.875rem;
  }

  .mobile\:last\:-mt-0:last-child{
    margin-top: 0px;
  }

  .mobile\:last\:-mt-1:last-child{
    margin-top: -0.25rem;
  }

  .mobile\:last\:-mt-2:last-child{
    margin-top: -0.5rem;
  }

  .mobile\:last\:-mt-3:last-child{
    margin-top: -0.75rem;
  }

  .mobile\:last\:-mt-4:last-child{
    margin-top: -1rem;
  }

  .mobile\:last\:-mt-5:last-child{
    margin-top: -1.25rem;
  }

  .mobile\:last\:-mt-6:last-child{
    margin-top: -1.5rem;
  }

  .mobile\:last\:-mt-7:last-child{
    margin-top: -1.75rem;
  }

  .mobile\:last\:-mt-8:last-child{
    margin-top: -2rem;
  }

  .mobile\:last\:-mt-9:last-child{
    margin-top: -2.25rem;
  }

  .mobile\:last\:-mt-10:last-child{
    margin-top: -2.5rem;
  }

  .mobile\:last\:-mt-11:last-child{
    margin-top: -2.75rem;
  }

  .mobile\:last\:-mt-12:last-child{
    margin-top: -3rem;
  }

  .mobile\:last\:-mt-14:last-child{
    margin-top: -3.5rem;
  }

  .mobile\:last\:-mt-16:last-child{
    margin-top: -4rem;
  }

  .mobile\:last\:-mt-20:last-child{
    margin-top: -5rem;
  }

  .mobile\:last\:-mt-24:last-child{
    margin-top: -6rem;
  }

  .mobile\:last\:-mt-28:last-child{
    margin-top: -7rem;
  }

  .mobile\:last\:-mt-32:last-child{
    margin-top: -8rem;
  }

  .mobile\:last\:-mt-36:last-child{
    margin-top: -9rem;
  }

  .mobile\:last\:-mt-40:last-child{
    margin-top: -10rem;
  }

  .mobile\:last\:-mt-44:last-child{
    margin-top: -11rem;
  }

  .mobile\:last\:-mt-48:last-child{
    margin-top: -12rem;
  }

  .mobile\:last\:-mt-52:last-child{
    margin-top: -13rem;
  }

  .mobile\:last\:-mt-56:last-child{
    margin-top: -14rem;
  }

  .mobile\:last\:-mt-60:last-child{
    margin-top: -15rem;
  }

  .mobile\:last\:-mt-64:last-child{
    margin-top: -16rem;
  }

  .mobile\:last\:-mt-72:last-child{
    margin-top: -18rem;
  }

  .mobile\:last\:-mt-80:last-child{
    margin-top: -20rem;
  }

  .mobile\:last\:-mt-96:last-child{
    margin-top: -24rem;
  }

  .mobile\:last\:-mt-px:last-child{
    margin-top: -1px;
  }

  .mobile\:last\:-mt-0\.5:last-child{
    margin-top: -0.125rem;
  }

  .mobile\:last\:-mt-1\.5:last-child{
    margin-top: -0.375rem;
  }

  .mobile\:last\:-mt-2\.5:last-child{
    margin-top: -0.625rem;
  }

  .mobile\:last\:-mt-3\.5:last-child{
    margin-top: -0.875rem;
  }

  .mobile\:last\:mt-neg1:last-child{
    margin-top: -.25rem;
  }

  .mobile\:last\:mt-neg2:last-child{
    margin-top: -.5rem;
  }

  .mobile\:last\:mt-neg4:last-child{
    margin-top: -1.0rem;
  }

  .mobile\:last\:mt-neg6:last-child{
    margin-top: -1.5rem;
  }

  .mobile\:last\:mt-neg12:last-child{
    margin-top: -3rem;
  }

  .mobile\:last\:mt-neg20:last-child{
    margin-top: -5rem;
  }

  .mobile\:last\:mr-0:last-child{
    margin-right: 0px;
  }

  .mobile\:last\:mr-1:last-child{
    margin-right: 0.25rem;
  }

  .mobile\:last\:mr-2:last-child{
    margin-right: 0.5rem;
  }

  .mobile\:last\:mr-3:last-child{
    margin-right: 0.75rem;
  }

  .mobile\:last\:mr-4:last-child{
    margin-right: 1rem;
  }

  .mobile\:last\:mr-5:last-child{
    margin-right: 1.25rem;
  }

  .mobile\:last\:mr-6:last-child{
    margin-right: 1.5rem;
  }

  .mobile\:last\:mr-7:last-child{
    margin-right: 1.75rem;
  }

  .mobile\:last\:mr-8:last-child{
    margin-right: 2rem;
  }

  .mobile\:last\:mr-9:last-child{
    margin-right: 2.25rem;
  }

  .mobile\:last\:mr-10:last-child{
    margin-right: 2.5rem;
  }

  .mobile\:last\:mr-11:last-child{
    margin-right: 2.75rem;
  }

  .mobile\:last\:mr-12:last-child{
    margin-right: 3rem;
  }

  .mobile\:last\:mr-14:last-child{
    margin-right: 3.5rem;
  }

  .mobile\:last\:mr-16:last-child{
    margin-right: 4rem;
  }

  .mobile\:last\:mr-20:last-child{
    margin-right: 5rem;
  }

  .mobile\:last\:mr-24:last-child{
    margin-right: 6rem;
  }

  .mobile\:last\:mr-28:last-child{
    margin-right: 7rem;
  }

  .mobile\:last\:mr-32:last-child{
    margin-right: 8rem;
  }

  .mobile\:last\:mr-36:last-child{
    margin-right: 9rem;
  }

  .mobile\:last\:mr-40:last-child{
    margin-right: 10rem;
  }

  .mobile\:last\:mr-44:last-child{
    margin-right: 11rem;
  }

  .mobile\:last\:mr-48:last-child{
    margin-right: 12rem;
  }

  .mobile\:last\:mr-52:last-child{
    margin-right: 13rem;
  }

  .mobile\:last\:mr-56:last-child{
    margin-right: 14rem;
  }

  .mobile\:last\:mr-60:last-child{
    margin-right: 15rem;
  }

  .mobile\:last\:mr-64:last-child{
    margin-right: 16rem;
  }

  .mobile\:last\:mr-72:last-child{
    margin-right: 18rem;
  }

  .mobile\:last\:mr-80:last-child{
    margin-right: 20rem;
  }

  .mobile\:last\:mr-96:last-child{
    margin-right: 24rem;
  }

  .mobile\:last\:mr-auto:last-child{
    margin-right: auto;
  }

  .mobile\:last\:mr-px:last-child{
    margin-right: 1px;
  }

  .mobile\:last\:mr-0\.5:last-child{
    margin-right: 0.125rem;
  }

  .mobile\:last\:mr-1\.5:last-child{
    margin-right: 0.375rem;
  }

  .mobile\:last\:mr-2\.5:last-child{
    margin-right: 0.625rem;
  }

  .mobile\:last\:mr-3\.5:last-child{
    margin-right: 0.875rem;
  }

  .mobile\:last\:-mr-0:last-child{
    margin-right: 0px;
  }

  .mobile\:last\:-mr-1:last-child{
    margin-right: -0.25rem;
  }

  .mobile\:last\:-mr-2:last-child{
    margin-right: -0.5rem;
  }

  .mobile\:last\:-mr-3:last-child{
    margin-right: -0.75rem;
  }

  .mobile\:last\:-mr-4:last-child{
    margin-right: -1rem;
  }

  .mobile\:last\:-mr-5:last-child{
    margin-right: -1.25rem;
  }

  .mobile\:last\:-mr-6:last-child{
    margin-right: -1.5rem;
  }

  .mobile\:last\:-mr-7:last-child{
    margin-right: -1.75rem;
  }

  .mobile\:last\:-mr-8:last-child{
    margin-right: -2rem;
  }

  .mobile\:last\:-mr-9:last-child{
    margin-right: -2.25rem;
  }

  .mobile\:last\:-mr-10:last-child{
    margin-right: -2.5rem;
  }

  .mobile\:last\:-mr-11:last-child{
    margin-right: -2.75rem;
  }

  .mobile\:last\:-mr-12:last-child{
    margin-right: -3rem;
  }

  .mobile\:last\:-mr-14:last-child{
    margin-right: -3.5rem;
  }

  .mobile\:last\:-mr-16:last-child{
    margin-right: -4rem;
  }

  .mobile\:last\:-mr-20:last-child{
    margin-right: -5rem;
  }

  .mobile\:last\:-mr-24:last-child{
    margin-right: -6rem;
  }

  .mobile\:last\:-mr-28:last-child{
    margin-right: -7rem;
  }

  .mobile\:last\:-mr-32:last-child{
    margin-right: -8rem;
  }

  .mobile\:last\:-mr-36:last-child{
    margin-right: -9rem;
  }

  .mobile\:last\:-mr-40:last-child{
    margin-right: -10rem;
  }

  .mobile\:last\:-mr-44:last-child{
    margin-right: -11rem;
  }

  .mobile\:last\:-mr-48:last-child{
    margin-right: -12rem;
  }

  .mobile\:last\:-mr-52:last-child{
    margin-right: -13rem;
  }

  .mobile\:last\:-mr-56:last-child{
    margin-right: -14rem;
  }

  .mobile\:last\:-mr-60:last-child{
    margin-right: -15rem;
  }

  .mobile\:last\:-mr-64:last-child{
    margin-right: -16rem;
  }

  .mobile\:last\:-mr-72:last-child{
    margin-right: -18rem;
  }

  .mobile\:last\:-mr-80:last-child{
    margin-right: -20rem;
  }

  .mobile\:last\:-mr-96:last-child{
    margin-right: -24rem;
  }

  .mobile\:last\:-mr-px:last-child{
    margin-right: -1px;
  }

  .mobile\:last\:-mr-0\.5:last-child{
    margin-right: -0.125rem;
  }

  .mobile\:last\:-mr-1\.5:last-child{
    margin-right: -0.375rem;
  }

  .mobile\:last\:-mr-2\.5:last-child{
    margin-right: -0.625rem;
  }

  .mobile\:last\:-mr-3\.5:last-child{
    margin-right: -0.875rem;
  }

  .mobile\:last\:mr-neg1:last-child{
    margin-right: -.25rem;
  }

  .mobile\:last\:mr-neg2:last-child{
    margin-right: -.5rem;
  }

  .mobile\:last\:mr-neg4:last-child{
    margin-right: -1.0rem;
  }

  .mobile\:last\:mr-neg6:last-child{
    margin-right: -1.5rem;
  }

  .mobile\:last\:mr-neg12:last-child{
    margin-right: -3rem;
  }

  .mobile\:last\:mr-neg20:last-child{
    margin-right: -5rem;
  }

  .mobile\:last\:mb-0:last-child{
    margin-bottom: 0px;
  }

  .mobile\:last\:mb-1:last-child{
    margin-bottom: 0.25rem;
  }

  .mobile\:last\:mb-2:last-child{
    margin-bottom: 0.5rem;
  }

  .mobile\:last\:mb-3:last-child{
    margin-bottom: 0.75rem;
  }

  .mobile\:last\:mb-4:last-child{
    margin-bottom: 1rem;
  }

  .mobile\:last\:mb-5:last-child{
    margin-bottom: 1.25rem;
  }

  .mobile\:last\:mb-6:last-child{
    margin-bottom: 1.5rem;
  }

  .mobile\:last\:mb-7:last-child{
    margin-bottom: 1.75rem;
  }

  .mobile\:last\:mb-8:last-child{
    margin-bottom: 2rem;
  }

  .mobile\:last\:mb-9:last-child{
    margin-bottom: 2.25rem;
  }

  .mobile\:last\:mb-10:last-child{
    margin-bottom: 2.5rem;
  }

  .mobile\:last\:mb-11:last-child{
    margin-bottom: 2.75rem;
  }

  .mobile\:last\:mb-12:last-child{
    margin-bottom: 3rem;
  }

  .mobile\:last\:mb-14:last-child{
    margin-bottom: 3.5rem;
  }

  .mobile\:last\:mb-16:last-child{
    margin-bottom: 4rem;
  }

  .mobile\:last\:mb-20:last-child{
    margin-bottom: 5rem;
  }

  .mobile\:last\:mb-24:last-child{
    margin-bottom: 6rem;
  }

  .mobile\:last\:mb-28:last-child{
    margin-bottom: 7rem;
  }

  .mobile\:last\:mb-32:last-child{
    margin-bottom: 8rem;
  }

  .mobile\:last\:mb-36:last-child{
    margin-bottom: 9rem;
  }

  .mobile\:last\:mb-40:last-child{
    margin-bottom: 10rem;
  }

  .mobile\:last\:mb-44:last-child{
    margin-bottom: 11rem;
  }

  .mobile\:last\:mb-48:last-child{
    margin-bottom: 12rem;
  }

  .mobile\:last\:mb-52:last-child{
    margin-bottom: 13rem;
  }

  .mobile\:last\:mb-56:last-child{
    margin-bottom: 14rem;
  }

  .mobile\:last\:mb-60:last-child{
    margin-bottom: 15rem;
  }

  .mobile\:last\:mb-64:last-child{
    margin-bottom: 16rem;
  }

  .mobile\:last\:mb-72:last-child{
    margin-bottom: 18rem;
  }

  .mobile\:last\:mb-80:last-child{
    margin-bottom: 20rem;
  }

  .mobile\:last\:mb-96:last-child{
    margin-bottom: 24rem;
  }

  .mobile\:last\:mb-auto:last-child{
    margin-bottom: auto;
  }

  .mobile\:last\:mb-px:last-child{
    margin-bottom: 1px;
  }

  .mobile\:last\:mb-0\.5:last-child{
    margin-bottom: 0.125rem;
  }

  .mobile\:last\:mb-1\.5:last-child{
    margin-bottom: 0.375rem;
  }

  .mobile\:last\:mb-2\.5:last-child{
    margin-bottom: 0.625rem;
  }

  .mobile\:last\:mb-3\.5:last-child{
    margin-bottom: 0.875rem;
  }

  .mobile\:last\:-mb-0:last-child{
    margin-bottom: 0px;
  }

  .mobile\:last\:-mb-1:last-child{
    margin-bottom: -0.25rem;
  }

  .mobile\:last\:-mb-2:last-child{
    margin-bottom: -0.5rem;
  }

  .mobile\:last\:-mb-3:last-child{
    margin-bottom: -0.75rem;
  }

  .mobile\:last\:-mb-4:last-child{
    margin-bottom: -1rem;
  }

  .mobile\:last\:-mb-5:last-child{
    margin-bottom: -1.25rem;
  }

  .mobile\:last\:-mb-6:last-child{
    margin-bottom: -1.5rem;
  }

  .mobile\:last\:-mb-7:last-child{
    margin-bottom: -1.75rem;
  }

  .mobile\:last\:-mb-8:last-child{
    margin-bottom: -2rem;
  }

  .mobile\:last\:-mb-9:last-child{
    margin-bottom: -2.25rem;
  }

  .mobile\:last\:-mb-10:last-child{
    margin-bottom: -2.5rem;
  }

  .mobile\:last\:-mb-11:last-child{
    margin-bottom: -2.75rem;
  }

  .mobile\:last\:-mb-12:last-child{
    margin-bottom: -3rem;
  }

  .mobile\:last\:-mb-14:last-child{
    margin-bottom: -3.5rem;
  }

  .mobile\:last\:-mb-16:last-child{
    margin-bottom: -4rem;
  }

  .mobile\:last\:-mb-20:last-child{
    margin-bottom: -5rem;
  }

  .mobile\:last\:-mb-24:last-child{
    margin-bottom: -6rem;
  }

  .mobile\:last\:-mb-28:last-child{
    margin-bottom: -7rem;
  }

  .mobile\:last\:-mb-32:last-child{
    margin-bottom: -8rem;
  }

  .mobile\:last\:-mb-36:last-child{
    margin-bottom: -9rem;
  }

  .mobile\:last\:-mb-40:last-child{
    margin-bottom: -10rem;
  }

  .mobile\:last\:-mb-44:last-child{
    margin-bottom: -11rem;
  }

  .mobile\:last\:-mb-48:last-child{
    margin-bottom: -12rem;
  }

  .mobile\:last\:-mb-52:last-child{
    margin-bottom: -13rem;
  }

  .mobile\:last\:-mb-56:last-child{
    margin-bottom: -14rem;
  }

  .mobile\:last\:-mb-60:last-child{
    margin-bottom: -15rem;
  }

  .mobile\:last\:-mb-64:last-child{
    margin-bottom: -16rem;
  }

  .mobile\:last\:-mb-72:last-child{
    margin-bottom: -18rem;
  }

  .mobile\:last\:-mb-80:last-child{
    margin-bottom: -20rem;
  }

  .mobile\:last\:-mb-96:last-child{
    margin-bottom: -24rem;
  }

  .mobile\:last\:-mb-px:last-child{
    margin-bottom: -1px;
  }

  .mobile\:last\:-mb-0\.5:last-child{
    margin-bottom: -0.125rem;
  }

  .mobile\:last\:-mb-1\.5:last-child{
    margin-bottom: -0.375rem;
  }

  .mobile\:last\:-mb-2\.5:last-child{
    margin-bottom: -0.625rem;
  }

  .mobile\:last\:-mb-3\.5:last-child{
    margin-bottom: -0.875rem;
  }

  .mobile\:last\:mb-neg1:last-child{
    margin-bottom: -.25rem;
  }

  .mobile\:last\:mb-neg2:last-child{
    margin-bottom: -.5rem;
  }

  .mobile\:last\:mb-neg4:last-child{
    margin-bottom: -1.0rem;
  }

  .mobile\:last\:mb-neg6:last-child{
    margin-bottom: -1.5rem;
  }

  .mobile\:last\:mb-neg12:last-child{
    margin-bottom: -3rem;
  }

  .mobile\:last\:mb-neg20:last-child{
    margin-bottom: -5rem;
  }

  .mobile\:last\:ml-0:last-child{
    margin-left: 0px;
  }

  .mobile\:last\:ml-1:last-child{
    margin-left: 0.25rem;
  }

  .mobile\:last\:ml-2:last-child{
    margin-left: 0.5rem;
  }

  .mobile\:last\:ml-3:last-child{
    margin-left: 0.75rem;
  }

  .mobile\:last\:ml-4:last-child{
    margin-left: 1rem;
  }

  .mobile\:last\:ml-5:last-child{
    margin-left: 1.25rem;
  }

  .mobile\:last\:ml-6:last-child{
    margin-left: 1.5rem;
  }

  .mobile\:last\:ml-7:last-child{
    margin-left: 1.75rem;
  }

  .mobile\:last\:ml-8:last-child{
    margin-left: 2rem;
  }

  .mobile\:last\:ml-9:last-child{
    margin-left: 2.25rem;
  }

  .mobile\:last\:ml-10:last-child{
    margin-left: 2.5rem;
  }

  .mobile\:last\:ml-11:last-child{
    margin-left: 2.75rem;
  }

  .mobile\:last\:ml-12:last-child{
    margin-left: 3rem;
  }

  .mobile\:last\:ml-14:last-child{
    margin-left: 3.5rem;
  }

  .mobile\:last\:ml-16:last-child{
    margin-left: 4rem;
  }

  .mobile\:last\:ml-20:last-child{
    margin-left: 5rem;
  }

  .mobile\:last\:ml-24:last-child{
    margin-left: 6rem;
  }

  .mobile\:last\:ml-28:last-child{
    margin-left: 7rem;
  }

  .mobile\:last\:ml-32:last-child{
    margin-left: 8rem;
  }

  .mobile\:last\:ml-36:last-child{
    margin-left: 9rem;
  }

  .mobile\:last\:ml-40:last-child{
    margin-left: 10rem;
  }

  .mobile\:last\:ml-44:last-child{
    margin-left: 11rem;
  }

  .mobile\:last\:ml-48:last-child{
    margin-left: 12rem;
  }

  .mobile\:last\:ml-52:last-child{
    margin-left: 13rem;
  }

  .mobile\:last\:ml-56:last-child{
    margin-left: 14rem;
  }

  .mobile\:last\:ml-60:last-child{
    margin-left: 15rem;
  }

  .mobile\:last\:ml-64:last-child{
    margin-left: 16rem;
  }

  .mobile\:last\:ml-72:last-child{
    margin-left: 18rem;
  }

  .mobile\:last\:ml-80:last-child{
    margin-left: 20rem;
  }

  .mobile\:last\:ml-96:last-child{
    margin-left: 24rem;
  }

  .mobile\:last\:ml-auto:last-child{
    margin-left: auto;
  }

  .mobile\:last\:ml-px:last-child{
    margin-left: 1px;
  }

  .mobile\:last\:ml-0\.5:last-child{
    margin-left: 0.125rem;
  }

  .mobile\:last\:ml-1\.5:last-child{
    margin-left: 0.375rem;
  }

  .mobile\:last\:ml-2\.5:last-child{
    margin-left: 0.625rem;
  }

  .mobile\:last\:ml-3\.5:last-child{
    margin-left: 0.875rem;
  }

  .mobile\:last\:-ml-0:last-child{
    margin-left: 0px;
  }

  .mobile\:last\:-ml-1:last-child{
    margin-left: -0.25rem;
  }

  .mobile\:last\:-ml-2:last-child{
    margin-left: -0.5rem;
  }

  .mobile\:last\:-ml-3:last-child{
    margin-left: -0.75rem;
  }

  .mobile\:last\:-ml-4:last-child{
    margin-left: -1rem;
  }

  .mobile\:last\:-ml-5:last-child{
    margin-left: -1.25rem;
  }

  .mobile\:last\:-ml-6:last-child{
    margin-left: -1.5rem;
  }

  .mobile\:last\:-ml-7:last-child{
    margin-left: -1.75rem;
  }

  .mobile\:last\:-ml-8:last-child{
    margin-left: -2rem;
  }

  .mobile\:last\:-ml-9:last-child{
    margin-left: -2.25rem;
  }

  .mobile\:last\:-ml-10:last-child{
    margin-left: -2.5rem;
  }

  .mobile\:last\:-ml-11:last-child{
    margin-left: -2.75rem;
  }

  .mobile\:last\:-ml-12:last-child{
    margin-left: -3rem;
  }

  .mobile\:last\:-ml-14:last-child{
    margin-left: -3.5rem;
  }

  .mobile\:last\:-ml-16:last-child{
    margin-left: -4rem;
  }

  .mobile\:last\:-ml-20:last-child{
    margin-left: -5rem;
  }

  .mobile\:last\:-ml-24:last-child{
    margin-left: -6rem;
  }

  .mobile\:last\:-ml-28:last-child{
    margin-left: -7rem;
  }

  .mobile\:last\:-ml-32:last-child{
    margin-left: -8rem;
  }

  .mobile\:last\:-ml-36:last-child{
    margin-left: -9rem;
  }

  .mobile\:last\:-ml-40:last-child{
    margin-left: -10rem;
  }

  .mobile\:last\:-ml-44:last-child{
    margin-left: -11rem;
  }

  .mobile\:last\:-ml-48:last-child{
    margin-left: -12rem;
  }

  .mobile\:last\:-ml-52:last-child{
    margin-left: -13rem;
  }

  .mobile\:last\:-ml-56:last-child{
    margin-left: -14rem;
  }

  .mobile\:last\:-ml-60:last-child{
    margin-left: -15rem;
  }

  .mobile\:last\:-ml-64:last-child{
    margin-left: -16rem;
  }

  .mobile\:last\:-ml-72:last-child{
    margin-left: -18rem;
  }

  .mobile\:last\:-ml-80:last-child{
    margin-left: -20rem;
  }

  .mobile\:last\:-ml-96:last-child{
    margin-left: -24rem;
  }

  .mobile\:last\:-ml-px:last-child{
    margin-left: -1px;
  }

  .mobile\:last\:-ml-0\.5:last-child{
    margin-left: -0.125rem;
  }

  .mobile\:last\:-ml-1\.5:last-child{
    margin-left: -0.375rem;
  }

  .mobile\:last\:-ml-2\.5:last-child{
    margin-left: -0.625rem;
  }

  .mobile\:last\:-ml-3\.5:last-child{
    margin-left: -0.875rem;
  }

  .mobile\:last\:ml-neg1:last-child{
    margin-left: -.25rem;
  }

  .mobile\:last\:ml-neg2:last-child{
    margin-left: -.5rem;
  }

  .mobile\:last\:ml-neg4:last-child{
    margin-left: -1.0rem;
  }

  .mobile\:last\:ml-neg6:last-child{
    margin-left: -1.5rem;
  }

  .mobile\:last\:ml-neg12:last-child{
    margin-left: -3rem;
  }

  .mobile\:last\:ml-neg20:last-child{
    margin-left: -5rem;
  }

  .mobile\:hover\:mt-0:hover{
    margin-top: 0px;
  }

  .mobile\:hover\:mt-1:hover{
    margin-top: 0.25rem;
  }

  .mobile\:hover\:mt-2:hover{
    margin-top: 0.5rem;
  }

  .mobile\:hover\:mt-3:hover{
    margin-top: 0.75rem;
  }

  .mobile\:hover\:mt-4:hover{
    margin-top: 1rem;
  }

  .mobile\:hover\:mt-5:hover{
    margin-top: 1.25rem;
  }

  .mobile\:hover\:mt-6:hover{
    margin-top: 1.5rem;
  }

  .mobile\:hover\:mt-7:hover{
    margin-top: 1.75rem;
  }

  .mobile\:hover\:mt-8:hover{
    margin-top: 2rem;
  }

  .mobile\:hover\:mt-9:hover{
    margin-top: 2.25rem;
  }

  .mobile\:hover\:mt-10:hover{
    margin-top: 2.5rem;
  }

  .mobile\:hover\:mt-11:hover{
    margin-top: 2.75rem;
  }

  .mobile\:hover\:mt-12:hover{
    margin-top: 3rem;
  }

  .mobile\:hover\:mt-14:hover{
    margin-top: 3.5rem;
  }

  .mobile\:hover\:mt-16:hover{
    margin-top: 4rem;
  }

  .mobile\:hover\:mt-20:hover{
    margin-top: 5rem;
  }

  .mobile\:hover\:mt-24:hover{
    margin-top: 6rem;
  }

  .mobile\:hover\:mt-28:hover{
    margin-top: 7rem;
  }

  .mobile\:hover\:mt-32:hover{
    margin-top: 8rem;
  }

  .mobile\:hover\:mt-36:hover{
    margin-top: 9rem;
  }

  .mobile\:hover\:mt-40:hover{
    margin-top: 10rem;
  }

  .mobile\:hover\:mt-44:hover{
    margin-top: 11rem;
  }

  .mobile\:hover\:mt-48:hover{
    margin-top: 12rem;
  }

  .mobile\:hover\:mt-52:hover{
    margin-top: 13rem;
  }

  .mobile\:hover\:mt-56:hover{
    margin-top: 14rem;
  }

  .mobile\:hover\:mt-60:hover{
    margin-top: 15rem;
  }

  .mobile\:hover\:mt-64:hover{
    margin-top: 16rem;
  }

  .mobile\:hover\:mt-72:hover{
    margin-top: 18rem;
  }

  .mobile\:hover\:mt-80:hover{
    margin-top: 20rem;
  }

  .mobile\:hover\:mt-96:hover{
    margin-top: 24rem;
  }

  .mobile\:hover\:mt-auto:hover{
    margin-top: auto;
  }

  .mobile\:hover\:mt-px:hover{
    margin-top: 1px;
  }

  .mobile\:hover\:mt-0\.5:hover{
    margin-top: 0.125rem;
  }

  .mobile\:hover\:mt-1\.5:hover{
    margin-top: 0.375rem;
  }

  .mobile\:hover\:mt-2\.5:hover{
    margin-top: 0.625rem;
  }

  .mobile\:hover\:mt-3\.5:hover{
    margin-top: 0.875rem;
  }

  .mobile\:hover\:-mt-0:hover{
    margin-top: 0px;
  }

  .mobile\:hover\:-mt-1:hover{
    margin-top: -0.25rem;
  }

  .mobile\:hover\:-mt-2:hover{
    margin-top: -0.5rem;
  }

  .mobile\:hover\:-mt-3:hover{
    margin-top: -0.75rem;
  }

  .mobile\:hover\:-mt-4:hover{
    margin-top: -1rem;
  }

  .mobile\:hover\:-mt-5:hover{
    margin-top: -1.25rem;
  }

  .mobile\:hover\:-mt-6:hover{
    margin-top: -1.5rem;
  }

  .mobile\:hover\:-mt-7:hover{
    margin-top: -1.75rem;
  }

  .mobile\:hover\:-mt-8:hover{
    margin-top: -2rem;
  }

  .mobile\:hover\:-mt-9:hover{
    margin-top: -2.25rem;
  }

  .mobile\:hover\:-mt-10:hover{
    margin-top: -2.5rem;
  }

  .mobile\:hover\:-mt-11:hover{
    margin-top: -2.75rem;
  }

  .mobile\:hover\:-mt-12:hover{
    margin-top: -3rem;
  }

  .mobile\:hover\:-mt-14:hover{
    margin-top: -3.5rem;
  }

  .mobile\:hover\:-mt-16:hover{
    margin-top: -4rem;
  }

  .mobile\:hover\:-mt-20:hover{
    margin-top: -5rem;
  }

  .mobile\:hover\:-mt-24:hover{
    margin-top: -6rem;
  }

  .mobile\:hover\:-mt-28:hover{
    margin-top: -7rem;
  }

  .mobile\:hover\:-mt-32:hover{
    margin-top: -8rem;
  }

  .mobile\:hover\:-mt-36:hover{
    margin-top: -9rem;
  }

  .mobile\:hover\:-mt-40:hover{
    margin-top: -10rem;
  }

  .mobile\:hover\:-mt-44:hover{
    margin-top: -11rem;
  }

  .mobile\:hover\:-mt-48:hover{
    margin-top: -12rem;
  }

  .mobile\:hover\:-mt-52:hover{
    margin-top: -13rem;
  }

  .mobile\:hover\:-mt-56:hover{
    margin-top: -14rem;
  }

  .mobile\:hover\:-mt-60:hover{
    margin-top: -15rem;
  }

  .mobile\:hover\:-mt-64:hover{
    margin-top: -16rem;
  }

  .mobile\:hover\:-mt-72:hover{
    margin-top: -18rem;
  }

  .mobile\:hover\:-mt-80:hover{
    margin-top: -20rem;
  }

  .mobile\:hover\:-mt-96:hover{
    margin-top: -24rem;
  }

  .mobile\:hover\:-mt-px:hover{
    margin-top: -1px;
  }

  .mobile\:hover\:-mt-0\.5:hover{
    margin-top: -0.125rem;
  }

  .mobile\:hover\:-mt-1\.5:hover{
    margin-top: -0.375rem;
  }

  .mobile\:hover\:-mt-2\.5:hover{
    margin-top: -0.625rem;
  }

  .mobile\:hover\:-mt-3\.5:hover{
    margin-top: -0.875rem;
  }

  .mobile\:hover\:mt-neg1:hover{
    margin-top: -.25rem;
  }

  .mobile\:hover\:mt-neg2:hover{
    margin-top: -.5rem;
  }

  .mobile\:hover\:mt-neg4:hover{
    margin-top: -1.0rem;
  }

  .mobile\:hover\:mt-neg6:hover{
    margin-top: -1.5rem;
  }

  .mobile\:hover\:mt-neg12:hover{
    margin-top: -3rem;
  }

  .mobile\:hover\:mt-neg20:hover{
    margin-top: -5rem;
  }

  .mobile\:hover\:mr-0:hover{
    margin-right: 0px;
  }

  .mobile\:hover\:mr-1:hover{
    margin-right: 0.25rem;
  }

  .mobile\:hover\:mr-2:hover{
    margin-right: 0.5rem;
  }

  .mobile\:hover\:mr-3:hover{
    margin-right: 0.75rem;
  }

  .mobile\:hover\:mr-4:hover{
    margin-right: 1rem;
  }

  .mobile\:hover\:mr-5:hover{
    margin-right: 1.25rem;
  }

  .mobile\:hover\:mr-6:hover{
    margin-right: 1.5rem;
  }

  .mobile\:hover\:mr-7:hover{
    margin-right: 1.75rem;
  }

  .mobile\:hover\:mr-8:hover{
    margin-right: 2rem;
  }

  .mobile\:hover\:mr-9:hover{
    margin-right: 2.25rem;
  }

  .mobile\:hover\:mr-10:hover{
    margin-right: 2.5rem;
  }

  .mobile\:hover\:mr-11:hover{
    margin-right: 2.75rem;
  }

  .mobile\:hover\:mr-12:hover{
    margin-right: 3rem;
  }

  .mobile\:hover\:mr-14:hover{
    margin-right: 3.5rem;
  }

  .mobile\:hover\:mr-16:hover{
    margin-right: 4rem;
  }

  .mobile\:hover\:mr-20:hover{
    margin-right: 5rem;
  }

  .mobile\:hover\:mr-24:hover{
    margin-right: 6rem;
  }

  .mobile\:hover\:mr-28:hover{
    margin-right: 7rem;
  }

  .mobile\:hover\:mr-32:hover{
    margin-right: 8rem;
  }

  .mobile\:hover\:mr-36:hover{
    margin-right: 9rem;
  }

  .mobile\:hover\:mr-40:hover{
    margin-right: 10rem;
  }

  .mobile\:hover\:mr-44:hover{
    margin-right: 11rem;
  }

  .mobile\:hover\:mr-48:hover{
    margin-right: 12rem;
  }

  .mobile\:hover\:mr-52:hover{
    margin-right: 13rem;
  }

  .mobile\:hover\:mr-56:hover{
    margin-right: 14rem;
  }

  .mobile\:hover\:mr-60:hover{
    margin-right: 15rem;
  }

  .mobile\:hover\:mr-64:hover{
    margin-right: 16rem;
  }

  .mobile\:hover\:mr-72:hover{
    margin-right: 18rem;
  }

  .mobile\:hover\:mr-80:hover{
    margin-right: 20rem;
  }

  .mobile\:hover\:mr-96:hover{
    margin-right: 24rem;
  }

  .mobile\:hover\:mr-auto:hover{
    margin-right: auto;
  }

  .mobile\:hover\:mr-px:hover{
    margin-right: 1px;
  }

  .mobile\:hover\:mr-0\.5:hover{
    margin-right: 0.125rem;
  }

  .mobile\:hover\:mr-1\.5:hover{
    margin-right: 0.375rem;
  }

  .mobile\:hover\:mr-2\.5:hover{
    margin-right: 0.625rem;
  }

  .mobile\:hover\:mr-3\.5:hover{
    margin-right: 0.875rem;
  }

  .mobile\:hover\:-mr-0:hover{
    margin-right: 0px;
  }

  .mobile\:hover\:-mr-1:hover{
    margin-right: -0.25rem;
  }

  .mobile\:hover\:-mr-2:hover{
    margin-right: -0.5rem;
  }

  .mobile\:hover\:-mr-3:hover{
    margin-right: -0.75rem;
  }

  .mobile\:hover\:-mr-4:hover{
    margin-right: -1rem;
  }

  .mobile\:hover\:-mr-5:hover{
    margin-right: -1.25rem;
  }

  .mobile\:hover\:-mr-6:hover{
    margin-right: -1.5rem;
  }

  .mobile\:hover\:-mr-7:hover{
    margin-right: -1.75rem;
  }

  .mobile\:hover\:-mr-8:hover{
    margin-right: -2rem;
  }

  .mobile\:hover\:-mr-9:hover{
    margin-right: -2.25rem;
  }

  .mobile\:hover\:-mr-10:hover{
    margin-right: -2.5rem;
  }

  .mobile\:hover\:-mr-11:hover{
    margin-right: -2.75rem;
  }

  .mobile\:hover\:-mr-12:hover{
    margin-right: -3rem;
  }

  .mobile\:hover\:-mr-14:hover{
    margin-right: -3.5rem;
  }

  .mobile\:hover\:-mr-16:hover{
    margin-right: -4rem;
  }

  .mobile\:hover\:-mr-20:hover{
    margin-right: -5rem;
  }

  .mobile\:hover\:-mr-24:hover{
    margin-right: -6rem;
  }

  .mobile\:hover\:-mr-28:hover{
    margin-right: -7rem;
  }

  .mobile\:hover\:-mr-32:hover{
    margin-right: -8rem;
  }

  .mobile\:hover\:-mr-36:hover{
    margin-right: -9rem;
  }

  .mobile\:hover\:-mr-40:hover{
    margin-right: -10rem;
  }

  .mobile\:hover\:-mr-44:hover{
    margin-right: -11rem;
  }

  .mobile\:hover\:-mr-48:hover{
    margin-right: -12rem;
  }

  .mobile\:hover\:-mr-52:hover{
    margin-right: -13rem;
  }

  .mobile\:hover\:-mr-56:hover{
    margin-right: -14rem;
  }

  .mobile\:hover\:-mr-60:hover{
    margin-right: -15rem;
  }

  .mobile\:hover\:-mr-64:hover{
    margin-right: -16rem;
  }

  .mobile\:hover\:-mr-72:hover{
    margin-right: -18rem;
  }

  .mobile\:hover\:-mr-80:hover{
    margin-right: -20rem;
  }

  .mobile\:hover\:-mr-96:hover{
    margin-right: -24rem;
  }

  .mobile\:hover\:-mr-px:hover{
    margin-right: -1px;
  }

  .mobile\:hover\:-mr-0\.5:hover{
    margin-right: -0.125rem;
  }

  .mobile\:hover\:-mr-1\.5:hover{
    margin-right: -0.375rem;
  }

  .mobile\:hover\:-mr-2\.5:hover{
    margin-right: -0.625rem;
  }

  .mobile\:hover\:-mr-3\.5:hover{
    margin-right: -0.875rem;
  }

  .mobile\:hover\:mr-neg1:hover{
    margin-right: -.25rem;
  }

  .mobile\:hover\:mr-neg2:hover{
    margin-right: -.5rem;
  }

  .mobile\:hover\:mr-neg4:hover{
    margin-right: -1.0rem;
  }

  .mobile\:hover\:mr-neg6:hover{
    margin-right: -1.5rem;
  }

  .mobile\:hover\:mr-neg12:hover{
    margin-right: -3rem;
  }

  .mobile\:hover\:mr-neg20:hover{
    margin-right: -5rem;
  }

  .mobile\:hover\:mb-0:hover{
    margin-bottom: 0px;
  }

  .mobile\:hover\:mb-1:hover{
    margin-bottom: 0.25rem;
  }

  .mobile\:hover\:mb-2:hover{
    margin-bottom: 0.5rem;
  }

  .mobile\:hover\:mb-3:hover{
    margin-bottom: 0.75rem;
  }

  .mobile\:hover\:mb-4:hover{
    margin-bottom: 1rem;
  }

  .mobile\:hover\:mb-5:hover{
    margin-bottom: 1.25rem;
  }

  .mobile\:hover\:mb-6:hover{
    margin-bottom: 1.5rem;
  }

  .mobile\:hover\:mb-7:hover{
    margin-bottom: 1.75rem;
  }

  .mobile\:hover\:mb-8:hover{
    margin-bottom: 2rem;
  }

  .mobile\:hover\:mb-9:hover{
    margin-bottom: 2.25rem;
  }

  .mobile\:hover\:mb-10:hover{
    margin-bottom: 2.5rem;
  }

  .mobile\:hover\:mb-11:hover{
    margin-bottom: 2.75rem;
  }

  .mobile\:hover\:mb-12:hover{
    margin-bottom: 3rem;
  }

  .mobile\:hover\:mb-14:hover{
    margin-bottom: 3.5rem;
  }

  .mobile\:hover\:mb-16:hover{
    margin-bottom: 4rem;
  }

  .mobile\:hover\:mb-20:hover{
    margin-bottom: 5rem;
  }

  .mobile\:hover\:mb-24:hover{
    margin-bottom: 6rem;
  }

  .mobile\:hover\:mb-28:hover{
    margin-bottom: 7rem;
  }

  .mobile\:hover\:mb-32:hover{
    margin-bottom: 8rem;
  }

  .mobile\:hover\:mb-36:hover{
    margin-bottom: 9rem;
  }

  .mobile\:hover\:mb-40:hover{
    margin-bottom: 10rem;
  }

  .mobile\:hover\:mb-44:hover{
    margin-bottom: 11rem;
  }

  .mobile\:hover\:mb-48:hover{
    margin-bottom: 12rem;
  }

  .mobile\:hover\:mb-52:hover{
    margin-bottom: 13rem;
  }

  .mobile\:hover\:mb-56:hover{
    margin-bottom: 14rem;
  }

  .mobile\:hover\:mb-60:hover{
    margin-bottom: 15rem;
  }

  .mobile\:hover\:mb-64:hover{
    margin-bottom: 16rem;
  }

  .mobile\:hover\:mb-72:hover{
    margin-bottom: 18rem;
  }

  .mobile\:hover\:mb-80:hover{
    margin-bottom: 20rem;
  }

  .mobile\:hover\:mb-96:hover{
    margin-bottom: 24rem;
  }

  .mobile\:hover\:mb-auto:hover{
    margin-bottom: auto;
  }

  .mobile\:hover\:mb-px:hover{
    margin-bottom: 1px;
  }

  .mobile\:hover\:mb-0\.5:hover{
    margin-bottom: 0.125rem;
  }

  .mobile\:hover\:mb-1\.5:hover{
    margin-bottom: 0.375rem;
  }

  .mobile\:hover\:mb-2\.5:hover{
    margin-bottom: 0.625rem;
  }

  .mobile\:hover\:mb-3\.5:hover{
    margin-bottom: 0.875rem;
  }

  .mobile\:hover\:-mb-0:hover{
    margin-bottom: 0px;
  }

  .mobile\:hover\:-mb-1:hover{
    margin-bottom: -0.25rem;
  }

  .mobile\:hover\:-mb-2:hover{
    margin-bottom: -0.5rem;
  }

  .mobile\:hover\:-mb-3:hover{
    margin-bottom: -0.75rem;
  }

  .mobile\:hover\:-mb-4:hover{
    margin-bottom: -1rem;
  }

  .mobile\:hover\:-mb-5:hover{
    margin-bottom: -1.25rem;
  }

  .mobile\:hover\:-mb-6:hover{
    margin-bottom: -1.5rem;
  }

  .mobile\:hover\:-mb-7:hover{
    margin-bottom: -1.75rem;
  }

  .mobile\:hover\:-mb-8:hover{
    margin-bottom: -2rem;
  }

  .mobile\:hover\:-mb-9:hover{
    margin-bottom: -2.25rem;
  }

  .mobile\:hover\:-mb-10:hover{
    margin-bottom: -2.5rem;
  }

  .mobile\:hover\:-mb-11:hover{
    margin-bottom: -2.75rem;
  }

  .mobile\:hover\:-mb-12:hover{
    margin-bottom: -3rem;
  }

  .mobile\:hover\:-mb-14:hover{
    margin-bottom: -3.5rem;
  }

  .mobile\:hover\:-mb-16:hover{
    margin-bottom: -4rem;
  }

  .mobile\:hover\:-mb-20:hover{
    margin-bottom: -5rem;
  }

  .mobile\:hover\:-mb-24:hover{
    margin-bottom: -6rem;
  }

  .mobile\:hover\:-mb-28:hover{
    margin-bottom: -7rem;
  }

  .mobile\:hover\:-mb-32:hover{
    margin-bottom: -8rem;
  }

  .mobile\:hover\:-mb-36:hover{
    margin-bottom: -9rem;
  }

  .mobile\:hover\:-mb-40:hover{
    margin-bottom: -10rem;
  }

  .mobile\:hover\:-mb-44:hover{
    margin-bottom: -11rem;
  }

  .mobile\:hover\:-mb-48:hover{
    margin-bottom: -12rem;
  }

  .mobile\:hover\:-mb-52:hover{
    margin-bottom: -13rem;
  }

  .mobile\:hover\:-mb-56:hover{
    margin-bottom: -14rem;
  }

  .mobile\:hover\:-mb-60:hover{
    margin-bottom: -15rem;
  }

  .mobile\:hover\:-mb-64:hover{
    margin-bottom: -16rem;
  }

  .mobile\:hover\:-mb-72:hover{
    margin-bottom: -18rem;
  }

  .mobile\:hover\:-mb-80:hover{
    margin-bottom: -20rem;
  }

  .mobile\:hover\:-mb-96:hover{
    margin-bottom: -24rem;
  }

  .mobile\:hover\:-mb-px:hover{
    margin-bottom: -1px;
  }

  .mobile\:hover\:-mb-0\.5:hover{
    margin-bottom: -0.125rem;
  }

  .mobile\:hover\:-mb-1\.5:hover{
    margin-bottom: -0.375rem;
  }

  .mobile\:hover\:-mb-2\.5:hover{
    margin-bottom: -0.625rem;
  }

  .mobile\:hover\:-mb-3\.5:hover{
    margin-bottom: -0.875rem;
  }

  .mobile\:hover\:mb-neg1:hover{
    margin-bottom: -.25rem;
  }

  .mobile\:hover\:mb-neg2:hover{
    margin-bottom: -.5rem;
  }

  .mobile\:hover\:mb-neg4:hover{
    margin-bottom: -1.0rem;
  }

  .mobile\:hover\:mb-neg6:hover{
    margin-bottom: -1.5rem;
  }

  .mobile\:hover\:mb-neg12:hover{
    margin-bottom: -3rem;
  }

  .mobile\:hover\:mb-neg20:hover{
    margin-bottom: -5rem;
  }

  .mobile\:hover\:ml-0:hover{
    margin-left: 0px;
  }

  .mobile\:hover\:ml-1:hover{
    margin-left: 0.25rem;
  }

  .mobile\:hover\:ml-2:hover{
    margin-left: 0.5rem;
  }

  .mobile\:hover\:ml-3:hover{
    margin-left: 0.75rem;
  }

  .mobile\:hover\:ml-4:hover{
    margin-left: 1rem;
  }

  .mobile\:hover\:ml-5:hover{
    margin-left: 1.25rem;
  }

  .mobile\:hover\:ml-6:hover{
    margin-left: 1.5rem;
  }

  .mobile\:hover\:ml-7:hover{
    margin-left: 1.75rem;
  }

  .mobile\:hover\:ml-8:hover{
    margin-left: 2rem;
  }

  .mobile\:hover\:ml-9:hover{
    margin-left: 2.25rem;
  }

  .mobile\:hover\:ml-10:hover{
    margin-left: 2.5rem;
  }

  .mobile\:hover\:ml-11:hover{
    margin-left: 2.75rem;
  }

  .mobile\:hover\:ml-12:hover{
    margin-left: 3rem;
  }

  .mobile\:hover\:ml-14:hover{
    margin-left: 3.5rem;
  }

  .mobile\:hover\:ml-16:hover{
    margin-left: 4rem;
  }

  .mobile\:hover\:ml-20:hover{
    margin-left: 5rem;
  }

  .mobile\:hover\:ml-24:hover{
    margin-left: 6rem;
  }

  .mobile\:hover\:ml-28:hover{
    margin-left: 7rem;
  }

  .mobile\:hover\:ml-32:hover{
    margin-left: 8rem;
  }

  .mobile\:hover\:ml-36:hover{
    margin-left: 9rem;
  }

  .mobile\:hover\:ml-40:hover{
    margin-left: 10rem;
  }

  .mobile\:hover\:ml-44:hover{
    margin-left: 11rem;
  }

  .mobile\:hover\:ml-48:hover{
    margin-left: 12rem;
  }

  .mobile\:hover\:ml-52:hover{
    margin-left: 13rem;
  }

  .mobile\:hover\:ml-56:hover{
    margin-left: 14rem;
  }

  .mobile\:hover\:ml-60:hover{
    margin-left: 15rem;
  }

  .mobile\:hover\:ml-64:hover{
    margin-left: 16rem;
  }

  .mobile\:hover\:ml-72:hover{
    margin-left: 18rem;
  }

  .mobile\:hover\:ml-80:hover{
    margin-left: 20rem;
  }

  .mobile\:hover\:ml-96:hover{
    margin-left: 24rem;
  }

  .mobile\:hover\:ml-auto:hover{
    margin-left: auto;
  }

  .mobile\:hover\:ml-px:hover{
    margin-left: 1px;
  }

  .mobile\:hover\:ml-0\.5:hover{
    margin-left: 0.125rem;
  }

  .mobile\:hover\:ml-1\.5:hover{
    margin-left: 0.375rem;
  }

  .mobile\:hover\:ml-2\.5:hover{
    margin-left: 0.625rem;
  }

  .mobile\:hover\:ml-3\.5:hover{
    margin-left: 0.875rem;
  }

  .mobile\:hover\:-ml-0:hover{
    margin-left: 0px;
  }

  .mobile\:hover\:-ml-1:hover{
    margin-left: -0.25rem;
  }

  .mobile\:hover\:-ml-2:hover{
    margin-left: -0.5rem;
  }

  .mobile\:hover\:-ml-3:hover{
    margin-left: -0.75rem;
  }

  .mobile\:hover\:-ml-4:hover{
    margin-left: -1rem;
  }

  .mobile\:hover\:-ml-5:hover{
    margin-left: -1.25rem;
  }

  .mobile\:hover\:-ml-6:hover{
    margin-left: -1.5rem;
  }

  .mobile\:hover\:-ml-7:hover{
    margin-left: -1.75rem;
  }

  .mobile\:hover\:-ml-8:hover{
    margin-left: -2rem;
  }

  .mobile\:hover\:-ml-9:hover{
    margin-left: -2.25rem;
  }

  .mobile\:hover\:-ml-10:hover{
    margin-left: -2.5rem;
  }

  .mobile\:hover\:-ml-11:hover{
    margin-left: -2.75rem;
  }

  .mobile\:hover\:-ml-12:hover{
    margin-left: -3rem;
  }

  .mobile\:hover\:-ml-14:hover{
    margin-left: -3.5rem;
  }

  .mobile\:hover\:-ml-16:hover{
    margin-left: -4rem;
  }

  .mobile\:hover\:-ml-20:hover{
    margin-left: -5rem;
  }

  .mobile\:hover\:-ml-24:hover{
    margin-left: -6rem;
  }

  .mobile\:hover\:-ml-28:hover{
    margin-left: -7rem;
  }

  .mobile\:hover\:-ml-32:hover{
    margin-left: -8rem;
  }

  .mobile\:hover\:-ml-36:hover{
    margin-left: -9rem;
  }

  .mobile\:hover\:-ml-40:hover{
    margin-left: -10rem;
  }

  .mobile\:hover\:-ml-44:hover{
    margin-left: -11rem;
  }

  .mobile\:hover\:-ml-48:hover{
    margin-left: -12rem;
  }

  .mobile\:hover\:-ml-52:hover{
    margin-left: -13rem;
  }

  .mobile\:hover\:-ml-56:hover{
    margin-left: -14rem;
  }

  .mobile\:hover\:-ml-60:hover{
    margin-left: -15rem;
  }

  .mobile\:hover\:-ml-64:hover{
    margin-left: -16rem;
  }

  .mobile\:hover\:-ml-72:hover{
    margin-left: -18rem;
  }

  .mobile\:hover\:-ml-80:hover{
    margin-left: -20rem;
  }

  .mobile\:hover\:-ml-96:hover{
    margin-left: -24rem;
  }

  .mobile\:hover\:-ml-px:hover{
    margin-left: -1px;
  }

  .mobile\:hover\:-ml-0\.5:hover{
    margin-left: -0.125rem;
  }

  .mobile\:hover\:-ml-1\.5:hover{
    margin-left: -0.375rem;
  }

  .mobile\:hover\:-ml-2\.5:hover{
    margin-left: -0.625rem;
  }

  .mobile\:hover\:-ml-3\.5:hover{
    margin-left: -0.875rem;
  }

  .mobile\:hover\:ml-neg1:hover{
    margin-left: -.25rem;
  }

  .mobile\:hover\:ml-neg2:hover{
    margin-left: -.5rem;
  }

  .mobile\:hover\:ml-neg4:hover{
    margin-left: -1.0rem;
  }

  .mobile\:hover\:ml-neg6:hover{
    margin-left: -1.5rem;
  }

  .mobile\:hover\:ml-neg12:hover{
    margin-left: -3rem;
  }

  .mobile\:hover\:ml-neg20:hover{
    margin-left: -5rem;
  }

  .mobile\:focus\:mt-0:focus{
    margin-top: 0px;
  }

  .mobile\:focus\:mt-1:focus{
    margin-top: 0.25rem;
  }

  .mobile\:focus\:mt-2:focus{
    margin-top: 0.5rem;
  }

  .mobile\:focus\:mt-3:focus{
    margin-top: 0.75rem;
  }

  .mobile\:focus\:mt-4:focus{
    margin-top: 1rem;
  }

  .mobile\:focus\:mt-5:focus{
    margin-top: 1.25rem;
  }

  .mobile\:focus\:mt-6:focus{
    margin-top: 1.5rem;
  }

  .mobile\:focus\:mt-7:focus{
    margin-top: 1.75rem;
  }

  .mobile\:focus\:mt-8:focus{
    margin-top: 2rem;
  }

  .mobile\:focus\:mt-9:focus{
    margin-top: 2.25rem;
  }

  .mobile\:focus\:mt-10:focus{
    margin-top: 2.5rem;
  }

  .mobile\:focus\:mt-11:focus{
    margin-top: 2.75rem;
  }

  .mobile\:focus\:mt-12:focus{
    margin-top: 3rem;
  }

  .mobile\:focus\:mt-14:focus{
    margin-top: 3.5rem;
  }

  .mobile\:focus\:mt-16:focus{
    margin-top: 4rem;
  }

  .mobile\:focus\:mt-20:focus{
    margin-top: 5rem;
  }

  .mobile\:focus\:mt-24:focus{
    margin-top: 6rem;
  }

  .mobile\:focus\:mt-28:focus{
    margin-top: 7rem;
  }

  .mobile\:focus\:mt-32:focus{
    margin-top: 8rem;
  }

  .mobile\:focus\:mt-36:focus{
    margin-top: 9rem;
  }

  .mobile\:focus\:mt-40:focus{
    margin-top: 10rem;
  }

  .mobile\:focus\:mt-44:focus{
    margin-top: 11rem;
  }

  .mobile\:focus\:mt-48:focus{
    margin-top: 12rem;
  }

  .mobile\:focus\:mt-52:focus{
    margin-top: 13rem;
  }

  .mobile\:focus\:mt-56:focus{
    margin-top: 14rem;
  }

  .mobile\:focus\:mt-60:focus{
    margin-top: 15rem;
  }

  .mobile\:focus\:mt-64:focus{
    margin-top: 16rem;
  }

  .mobile\:focus\:mt-72:focus{
    margin-top: 18rem;
  }

  .mobile\:focus\:mt-80:focus{
    margin-top: 20rem;
  }

  .mobile\:focus\:mt-96:focus{
    margin-top: 24rem;
  }

  .mobile\:focus\:mt-auto:focus{
    margin-top: auto;
  }

  .mobile\:focus\:mt-px:focus{
    margin-top: 1px;
  }

  .mobile\:focus\:mt-0\.5:focus{
    margin-top: 0.125rem;
  }

  .mobile\:focus\:mt-1\.5:focus{
    margin-top: 0.375rem;
  }

  .mobile\:focus\:mt-2\.5:focus{
    margin-top: 0.625rem;
  }

  .mobile\:focus\:mt-3\.5:focus{
    margin-top: 0.875rem;
  }

  .mobile\:focus\:-mt-0:focus{
    margin-top: 0px;
  }

  .mobile\:focus\:-mt-1:focus{
    margin-top: -0.25rem;
  }

  .mobile\:focus\:-mt-2:focus{
    margin-top: -0.5rem;
  }

  .mobile\:focus\:-mt-3:focus{
    margin-top: -0.75rem;
  }

  .mobile\:focus\:-mt-4:focus{
    margin-top: -1rem;
  }

  .mobile\:focus\:-mt-5:focus{
    margin-top: -1.25rem;
  }

  .mobile\:focus\:-mt-6:focus{
    margin-top: -1.5rem;
  }

  .mobile\:focus\:-mt-7:focus{
    margin-top: -1.75rem;
  }

  .mobile\:focus\:-mt-8:focus{
    margin-top: -2rem;
  }

  .mobile\:focus\:-mt-9:focus{
    margin-top: -2.25rem;
  }

  .mobile\:focus\:-mt-10:focus{
    margin-top: -2.5rem;
  }

  .mobile\:focus\:-mt-11:focus{
    margin-top: -2.75rem;
  }

  .mobile\:focus\:-mt-12:focus{
    margin-top: -3rem;
  }

  .mobile\:focus\:-mt-14:focus{
    margin-top: -3.5rem;
  }

  .mobile\:focus\:-mt-16:focus{
    margin-top: -4rem;
  }

  .mobile\:focus\:-mt-20:focus{
    margin-top: -5rem;
  }

  .mobile\:focus\:-mt-24:focus{
    margin-top: -6rem;
  }

  .mobile\:focus\:-mt-28:focus{
    margin-top: -7rem;
  }

  .mobile\:focus\:-mt-32:focus{
    margin-top: -8rem;
  }

  .mobile\:focus\:-mt-36:focus{
    margin-top: -9rem;
  }

  .mobile\:focus\:-mt-40:focus{
    margin-top: -10rem;
  }

  .mobile\:focus\:-mt-44:focus{
    margin-top: -11rem;
  }

  .mobile\:focus\:-mt-48:focus{
    margin-top: -12rem;
  }

  .mobile\:focus\:-mt-52:focus{
    margin-top: -13rem;
  }

  .mobile\:focus\:-mt-56:focus{
    margin-top: -14rem;
  }

  .mobile\:focus\:-mt-60:focus{
    margin-top: -15rem;
  }

  .mobile\:focus\:-mt-64:focus{
    margin-top: -16rem;
  }

  .mobile\:focus\:-mt-72:focus{
    margin-top: -18rem;
  }

  .mobile\:focus\:-mt-80:focus{
    margin-top: -20rem;
  }

  .mobile\:focus\:-mt-96:focus{
    margin-top: -24rem;
  }

  .mobile\:focus\:-mt-px:focus{
    margin-top: -1px;
  }

  .mobile\:focus\:-mt-0\.5:focus{
    margin-top: -0.125rem;
  }

  .mobile\:focus\:-mt-1\.5:focus{
    margin-top: -0.375rem;
  }

  .mobile\:focus\:-mt-2\.5:focus{
    margin-top: -0.625rem;
  }

  .mobile\:focus\:-mt-3\.5:focus{
    margin-top: -0.875rem;
  }

  .mobile\:focus\:mt-neg1:focus{
    margin-top: -.25rem;
  }

  .mobile\:focus\:mt-neg2:focus{
    margin-top: -.5rem;
  }

  .mobile\:focus\:mt-neg4:focus{
    margin-top: -1.0rem;
  }

  .mobile\:focus\:mt-neg6:focus{
    margin-top: -1.5rem;
  }

  .mobile\:focus\:mt-neg12:focus{
    margin-top: -3rem;
  }

  .mobile\:focus\:mt-neg20:focus{
    margin-top: -5rem;
  }

  .mobile\:focus\:mr-0:focus{
    margin-right: 0px;
  }

  .mobile\:focus\:mr-1:focus{
    margin-right: 0.25rem;
  }

  .mobile\:focus\:mr-2:focus{
    margin-right: 0.5rem;
  }

  .mobile\:focus\:mr-3:focus{
    margin-right: 0.75rem;
  }

  .mobile\:focus\:mr-4:focus{
    margin-right: 1rem;
  }

  .mobile\:focus\:mr-5:focus{
    margin-right: 1.25rem;
  }

  .mobile\:focus\:mr-6:focus{
    margin-right: 1.5rem;
  }

  .mobile\:focus\:mr-7:focus{
    margin-right: 1.75rem;
  }

  .mobile\:focus\:mr-8:focus{
    margin-right: 2rem;
  }

  .mobile\:focus\:mr-9:focus{
    margin-right: 2.25rem;
  }

  .mobile\:focus\:mr-10:focus{
    margin-right: 2.5rem;
  }

  .mobile\:focus\:mr-11:focus{
    margin-right: 2.75rem;
  }

  .mobile\:focus\:mr-12:focus{
    margin-right: 3rem;
  }

  .mobile\:focus\:mr-14:focus{
    margin-right: 3.5rem;
  }

  .mobile\:focus\:mr-16:focus{
    margin-right: 4rem;
  }

  .mobile\:focus\:mr-20:focus{
    margin-right: 5rem;
  }

  .mobile\:focus\:mr-24:focus{
    margin-right: 6rem;
  }

  .mobile\:focus\:mr-28:focus{
    margin-right: 7rem;
  }

  .mobile\:focus\:mr-32:focus{
    margin-right: 8rem;
  }

  .mobile\:focus\:mr-36:focus{
    margin-right: 9rem;
  }

  .mobile\:focus\:mr-40:focus{
    margin-right: 10rem;
  }

  .mobile\:focus\:mr-44:focus{
    margin-right: 11rem;
  }

  .mobile\:focus\:mr-48:focus{
    margin-right: 12rem;
  }

  .mobile\:focus\:mr-52:focus{
    margin-right: 13rem;
  }

  .mobile\:focus\:mr-56:focus{
    margin-right: 14rem;
  }

  .mobile\:focus\:mr-60:focus{
    margin-right: 15rem;
  }

  .mobile\:focus\:mr-64:focus{
    margin-right: 16rem;
  }

  .mobile\:focus\:mr-72:focus{
    margin-right: 18rem;
  }

  .mobile\:focus\:mr-80:focus{
    margin-right: 20rem;
  }

  .mobile\:focus\:mr-96:focus{
    margin-right: 24rem;
  }

  .mobile\:focus\:mr-auto:focus{
    margin-right: auto;
  }

  .mobile\:focus\:mr-px:focus{
    margin-right: 1px;
  }

  .mobile\:focus\:mr-0\.5:focus{
    margin-right: 0.125rem;
  }

  .mobile\:focus\:mr-1\.5:focus{
    margin-right: 0.375rem;
  }

  .mobile\:focus\:mr-2\.5:focus{
    margin-right: 0.625rem;
  }

  .mobile\:focus\:mr-3\.5:focus{
    margin-right: 0.875rem;
  }

  .mobile\:focus\:-mr-0:focus{
    margin-right: 0px;
  }

  .mobile\:focus\:-mr-1:focus{
    margin-right: -0.25rem;
  }

  .mobile\:focus\:-mr-2:focus{
    margin-right: -0.5rem;
  }

  .mobile\:focus\:-mr-3:focus{
    margin-right: -0.75rem;
  }

  .mobile\:focus\:-mr-4:focus{
    margin-right: -1rem;
  }

  .mobile\:focus\:-mr-5:focus{
    margin-right: -1.25rem;
  }

  .mobile\:focus\:-mr-6:focus{
    margin-right: -1.5rem;
  }

  .mobile\:focus\:-mr-7:focus{
    margin-right: -1.75rem;
  }

  .mobile\:focus\:-mr-8:focus{
    margin-right: -2rem;
  }

  .mobile\:focus\:-mr-9:focus{
    margin-right: -2.25rem;
  }

  .mobile\:focus\:-mr-10:focus{
    margin-right: -2.5rem;
  }

  .mobile\:focus\:-mr-11:focus{
    margin-right: -2.75rem;
  }

  .mobile\:focus\:-mr-12:focus{
    margin-right: -3rem;
  }

  .mobile\:focus\:-mr-14:focus{
    margin-right: -3.5rem;
  }

  .mobile\:focus\:-mr-16:focus{
    margin-right: -4rem;
  }

  .mobile\:focus\:-mr-20:focus{
    margin-right: -5rem;
  }

  .mobile\:focus\:-mr-24:focus{
    margin-right: -6rem;
  }

  .mobile\:focus\:-mr-28:focus{
    margin-right: -7rem;
  }

  .mobile\:focus\:-mr-32:focus{
    margin-right: -8rem;
  }

  .mobile\:focus\:-mr-36:focus{
    margin-right: -9rem;
  }

  .mobile\:focus\:-mr-40:focus{
    margin-right: -10rem;
  }

  .mobile\:focus\:-mr-44:focus{
    margin-right: -11rem;
  }

  .mobile\:focus\:-mr-48:focus{
    margin-right: -12rem;
  }

  .mobile\:focus\:-mr-52:focus{
    margin-right: -13rem;
  }

  .mobile\:focus\:-mr-56:focus{
    margin-right: -14rem;
  }

  .mobile\:focus\:-mr-60:focus{
    margin-right: -15rem;
  }

  .mobile\:focus\:-mr-64:focus{
    margin-right: -16rem;
  }

  .mobile\:focus\:-mr-72:focus{
    margin-right: -18rem;
  }

  .mobile\:focus\:-mr-80:focus{
    margin-right: -20rem;
  }

  .mobile\:focus\:-mr-96:focus{
    margin-right: -24rem;
  }

  .mobile\:focus\:-mr-px:focus{
    margin-right: -1px;
  }

  .mobile\:focus\:-mr-0\.5:focus{
    margin-right: -0.125rem;
  }

  .mobile\:focus\:-mr-1\.5:focus{
    margin-right: -0.375rem;
  }

  .mobile\:focus\:-mr-2\.5:focus{
    margin-right: -0.625rem;
  }

  .mobile\:focus\:-mr-3\.5:focus{
    margin-right: -0.875rem;
  }

  .mobile\:focus\:mr-neg1:focus{
    margin-right: -.25rem;
  }

  .mobile\:focus\:mr-neg2:focus{
    margin-right: -.5rem;
  }

  .mobile\:focus\:mr-neg4:focus{
    margin-right: -1.0rem;
  }

  .mobile\:focus\:mr-neg6:focus{
    margin-right: -1.5rem;
  }

  .mobile\:focus\:mr-neg12:focus{
    margin-right: -3rem;
  }

  .mobile\:focus\:mr-neg20:focus{
    margin-right: -5rem;
  }

  .mobile\:focus\:mb-0:focus{
    margin-bottom: 0px;
  }

  .mobile\:focus\:mb-1:focus{
    margin-bottom: 0.25rem;
  }

  .mobile\:focus\:mb-2:focus{
    margin-bottom: 0.5rem;
  }

  .mobile\:focus\:mb-3:focus{
    margin-bottom: 0.75rem;
  }

  .mobile\:focus\:mb-4:focus{
    margin-bottom: 1rem;
  }

  .mobile\:focus\:mb-5:focus{
    margin-bottom: 1.25rem;
  }

  .mobile\:focus\:mb-6:focus{
    margin-bottom: 1.5rem;
  }

  .mobile\:focus\:mb-7:focus{
    margin-bottom: 1.75rem;
  }

  .mobile\:focus\:mb-8:focus{
    margin-bottom: 2rem;
  }

  .mobile\:focus\:mb-9:focus{
    margin-bottom: 2.25rem;
  }

  .mobile\:focus\:mb-10:focus{
    margin-bottom: 2.5rem;
  }

  .mobile\:focus\:mb-11:focus{
    margin-bottom: 2.75rem;
  }

  .mobile\:focus\:mb-12:focus{
    margin-bottom: 3rem;
  }

  .mobile\:focus\:mb-14:focus{
    margin-bottom: 3.5rem;
  }

  .mobile\:focus\:mb-16:focus{
    margin-bottom: 4rem;
  }

  .mobile\:focus\:mb-20:focus{
    margin-bottom: 5rem;
  }

  .mobile\:focus\:mb-24:focus{
    margin-bottom: 6rem;
  }

  .mobile\:focus\:mb-28:focus{
    margin-bottom: 7rem;
  }

  .mobile\:focus\:mb-32:focus{
    margin-bottom: 8rem;
  }

  .mobile\:focus\:mb-36:focus{
    margin-bottom: 9rem;
  }

  .mobile\:focus\:mb-40:focus{
    margin-bottom: 10rem;
  }

  .mobile\:focus\:mb-44:focus{
    margin-bottom: 11rem;
  }

  .mobile\:focus\:mb-48:focus{
    margin-bottom: 12rem;
  }

  .mobile\:focus\:mb-52:focus{
    margin-bottom: 13rem;
  }

  .mobile\:focus\:mb-56:focus{
    margin-bottom: 14rem;
  }

  .mobile\:focus\:mb-60:focus{
    margin-bottom: 15rem;
  }

  .mobile\:focus\:mb-64:focus{
    margin-bottom: 16rem;
  }

  .mobile\:focus\:mb-72:focus{
    margin-bottom: 18rem;
  }

  .mobile\:focus\:mb-80:focus{
    margin-bottom: 20rem;
  }

  .mobile\:focus\:mb-96:focus{
    margin-bottom: 24rem;
  }

  .mobile\:focus\:mb-auto:focus{
    margin-bottom: auto;
  }

  .mobile\:focus\:mb-px:focus{
    margin-bottom: 1px;
  }

  .mobile\:focus\:mb-0\.5:focus{
    margin-bottom: 0.125rem;
  }

  .mobile\:focus\:mb-1\.5:focus{
    margin-bottom: 0.375rem;
  }

  .mobile\:focus\:mb-2\.5:focus{
    margin-bottom: 0.625rem;
  }

  .mobile\:focus\:mb-3\.5:focus{
    margin-bottom: 0.875rem;
  }

  .mobile\:focus\:-mb-0:focus{
    margin-bottom: 0px;
  }

  .mobile\:focus\:-mb-1:focus{
    margin-bottom: -0.25rem;
  }

  .mobile\:focus\:-mb-2:focus{
    margin-bottom: -0.5rem;
  }

  .mobile\:focus\:-mb-3:focus{
    margin-bottom: -0.75rem;
  }

  .mobile\:focus\:-mb-4:focus{
    margin-bottom: -1rem;
  }

  .mobile\:focus\:-mb-5:focus{
    margin-bottom: -1.25rem;
  }

  .mobile\:focus\:-mb-6:focus{
    margin-bottom: -1.5rem;
  }

  .mobile\:focus\:-mb-7:focus{
    margin-bottom: -1.75rem;
  }

  .mobile\:focus\:-mb-8:focus{
    margin-bottom: -2rem;
  }

  .mobile\:focus\:-mb-9:focus{
    margin-bottom: -2.25rem;
  }

  .mobile\:focus\:-mb-10:focus{
    margin-bottom: -2.5rem;
  }

  .mobile\:focus\:-mb-11:focus{
    margin-bottom: -2.75rem;
  }

  .mobile\:focus\:-mb-12:focus{
    margin-bottom: -3rem;
  }

  .mobile\:focus\:-mb-14:focus{
    margin-bottom: -3.5rem;
  }

  .mobile\:focus\:-mb-16:focus{
    margin-bottom: -4rem;
  }

  .mobile\:focus\:-mb-20:focus{
    margin-bottom: -5rem;
  }

  .mobile\:focus\:-mb-24:focus{
    margin-bottom: -6rem;
  }

  .mobile\:focus\:-mb-28:focus{
    margin-bottom: -7rem;
  }

  .mobile\:focus\:-mb-32:focus{
    margin-bottom: -8rem;
  }

  .mobile\:focus\:-mb-36:focus{
    margin-bottom: -9rem;
  }

  .mobile\:focus\:-mb-40:focus{
    margin-bottom: -10rem;
  }

  .mobile\:focus\:-mb-44:focus{
    margin-bottom: -11rem;
  }

  .mobile\:focus\:-mb-48:focus{
    margin-bottom: -12rem;
  }

  .mobile\:focus\:-mb-52:focus{
    margin-bottom: -13rem;
  }

  .mobile\:focus\:-mb-56:focus{
    margin-bottom: -14rem;
  }

  .mobile\:focus\:-mb-60:focus{
    margin-bottom: -15rem;
  }

  .mobile\:focus\:-mb-64:focus{
    margin-bottom: -16rem;
  }

  .mobile\:focus\:-mb-72:focus{
    margin-bottom: -18rem;
  }

  .mobile\:focus\:-mb-80:focus{
    margin-bottom: -20rem;
  }

  .mobile\:focus\:-mb-96:focus{
    margin-bottom: -24rem;
  }

  .mobile\:focus\:-mb-px:focus{
    margin-bottom: -1px;
  }

  .mobile\:focus\:-mb-0\.5:focus{
    margin-bottom: -0.125rem;
  }

  .mobile\:focus\:-mb-1\.5:focus{
    margin-bottom: -0.375rem;
  }

  .mobile\:focus\:-mb-2\.5:focus{
    margin-bottom: -0.625rem;
  }

  .mobile\:focus\:-mb-3\.5:focus{
    margin-bottom: -0.875rem;
  }

  .mobile\:focus\:mb-neg1:focus{
    margin-bottom: -.25rem;
  }

  .mobile\:focus\:mb-neg2:focus{
    margin-bottom: -.5rem;
  }

  .mobile\:focus\:mb-neg4:focus{
    margin-bottom: -1.0rem;
  }

  .mobile\:focus\:mb-neg6:focus{
    margin-bottom: -1.5rem;
  }

  .mobile\:focus\:mb-neg12:focus{
    margin-bottom: -3rem;
  }

  .mobile\:focus\:mb-neg20:focus{
    margin-bottom: -5rem;
  }

  .mobile\:focus\:ml-0:focus{
    margin-left: 0px;
  }

  .mobile\:focus\:ml-1:focus{
    margin-left: 0.25rem;
  }

  .mobile\:focus\:ml-2:focus{
    margin-left: 0.5rem;
  }

  .mobile\:focus\:ml-3:focus{
    margin-left: 0.75rem;
  }

  .mobile\:focus\:ml-4:focus{
    margin-left: 1rem;
  }

  .mobile\:focus\:ml-5:focus{
    margin-left: 1.25rem;
  }

  .mobile\:focus\:ml-6:focus{
    margin-left: 1.5rem;
  }

  .mobile\:focus\:ml-7:focus{
    margin-left: 1.75rem;
  }

  .mobile\:focus\:ml-8:focus{
    margin-left: 2rem;
  }

  .mobile\:focus\:ml-9:focus{
    margin-left: 2.25rem;
  }

  .mobile\:focus\:ml-10:focus{
    margin-left: 2.5rem;
  }

  .mobile\:focus\:ml-11:focus{
    margin-left: 2.75rem;
  }

  .mobile\:focus\:ml-12:focus{
    margin-left: 3rem;
  }

  .mobile\:focus\:ml-14:focus{
    margin-left: 3.5rem;
  }

  .mobile\:focus\:ml-16:focus{
    margin-left: 4rem;
  }

  .mobile\:focus\:ml-20:focus{
    margin-left: 5rem;
  }

  .mobile\:focus\:ml-24:focus{
    margin-left: 6rem;
  }

  .mobile\:focus\:ml-28:focus{
    margin-left: 7rem;
  }

  .mobile\:focus\:ml-32:focus{
    margin-left: 8rem;
  }

  .mobile\:focus\:ml-36:focus{
    margin-left: 9rem;
  }

  .mobile\:focus\:ml-40:focus{
    margin-left: 10rem;
  }

  .mobile\:focus\:ml-44:focus{
    margin-left: 11rem;
  }

  .mobile\:focus\:ml-48:focus{
    margin-left: 12rem;
  }

  .mobile\:focus\:ml-52:focus{
    margin-left: 13rem;
  }

  .mobile\:focus\:ml-56:focus{
    margin-left: 14rem;
  }

  .mobile\:focus\:ml-60:focus{
    margin-left: 15rem;
  }

  .mobile\:focus\:ml-64:focus{
    margin-left: 16rem;
  }

  .mobile\:focus\:ml-72:focus{
    margin-left: 18rem;
  }

  .mobile\:focus\:ml-80:focus{
    margin-left: 20rem;
  }

  .mobile\:focus\:ml-96:focus{
    margin-left: 24rem;
  }

  .mobile\:focus\:ml-auto:focus{
    margin-left: auto;
  }

  .mobile\:focus\:ml-px:focus{
    margin-left: 1px;
  }

  .mobile\:focus\:ml-0\.5:focus{
    margin-left: 0.125rem;
  }

  .mobile\:focus\:ml-1\.5:focus{
    margin-left: 0.375rem;
  }

  .mobile\:focus\:ml-2\.5:focus{
    margin-left: 0.625rem;
  }

  .mobile\:focus\:ml-3\.5:focus{
    margin-left: 0.875rem;
  }

  .mobile\:focus\:-ml-0:focus{
    margin-left: 0px;
  }

  .mobile\:focus\:-ml-1:focus{
    margin-left: -0.25rem;
  }

  .mobile\:focus\:-ml-2:focus{
    margin-left: -0.5rem;
  }

  .mobile\:focus\:-ml-3:focus{
    margin-left: -0.75rem;
  }

  .mobile\:focus\:-ml-4:focus{
    margin-left: -1rem;
  }

  .mobile\:focus\:-ml-5:focus{
    margin-left: -1.25rem;
  }

  .mobile\:focus\:-ml-6:focus{
    margin-left: -1.5rem;
  }

  .mobile\:focus\:-ml-7:focus{
    margin-left: -1.75rem;
  }

  .mobile\:focus\:-ml-8:focus{
    margin-left: -2rem;
  }

  .mobile\:focus\:-ml-9:focus{
    margin-left: -2.25rem;
  }

  .mobile\:focus\:-ml-10:focus{
    margin-left: -2.5rem;
  }

  .mobile\:focus\:-ml-11:focus{
    margin-left: -2.75rem;
  }

  .mobile\:focus\:-ml-12:focus{
    margin-left: -3rem;
  }

  .mobile\:focus\:-ml-14:focus{
    margin-left: -3.5rem;
  }

  .mobile\:focus\:-ml-16:focus{
    margin-left: -4rem;
  }

  .mobile\:focus\:-ml-20:focus{
    margin-left: -5rem;
  }

  .mobile\:focus\:-ml-24:focus{
    margin-left: -6rem;
  }

  .mobile\:focus\:-ml-28:focus{
    margin-left: -7rem;
  }

  .mobile\:focus\:-ml-32:focus{
    margin-left: -8rem;
  }

  .mobile\:focus\:-ml-36:focus{
    margin-left: -9rem;
  }

  .mobile\:focus\:-ml-40:focus{
    margin-left: -10rem;
  }

  .mobile\:focus\:-ml-44:focus{
    margin-left: -11rem;
  }

  .mobile\:focus\:-ml-48:focus{
    margin-left: -12rem;
  }

  .mobile\:focus\:-ml-52:focus{
    margin-left: -13rem;
  }

  .mobile\:focus\:-ml-56:focus{
    margin-left: -14rem;
  }

  .mobile\:focus\:-ml-60:focus{
    margin-left: -15rem;
  }

  .mobile\:focus\:-ml-64:focus{
    margin-left: -16rem;
  }

  .mobile\:focus\:-ml-72:focus{
    margin-left: -18rem;
  }

  .mobile\:focus\:-ml-80:focus{
    margin-left: -20rem;
  }

  .mobile\:focus\:-ml-96:focus{
    margin-left: -24rem;
  }

  .mobile\:focus\:-ml-px:focus{
    margin-left: -1px;
  }

  .mobile\:focus\:-ml-0\.5:focus{
    margin-left: -0.125rem;
  }

  .mobile\:focus\:-ml-1\.5:focus{
    margin-left: -0.375rem;
  }

  .mobile\:focus\:-ml-2\.5:focus{
    margin-left: -0.625rem;
  }

  .mobile\:focus\:-ml-3\.5:focus{
    margin-left: -0.875rem;
  }

  .mobile\:focus\:ml-neg1:focus{
    margin-left: -.25rem;
  }

  .mobile\:focus\:ml-neg2:focus{
    margin-left: -.5rem;
  }

  .mobile\:focus\:ml-neg4:focus{
    margin-left: -1.0rem;
  }

  .mobile\:focus\:ml-neg6:focus{
    margin-left: -1.5rem;
  }

  .mobile\:focus\:ml-neg12:focus{
    margin-left: -3rem;
  }

  .mobile\:focus\:ml-neg20:focus{
    margin-left: -5rem;
  }

  .mobile\:first\:mt-0:first-child{
    margin-top: 0px;
  }

  .mobile\:first\:mt-1:first-child{
    margin-top: 0.25rem;
  }

  .mobile\:first\:mt-2:first-child{
    margin-top: 0.5rem;
  }

  .mobile\:first\:mt-3:first-child{
    margin-top: 0.75rem;
  }

  .mobile\:first\:mt-4:first-child{
    margin-top: 1rem;
  }

  .mobile\:first\:mt-5:first-child{
    margin-top: 1.25rem;
  }

  .mobile\:first\:mt-6:first-child{
    margin-top: 1.5rem;
  }

  .mobile\:first\:mt-7:first-child{
    margin-top: 1.75rem;
  }

  .mobile\:first\:mt-8:first-child{
    margin-top: 2rem;
  }

  .mobile\:first\:mt-9:first-child{
    margin-top: 2.25rem;
  }

  .mobile\:first\:mt-10:first-child{
    margin-top: 2.5rem;
  }

  .mobile\:first\:mt-11:first-child{
    margin-top: 2.75rem;
  }

  .mobile\:first\:mt-12:first-child{
    margin-top: 3rem;
  }

  .mobile\:first\:mt-14:first-child{
    margin-top: 3.5rem;
  }

  .mobile\:first\:mt-16:first-child{
    margin-top: 4rem;
  }

  .mobile\:first\:mt-20:first-child{
    margin-top: 5rem;
  }

  .mobile\:first\:mt-24:first-child{
    margin-top: 6rem;
  }

  .mobile\:first\:mt-28:first-child{
    margin-top: 7rem;
  }

  .mobile\:first\:mt-32:first-child{
    margin-top: 8rem;
  }

  .mobile\:first\:mt-36:first-child{
    margin-top: 9rem;
  }

  .mobile\:first\:mt-40:first-child{
    margin-top: 10rem;
  }

  .mobile\:first\:mt-44:first-child{
    margin-top: 11rem;
  }

  .mobile\:first\:mt-48:first-child{
    margin-top: 12rem;
  }

  .mobile\:first\:mt-52:first-child{
    margin-top: 13rem;
  }

  .mobile\:first\:mt-56:first-child{
    margin-top: 14rem;
  }

  .mobile\:first\:mt-60:first-child{
    margin-top: 15rem;
  }

  .mobile\:first\:mt-64:first-child{
    margin-top: 16rem;
  }

  .mobile\:first\:mt-72:first-child{
    margin-top: 18rem;
  }

  .mobile\:first\:mt-80:first-child{
    margin-top: 20rem;
  }

  .mobile\:first\:mt-96:first-child{
    margin-top: 24rem;
  }

  .mobile\:first\:mt-auto:first-child{
    margin-top: auto;
  }

  .mobile\:first\:mt-px:first-child{
    margin-top: 1px;
  }

  .mobile\:first\:mt-0\.5:first-child{
    margin-top: 0.125rem;
  }

  .mobile\:first\:mt-1\.5:first-child{
    margin-top: 0.375rem;
  }

  .mobile\:first\:mt-2\.5:first-child{
    margin-top: 0.625rem;
  }

  .mobile\:first\:mt-3\.5:first-child{
    margin-top: 0.875rem;
  }

  .mobile\:first\:-mt-0:first-child{
    margin-top: 0px;
  }

  .mobile\:first\:-mt-1:first-child{
    margin-top: -0.25rem;
  }

  .mobile\:first\:-mt-2:first-child{
    margin-top: -0.5rem;
  }

  .mobile\:first\:-mt-3:first-child{
    margin-top: -0.75rem;
  }

  .mobile\:first\:-mt-4:first-child{
    margin-top: -1rem;
  }

  .mobile\:first\:-mt-5:first-child{
    margin-top: -1.25rem;
  }

  .mobile\:first\:-mt-6:first-child{
    margin-top: -1.5rem;
  }

  .mobile\:first\:-mt-7:first-child{
    margin-top: -1.75rem;
  }

  .mobile\:first\:-mt-8:first-child{
    margin-top: -2rem;
  }

  .mobile\:first\:-mt-9:first-child{
    margin-top: -2.25rem;
  }

  .mobile\:first\:-mt-10:first-child{
    margin-top: -2.5rem;
  }

  .mobile\:first\:-mt-11:first-child{
    margin-top: -2.75rem;
  }

  .mobile\:first\:-mt-12:first-child{
    margin-top: -3rem;
  }

  .mobile\:first\:-mt-14:first-child{
    margin-top: -3.5rem;
  }

  .mobile\:first\:-mt-16:first-child{
    margin-top: -4rem;
  }

  .mobile\:first\:-mt-20:first-child{
    margin-top: -5rem;
  }

  .mobile\:first\:-mt-24:first-child{
    margin-top: -6rem;
  }

  .mobile\:first\:-mt-28:first-child{
    margin-top: -7rem;
  }

  .mobile\:first\:-mt-32:first-child{
    margin-top: -8rem;
  }

  .mobile\:first\:-mt-36:first-child{
    margin-top: -9rem;
  }

  .mobile\:first\:-mt-40:first-child{
    margin-top: -10rem;
  }

  .mobile\:first\:-mt-44:first-child{
    margin-top: -11rem;
  }

  .mobile\:first\:-mt-48:first-child{
    margin-top: -12rem;
  }

  .mobile\:first\:-mt-52:first-child{
    margin-top: -13rem;
  }

  .mobile\:first\:-mt-56:first-child{
    margin-top: -14rem;
  }

  .mobile\:first\:-mt-60:first-child{
    margin-top: -15rem;
  }

  .mobile\:first\:-mt-64:first-child{
    margin-top: -16rem;
  }

  .mobile\:first\:-mt-72:first-child{
    margin-top: -18rem;
  }

  .mobile\:first\:-mt-80:first-child{
    margin-top: -20rem;
  }

  .mobile\:first\:-mt-96:first-child{
    margin-top: -24rem;
  }

  .mobile\:first\:-mt-px:first-child{
    margin-top: -1px;
  }

  .mobile\:first\:-mt-0\.5:first-child{
    margin-top: -0.125rem;
  }

  .mobile\:first\:-mt-1\.5:first-child{
    margin-top: -0.375rem;
  }

  .mobile\:first\:-mt-2\.5:first-child{
    margin-top: -0.625rem;
  }

  .mobile\:first\:-mt-3\.5:first-child{
    margin-top: -0.875rem;
  }

  .mobile\:first\:mt-neg1:first-child{
    margin-top: -.25rem;
  }

  .mobile\:first\:mt-neg2:first-child{
    margin-top: -.5rem;
  }

  .mobile\:first\:mt-neg4:first-child{
    margin-top: -1.0rem;
  }

  .mobile\:first\:mt-neg6:first-child{
    margin-top: -1.5rem;
  }

  .mobile\:first\:mt-neg12:first-child{
    margin-top: -3rem;
  }

  .mobile\:first\:mt-neg20:first-child{
    margin-top: -5rem;
  }

  .mobile\:first\:mr-0:first-child{
    margin-right: 0px;
  }

  .mobile\:first\:mr-1:first-child{
    margin-right: 0.25rem;
  }

  .mobile\:first\:mr-2:first-child{
    margin-right: 0.5rem;
  }

  .mobile\:first\:mr-3:first-child{
    margin-right: 0.75rem;
  }

  .mobile\:first\:mr-4:first-child{
    margin-right: 1rem;
  }

  .mobile\:first\:mr-5:first-child{
    margin-right: 1.25rem;
  }

  .mobile\:first\:mr-6:first-child{
    margin-right: 1.5rem;
  }

  .mobile\:first\:mr-7:first-child{
    margin-right: 1.75rem;
  }

  .mobile\:first\:mr-8:first-child{
    margin-right: 2rem;
  }

  .mobile\:first\:mr-9:first-child{
    margin-right: 2.25rem;
  }

  .mobile\:first\:mr-10:first-child{
    margin-right: 2.5rem;
  }

  .mobile\:first\:mr-11:first-child{
    margin-right: 2.75rem;
  }

  .mobile\:first\:mr-12:first-child{
    margin-right: 3rem;
  }

  .mobile\:first\:mr-14:first-child{
    margin-right: 3.5rem;
  }

  .mobile\:first\:mr-16:first-child{
    margin-right: 4rem;
  }

  .mobile\:first\:mr-20:first-child{
    margin-right: 5rem;
  }

  .mobile\:first\:mr-24:first-child{
    margin-right: 6rem;
  }

  .mobile\:first\:mr-28:first-child{
    margin-right: 7rem;
  }

  .mobile\:first\:mr-32:first-child{
    margin-right: 8rem;
  }

  .mobile\:first\:mr-36:first-child{
    margin-right: 9rem;
  }

  .mobile\:first\:mr-40:first-child{
    margin-right: 10rem;
  }

  .mobile\:first\:mr-44:first-child{
    margin-right: 11rem;
  }

  .mobile\:first\:mr-48:first-child{
    margin-right: 12rem;
  }

  .mobile\:first\:mr-52:first-child{
    margin-right: 13rem;
  }

  .mobile\:first\:mr-56:first-child{
    margin-right: 14rem;
  }

  .mobile\:first\:mr-60:first-child{
    margin-right: 15rem;
  }

  .mobile\:first\:mr-64:first-child{
    margin-right: 16rem;
  }

  .mobile\:first\:mr-72:first-child{
    margin-right: 18rem;
  }

  .mobile\:first\:mr-80:first-child{
    margin-right: 20rem;
  }

  .mobile\:first\:mr-96:first-child{
    margin-right: 24rem;
  }

  .mobile\:first\:mr-auto:first-child{
    margin-right: auto;
  }

  .mobile\:first\:mr-px:first-child{
    margin-right: 1px;
  }

  .mobile\:first\:mr-0\.5:first-child{
    margin-right: 0.125rem;
  }

  .mobile\:first\:mr-1\.5:first-child{
    margin-right: 0.375rem;
  }

  .mobile\:first\:mr-2\.5:first-child{
    margin-right: 0.625rem;
  }

  .mobile\:first\:mr-3\.5:first-child{
    margin-right: 0.875rem;
  }

  .mobile\:first\:-mr-0:first-child{
    margin-right: 0px;
  }

  .mobile\:first\:-mr-1:first-child{
    margin-right: -0.25rem;
  }

  .mobile\:first\:-mr-2:first-child{
    margin-right: -0.5rem;
  }

  .mobile\:first\:-mr-3:first-child{
    margin-right: -0.75rem;
  }

  .mobile\:first\:-mr-4:first-child{
    margin-right: -1rem;
  }

  .mobile\:first\:-mr-5:first-child{
    margin-right: -1.25rem;
  }

  .mobile\:first\:-mr-6:first-child{
    margin-right: -1.5rem;
  }

  .mobile\:first\:-mr-7:first-child{
    margin-right: -1.75rem;
  }

  .mobile\:first\:-mr-8:first-child{
    margin-right: -2rem;
  }

  .mobile\:first\:-mr-9:first-child{
    margin-right: -2.25rem;
  }

  .mobile\:first\:-mr-10:first-child{
    margin-right: -2.5rem;
  }

  .mobile\:first\:-mr-11:first-child{
    margin-right: -2.75rem;
  }

  .mobile\:first\:-mr-12:first-child{
    margin-right: -3rem;
  }

  .mobile\:first\:-mr-14:first-child{
    margin-right: -3.5rem;
  }

  .mobile\:first\:-mr-16:first-child{
    margin-right: -4rem;
  }

  .mobile\:first\:-mr-20:first-child{
    margin-right: -5rem;
  }

  .mobile\:first\:-mr-24:first-child{
    margin-right: -6rem;
  }

  .mobile\:first\:-mr-28:first-child{
    margin-right: -7rem;
  }

  .mobile\:first\:-mr-32:first-child{
    margin-right: -8rem;
  }

  .mobile\:first\:-mr-36:first-child{
    margin-right: -9rem;
  }

  .mobile\:first\:-mr-40:first-child{
    margin-right: -10rem;
  }

  .mobile\:first\:-mr-44:first-child{
    margin-right: -11rem;
  }

  .mobile\:first\:-mr-48:first-child{
    margin-right: -12rem;
  }

  .mobile\:first\:-mr-52:first-child{
    margin-right: -13rem;
  }

  .mobile\:first\:-mr-56:first-child{
    margin-right: -14rem;
  }

  .mobile\:first\:-mr-60:first-child{
    margin-right: -15rem;
  }

  .mobile\:first\:-mr-64:first-child{
    margin-right: -16rem;
  }

  .mobile\:first\:-mr-72:first-child{
    margin-right: -18rem;
  }

  .mobile\:first\:-mr-80:first-child{
    margin-right: -20rem;
  }

  .mobile\:first\:-mr-96:first-child{
    margin-right: -24rem;
  }

  .mobile\:first\:-mr-px:first-child{
    margin-right: -1px;
  }

  .mobile\:first\:-mr-0\.5:first-child{
    margin-right: -0.125rem;
  }

  .mobile\:first\:-mr-1\.5:first-child{
    margin-right: -0.375rem;
  }

  .mobile\:first\:-mr-2\.5:first-child{
    margin-right: -0.625rem;
  }

  .mobile\:first\:-mr-3\.5:first-child{
    margin-right: -0.875rem;
  }

  .mobile\:first\:mr-neg1:first-child{
    margin-right: -.25rem;
  }

  .mobile\:first\:mr-neg2:first-child{
    margin-right: -.5rem;
  }

  .mobile\:first\:mr-neg4:first-child{
    margin-right: -1.0rem;
  }

  .mobile\:first\:mr-neg6:first-child{
    margin-right: -1.5rem;
  }

  .mobile\:first\:mr-neg12:first-child{
    margin-right: -3rem;
  }

  .mobile\:first\:mr-neg20:first-child{
    margin-right: -5rem;
  }

  .mobile\:first\:mb-0:first-child{
    margin-bottom: 0px;
  }

  .mobile\:first\:mb-1:first-child{
    margin-bottom: 0.25rem;
  }

  .mobile\:first\:mb-2:first-child{
    margin-bottom: 0.5rem;
  }

  .mobile\:first\:mb-3:first-child{
    margin-bottom: 0.75rem;
  }

  .mobile\:first\:mb-4:first-child{
    margin-bottom: 1rem;
  }

  .mobile\:first\:mb-5:first-child{
    margin-bottom: 1.25rem;
  }

  .mobile\:first\:mb-6:first-child{
    margin-bottom: 1.5rem;
  }

  .mobile\:first\:mb-7:first-child{
    margin-bottom: 1.75rem;
  }

  .mobile\:first\:mb-8:first-child{
    margin-bottom: 2rem;
  }

  .mobile\:first\:mb-9:first-child{
    margin-bottom: 2.25rem;
  }

  .mobile\:first\:mb-10:first-child{
    margin-bottom: 2.5rem;
  }

  .mobile\:first\:mb-11:first-child{
    margin-bottom: 2.75rem;
  }

  .mobile\:first\:mb-12:first-child{
    margin-bottom: 3rem;
  }

  .mobile\:first\:mb-14:first-child{
    margin-bottom: 3.5rem;
  }

  .mobile\:first\:mb-16:first-child{
    margin-bottom: 4rem;
  }

  .mobile\:first\:mb-20:first-child{
    margin-bottom: 5rem;
  }

  .mobile\:first\:mb-24:first-child{
    margin-bottom: 6rem;
  }

  .mobile\:first\:mb-28:first-child{
    margin-bottom: 7rem;
  }

  .mobile\:first\:mb-32:first-child{
    margin-bottom: 8rem;
  }

  .mobile\:first\:mb-36:first-child{
    margin-bottom: 9rem;
  }

  .mobile\:first\:mb-40:first-child{
    margin-bottom: 10rem;
  }

  .mobile\:first\:mb-44:first-child{
    margin-bottom: 11rem;
  }

  .mobile\:first\:mb-48:first-child{
    margin-bottom: 12rem;
  }

  .mobile\:first\:mb-52:first-child{
    margin-bottom: 13rem;
  }

  .mobile\:first\:mb-56:first-child{
    margin-bottom: 14rem;
  }

  .mobile\:first\:mb-60:first-child{
    margin-bottom: 15rem;
  }

  .mobile\:first\:mb-64:first-child{
    margin-bottom: 16rem;
  }

  .mobile\:first\:mb-72:first-child{
    margin-bottom: 18rem;
  }

  .mobile\:first\:mb-80:first-child{
    margin-bottom: 20rem;
  }

  .mobile\:first\:mb-96:first-child{
    margin-bottom: 24rem;
  }

  .mobile\:first\:mb-auto:first-child{
    margin-bottom: auto;
  }

  .mobile\:first\:mb-px:first-child{
    margin-bottom: 1px;
  }

  .mobile\:first\:mb-0\.5:first-child{
    margin-bottom: 0.125rem;
  }

  .mobile\:first\:mb-1\.5:first-child{
    margin-bottom: 0.375rem;
  }

  .mobile\:first\:mb-2\.5:first-child{
    margin-bottom: 0.625rem;
  }

  .mobile\:first\:mb-3\.5:first-child{
    margin-bottom: 0.875rem;
  }

  .mobile\:first\:-mb-0:first-child{
    margin-bottom: 0px;
  }

  .mobile\:first\:-mb-1:first-child{
    margin-bottom: -0.25rem;
  }

  .mobile\:first\:-mb-2:first-child{
    margin-bottom: -0.5rem;
  }

  .mobile\:first\:-mb-3:first-child{
    margin-bottom: -0.75rem;
  }

  .mobile\:first\:-mb-4:first-child{
    margin-bottom: -1rem;
  }

  .mobile\:first\:-mb-5:first-child{
    margin-bottom: -1.25rem;
  }

  .mobile\:first\:-mb-6:first-child{
    margin-bottom: -1.5rem;
  }

  .mobile\:first\:-mb-7:first-child{
    margin-bottom: -1.75rem;
  }

  .mobile\:first\:-mb-8:first-child{
    margin-bottom: -2rem;
  }

  .mobile\:first\:-mb-9:first-child{
    margin-bottom: -2.25rem;
  }

  .mobile\:first\:-mb-10:first-child{
    margin-bottom: -2.5rem;
  }

  .mobile\:first\:-mb-11:first-child{
    margin-bottom: -2.75rem;
  }

  .mobile\:first\:-mb-12:first-child{
    margin-bottom: -3rem;
  }

  .mobile\:first\:-mb-14:first-child{
    margin-bottom: -3.5rem;
  }

  .mobile\:first\:-mb-16:first-child{
    margin-bottom: -4rem;
  }

  .mobile\:first\:-mb-20:first-child{
    margin-bottom: -5rem;
  }

  .mobile\:first\:-mb-24:first-child{
    margin-bottom: -6rem;
  }

  .mobile\:first\:-mb-28:first-child{
    margin-bottom: -7rem;
  }

  .mobile\:first\:-mb-32:first-child{
    margin-bottom: -8rem;
  }

  .mobile\:first\:-mb-36:first-child{
    margin-bottom: -9rem;
  }

  .mobile\:first\:-mb-40:first-child{
    margin-bottom: -10rem;
  }

  .mobile\:first\:-mb-44:first-child{
    margin-bottom: -11rem;
  }

  .mobile\:first\:-mb-48:first-child{
    margin-bottom: -12rem;
  }

  .mobile\:first\:-mb-52:first-child{
    margin-bottom: -13rem;
  }

  .mobile\:first\:-mb-56:first-child{
    margin-bottom: -14rem;
  }

  .mobile\:first\:-mb-60:first-child{
    margin-bottom: -15rem;
  }

  .mobile\:first\:-mb-64:first-child{
    margin-bottom: -16rem;
  }

  .mobile\:first\:-mb-72:first-child{
    margin-bottom: -18rem;
  }

  .mobile\:first\:-mb-80:first-child{
    margin-bottom: -20rem;
  }

  .mobile\:first\:-mb-96:first-child{
    margin-bottom: -24rem;
  }

  .mobile\:first\:-mb-px:first-child{
    margin-bottom: -1px;
  }

  .mobile\:first\:-mb-0\.5:first-child{
    margin-bottom: -0.125rem;
  }

  .mobile\:first\:-mb-1\.5:first-child{
    margin-bottom: -0.375rem;
  }

  .mobile\:first\:-mb-2\.5:first-child{
    margin-bottom: -0.625rem;
  }

  .mobile\:first\:-mb-3\.5:first-child{
    margin-bottom: -0.875rem;
  }

  .mobile\:first\:mb-neg1:first-child{
    margin-bottom: -.25rem;
  }

  .mobile\:first\:mb-neg2:first-child{
    margin-bottom: -.5rem;
  }

  .mobile\:first\:mb-neg4:first-child{
    margin-bottom: -1.0rem;
  }

  .mobile\:first\:mb-neg6:first-child{
    margin-bottom: -1.5rem;
  }

  .mobile\:first\:mb-neg12:first-child{
    margin-bottom: -3rem;
  }

  .mobile\:first\:mb-neg20:first-child{
    margin-bottom: -5rem;
  }

  .mobile\:first\:ml-0:first-child{
    margin-left: 0px;
  }

  .mobile\:first\:ml-1:first-child{
    margin-left: 0.25rem;
  }

  .mobile\:first\:ml-2:first-child{
    margin-left: 0.5rem;
  }

  .mobile\:first\:ml-3:first-child{
    margin-left: 0.75rem;
  }

  .mobile\:first\:ml-4:first-child{
    margin-left: 1rem;
  }

  .mobile\:first\:ml-5:first-child{
    margin-left: 1.25rem;
  }

  .mobile\:first\:ml-6:first-child{
    margin-left: 1.5rem;
  }

  .mobile\:first\:ml-7:first-child{
    margin-left: 1.75rem;
  }

  .mobile\:first\:ml-8:first-child{
    margin-left: 2rem;
  }

  .mobile\:first\:ml-9:first-child{
    margin-left: 2.25rem;
  }

  .mobile\:first\:ml-10:first-child{
    margin-left: 2.5rem;
  }

  .mobile\:first\:ml-11:first-child{
    margin-left: 2.75rem;
  }

  .mobile\:first\:ml-12:first-child{
    margin-left: 3rem;
  }

  .mobile\:first\:ml-14:first-child{
    margin-left: 3.5rem;
  }

  .mobile\:first\:ml-16:first-child{
    margin-left: 4rem;
  }

  .mobile\:first\:ml-20:first-child{
    margin-left: 5rem;
  }

  .mobile\:first\:ml-24:first-child{
    margin-left: 6rem;
  }

  .mobile\:first\:ml-28:first-child{
    margin-left: 7rem;
  }

  .mobile\:first\:ml-32:first-child{
    margin-left: 8rem;
  }

  .mobile\:first\:ml-36:first-child{
    margin-left: 9rem;
  }

  .mobile\:first\:ml-40:first-child{
    margin-left: 10rem;
  }

  .mobile\:first\:ml-44:first-child{
    margin-left: 11rem;
  }

  .mobile\:first\:ml-48:first-child{
    margin-left: 12rem;
  }

  .mobile\:first\:ml-52:first-child{
    margin-left: 13rem;
  }

  .mobile\:first\:ml-56:first-child{
    margin-left: 14rem;
  }

  .mobile\:first\:ml-60:first-child{
    margin-left: 15rem;
  }

  .mobile\:first\:ml-64:first-child{
    margin-left: 16rem;
  }

  .mobile\:first\:ml-72:first-child{
    margin-left: 18rem;
  }

  .mobile\:first\:ml-80:first-child{
    margin-left: 20rem;
  }

  .mobile\:first\:ml-96:first-child{
    margin-left: 24rem;
  }

  .mobile\:first\:ml-auto:first-child{
    margin-left: auto;
  }

  .mobile\:first\:ml-px:first-child{
    margin-left: 1px;
  }

  .mobile\:first\:ml-0\.5:first-child{
    margin-left: 0.125rem;
  }

  .mobile\:first\:ml-1\.5:first-child{
    margin-left: 0.375rem;
  }

  .mobile\:first\:ml-2\.5:first-child{
    margin-left: 0.625rem;
  }

  .mobile\:first\:ml-3\.5:first-child{
    margin-left: 0.875rem;
  }

  .mobile\:first\:-ml-0:first-child{
    margin-left: 0px;
  }

  .mobile\:first\:-ml-1:first-child{
    margin-left: -0.25rem;
  }

  .mobile\:first\:-ml-2:first-child{
    margin-left: -0.5rem;
  }

  .mobile\:first\:-ml-3:first-child{
    margin-left: -0.75rem;
  }

  .mobile\:first\:-ml-4:first-child{
    margin-left: -1rem;
  }

  .mobile\:first\:-ml-5:first-child{
    margin-left: -1.25rem;
  }

  .mobile\:first\:-ml-6:first-child{
    margin-left: -1.5rem;
  }

  .mobile\:first\:-ml-7:first-child{
    margin-left: -1.75rem;
  }

  .mobile\:first\:-ml-8:first-child{
    margin-left: -2rem;
  }

  .mobile\:first\:-ml-9:first-child{
    margin-left: -2.25rem;
  }

  .mobile\:first\:-ml-10:first-child{
    margin-left: -2.5rem;
  }

  .mobile\:first\:-ml-11:first-child{
    margin-left: -2.75rem;
  }

  .mobile\:first\:-ml-12:first-child{
    margin-left: -3rem;
  }

  .mobile\:first\:-ml-14:first-child{
    margin-left: -3.5rem;
  }

  .mobile\:first\:-ml-16:first-child{
    margin-left: -4rem;
  }

  .mobile\:first\:-ml-20:first-child{
    margin-left: -5rem;
  }

  .mobile\:first\:-ml-24:first-child{
    margin-left: -6rem;
  }

  .mobile\:first\:-ml-28:first-child{
    margin-left: -7rem;
  }

  .mobile\:first\:-ml-32:first-child{
    margin-left: -8rem;
  }

  .mobile\:first\:-ml-36:first-child{
    margin-left: -9rem;
  }

  .mobile\:first\:-ml-40:first-child{
    margin-left: -10rem;
  }

  .mobile\:first\:-ml-44:first-child{
    margin-left: -11rem;
  }

  .mobile\:first\:-ml-48:first-child{
    margin-left: -12rem;
  }

  .mobile\:first\:-ml-52:first-child{
    margin-left: -13rem;
  }

  .mobile\:first\:-ml-56:first-child{
    margin-left: -14rem;
  }

  .mobile\:first\:-ml-60:first-child{
    margin-left: -15rem;
  }

  .mobile\:first\:-ml-64:first-child{
    margin-left: -16rem;
  }

  .mobile\:first\:-ml-72:first-child{
    margin-left: -18rem;
  }

  .mobile\:first\:-ml-80:first-child{
    margin-left: -20rem;
  }

  .mobile\:first\:-ml-96:first-child{
    margin-left: -24rem;
  }

  .mobile\:first\:-ml-px:first-child{
    margin-left: -1px;
  }

  .mobile\:first\:-ml-0\.5:first-child{
    margin-left: -0.125rem;
  }

  .mobile\:first\:-ml-1\.5:first-child{
    margin-left: -0.375rem;
  }

  .mobile\:first\:-ml-2\.5:first-child{
    margin-left: -0.625rem;
  }

  .mobile\:first\:-ml-3\.5:first-child{
    margin-left: -0.875rem;
  }

  .mobile\:first\:ml-neg1:first-child{
    margin-left: -.25rem;
  }

  .mobile\:first\:ml-neg2:first-child{
    margin-left: -.5rem;
  }

  .mobile\:first\:ml-neg4:first-child{
    margin-left: -1.0rem;
  }

  .mobile\:first\:ml-neg6:first-child{
    margin-left: -1.5rem;
  }

  .mobile\:first\:ml-neg12:first-child{
    margin-left: -3rem;
  }

  .mobile\:first\:ml-neg20:first-child{
    margin-left: -5rem;
  }

  .mobile\:last\:mt-0:last-child{
    margin-top: 0px;
  }

  .mobile\:last\:mt-1:last-child{
    margin-top: 0.25rem;
  }

  .mobile\:last\:mt-2:last-child{
    margin-top: 0.5rem;
  }

  .mobile\:last\:mt-3:last-child{
    margin-top: 0.75rem;
  }

  .mobile\:last\:mt-4:last-child{
    margin-top: 1rem;
  }

  .mobile\:last\:mt-5:last-child{
    margin-top: 1.25rem;
  }

  .mobile\:last\:mt-6:last-child{
    margin-top: 1.5rem;
  }

  .mobile\:last\:mt-7:last-child{
    margin-top: 1.75rem;
  }

  .mobile\:last\:mt-8:last-child{
    margin-top: 2rem;
  }

  .mobile\:last\:mt-9:last-child{
    margin-top: 2.25rem;
  }

  .mobile\:last\:mt-10:last-child{
    margin-top: 2.5rem;
  }

  .mobile\:last\:mt-11:last-child{
    margin-top: 2.75rem;
  }

  .mobile\:last\:mt-12:last-child{
    margin-top: 3rem;
  }

  .mobile\:last\:mt-14:last-child{
    margin-top: 3.5rem;
  }

  .mobile\:last\:mt-16:last-child{
    margin-top: 4rem;
  }

  .mobile\:last\:mt-20:last-child{
    margin-top: 5rem;
  }

  .mobile\:last\:mt-24:last-child{
    margin-top: 6rem;
  }

  .mobile\:last\:mt-28:last-child{
    margin-top: 7rem;
  }

  .mobile\:last\:mt-32:last-child{
    margin-top: 8rem;
  }

  .mobile\:last\:mt-36:last-child{
    margin-top: 9rem;
  }

  .mobile\:last\:mt-40:last-child{
    margin-top: 10rem;
  }

  .mobile\:last\:mt-44:last-child{
    margin-top: 11rem;
  }

  .mobile\:last\:mt-48:last-child{
    margin-top: 12rem;
  }

  .mobile\:last\:mt-52:last-child{
    margin-top: 13rem;
  }

  .mobile\:last\:mt-56:last-child{
    margin-top: 14rem;
  }

  .mobile\:last\:mt-60:last-child{
    margin-top: 15rem;
  }

  .mobile\:last\:mt-64:last-child{
    margin-top: 16rem;
  }

  .mobile\:last\:mt-72:last-child{
    margin-top: 18rem;
  }

  .mobile\:last\:mt-80:last-child{
    margin-top: 20rem;
  }

  .mobile\:last\:mt-96:last-child{
    margin-top: 24rem;
  }

  .mobile\:last\:mt-auto:last-child{
    margin-top: auto;
  }

  .mobile\:last\:mt-px:last-child{
    margin-top: 1px;
  }

  .mobile\:last\:mt-0\.5:last-child{
    margin-top: 0.125rem;
  }

  .mobile\:last\:mt-1\.5:last-child{
    margin-top: 0.375rem;
  }

  .mobile\:last\:mt-2\.5:last-child{
    margin-top: 0.625rem;
  }

  .mobile\:last\:mt-3\.5:last-child{
    margin-top: 0.875rem;
  }

  .mobile\:last\:-mt-0:last-child{
    margin-top: 0px;
  }

  .mobile\:last\:-mt-1:last-child{
    margin-top: -0.25rem;
  }

  .mobile\:last\:-mt-2:last-child{
    margin-top: -0.5rem;
  }

  .mobile\:last\:-mt-3:last-child{
    margin-top: -0.75rem;
  }

  .mobile\:last\:-mt-4:last-child{
    margin-top: -1rem;
  }

  .mobile\:last\:-mt-5:last-child{
    margin-top: -1.25rem;
  }

  .mobile\:last\:-mt-6:last-child{
    margin-top: -1.5rem;
  }

  .mobile\:last\:-mt-7:last-child{
    margin-top: -1.75rem;
  }

  .mobile\:last\:-mt-8:last-child{
    margin-top: -2rem;
  }

  .mobile\:last\:-mt-9:last-child{
    margin-top: -2.25rem;
  }

  .mobile\:last\:-mt-10:last-child{
    margin-top: -2.5rem;
  }

  .mobile\:last\:-mt-11:last-child{
    margin-top: -2.75rem;
  }

  .mobile\:last\:-mt-12:last-child{
    margin-top: -3rem;
  }

  .mobile\:last\:-mt-14:last-child{
    margin-top: -3.5rem;
  }

  .mobile\:last\:-mt-16:last-child{
    margin-top: -4rem;
  }

  .mobile\:last\:-mt-20:last-child{
    margin-top: -5rem;
  }

  .mobile\:last\:-mt-24:last-child{
    margin-top: -6rem;
  }

  .mobile\:last\:-mt-28:last-child{
    margin-top: -7rem;
  }

  .mobile\:last\:-mt-32:last-child{
    margin-top: -8rem;
  }

  .mobile\:last\:-mt-36:last-child{
    margin-top: -9rem;
  }

  .mobile\:last\:-mt-40:last-child{
    margin-top: -10rem;
  }

  .mobile\:last\:-mt-44:last-child{
    margin-top: -11rem;
  }

  .mobile\:last\:-mt-48:last-child{
    margin-top: -12rem;
  }

  .mobile\:last\:-mt-52:last-child{
    margin-top: -13rem;
  }

  .mobile\:last\:-mt-56:last-child{
    margin-top: -14rem;
  }

  .mobile\:last\:-mt-60:last-child{
    margin-top: -15rem;
  }

  .mobile\:last\:-mt-64:last-child{
    margin-top: -16rem;
  }

  .mobile\:last\:-mt-72:last-child{
    margin-top: -18rem;
  }

  .mobile\:last\:-mt-80:last-child{
    margin-top: -20rem;
  }

  .mobile\:last\:-mt-96:last-child{
    margin-top: -24rem;
  }

  .mobile\:last\:-mt-px:last-child{
    margin-top: -1px;
  }

  .mobile\:last\:-mt-0\.5:last-child{
    margin-top: -0.125rem;
  }

  .mobile\:last\:-mt-1\.5:last-child{
    margin-top: -0.375rem;
  }

  .mobile\:last\:-mt-2\.5:last-child{
    margin-top: -0.625rem;
  }

  .mobile\:last\:-mt-3\.5:last-child{
    margin-top: -0.875rem;
  }

  .mobile\:last\:mt-neg1:last-child{
    margin-top: -.25rem;
  }

  .mobile\:last\:mt-neg2:last-child{
    margin-top: -.5rem;
  }

  .mobile\:last\:mt-neg4:last-child{
    margin-top: -1.0rem;
  }

  .mobile\:last\:mt-neg6:last-child{
    margin-top: -1.5rem;
  }

  .mobile\:last\:mt-neg12:last-child{
    margin-top: -3rem;
  }

  .mobile\:last\:mt-neg20:last-child{
    margin-top: -5rem;
  }

  .mobile\:last\:mr-0:last-child{
    margin-right: 0px;
  }

  .mobile\:last\:mr-1:last-child{
    margin-right: 0.25rem;
  }

  .mobile\:last\:mr-2:last-child{
    margin-right: 0.5rem;
  }

  .mobile\:last\:mr-3:last-child{
    margin-right: 0.75rem;
  }

  .mobile\:last\:mr-4:last-child{
    margin-right: 1rem;
  }

  .mobile\:last\:mr-5:last-child{
    margin-right: 1.25rem;
  }

  .mobile\:last\:mr-6:last-child{
    margin-right: 1.5rem;
  }

  .mobile\:last\:mr-7:last-child{
    margin-right: 1.75rem;
  }

  .mobile\:last\:mr-8:last-child{
    margin-right: 2rem;
  }

  .mobile\:last\:mr-9:last-child{
    margin-right: 2.25rem;
  }

  .mobile\:last\:mr-10:last-child{
    margin-right: 2.5rem;
  }

  .mobile\:last\:mr-11:last-child{
    margin-right: 2.75rem;
  }

  .mobile\:last\:mr-12:last-child{
    margin-right: 3rem;
  }

  .mobile\:last\:mr-14:last-child{
    margin-right: 3.5rem;
  }

  .mobile\:last\:mr-16:last-child{
    margin-right: 4rem;
  }

  .mobile\:last\:mr-20:last-child{
    margin-right: 5rem;
  }

  .mobile\:last\:mr-24:last-child{
    margin-right: 6rem;
  }

  .mobile\:last\:mr-28:last-child{
    margin-right: 7rem;
  }

  .mobile\:last\:mr-32:last-child{
    margin-right: 8rem;
  }

  .mobile\:last\:mr-36:last-child{
    margin-right: 9rem;
  }

  .mobile\:last\:mr-40:last-child{
    margin-right: 10rem;
  }

  .mobile\:last\:mr-44:last-child{
    margin-right: 11rem;
  }

  .mobile\:last\:mr-48:last-child{
    margin-right: 12rem;
  }

  .mobile\:last\:mr-52:last-child{
    margin-right: 13rem;
  }

  .mobile\:last\:mr-56:last-child{
    margin-right: 14rem;
  }

  .mobile\:last\:mr-60:last-child{
    margin-right: 15rem;
  }

  .mobile\:last\:mr-64:last-child{
    margin-right: 16rem;
  }

  .mobile\:last\:mr-72:last-child{
    margin-right: 18rem;
  }

  .mobile\:last\:mr-80:last-child{
    margin-right: 20rem;
  }

  .mobile\:last\:mr-96:last-child{
    margin-right: 24rem;
  }

  .mobile\:last\:mr-auto:last-child{
    margin-right: auto;
  }

  .mobile\:last\:mr-px:last-child{
    margin-right: 1px;
  }

  .mobile\:last\:mr-0\.5:last-child{
    margin-right: 0.125rem;
  }

  .mobile\:last\:mr-1\.5:last-child{
    margin-right: 0.375rem;
  }

  .mobile\:last\:mr-2\.5:last-child{
    margin-right: 0.625rem;
  }

  .mobile\:last\:mr-3\.5:last-child{
    margin-right: 0.875rem;
  }

  .mobile\:last\:-mr-0:last-child{
    margin-right: 0px;
  }

  .mobile\:last\:-mr-1:last-child{
    margin-right: -0.25rem;
  }

  .mobile\:last\:-mr-2:last-child{
    margin-right: -0.5rem;
  }

  .mobile\:last\:-mr-3:last-child{
    margin-right: -0.75rem;
  }

  .mobile\:last\:-mr-4:last-child{
    margin-right: -1rem;
  }

  .mobile\:last\:-mr-5:last-child{
    margin-right: -1.25rem;
  }

  .mobile\:last\:-mr-6:last-child{
    margin-right: -1.5rem;
  }

  .mobile\:last\:-mr-7:last-child{
    margin-right: -1.75rem;
  }

  .mobile\:last\:-mr-8:last-child{
    margin-right: -2rem;
  }

  .mobile\:last\:-mr-9:last-child{
    margin-right: -2.25rem;
  }

  .mobile\:last\:-mr-10:last-child{
    margin-right: -2.5rem;
  }

  .mobile\:last\:-mr-11:last-child{
    margin-right: -2.75rem;
  }

  .mobile\:last\:-mr-12:last-child{
    margin-right: -3rem;
  }

  .mobile\:last\:-mr-14:last-child{
    margin-right: -3.5rem;
  }

  .mobile\:last\:-mr-16:last-child{
    margin-right: -4rem;
  }

  .mobile\:last\:-mr-20:last-child{
    margin-right: -5rem;
  }

  .mobile\:last\:-mr-24:last-child{
    margin-right: -6rem;
  }

  .mobile\:last\:-mr-28:last-child{
    margin-right: -7rem;
  }

  .mobile\:last\:-mr-32:last-child{
    margin-right: -8rem;
  }

  .mobile\:last\:-mr-36:last-child{
    margin-right: -9rem;
  }

  .mobile\:last\:-mr-40:last-child{
    margin-right: -10rem;
  }

  .mobile\:last\:-mr-44:last-child{
    margin-right: -11rem;
  }

  .mobile\:last\:-mr-48:last-child{
    margin-right: -12rem;
  }

  .mobile\:last\:-mr-52:last-child{
    margin-right: -13rem;
  }

  .mobile\:last\:-mr-56:last-child{
    margin-right: -14rem;
  }

  .mobile\:last\:-mr-60:last-child{
    margin-right: -15rem;
  }

  .mobile\:last\:-mr-64:last-child{
    margin-right: -16rem;
  }

  .mobile\:last\:-mr-72:last-child{
    margin-right: -18rem;
  }

  .mobile\:last\:-mr-80:last-child{
    margin-right: -20rem;
  }

  .mobile\:last\:-mr-96:last-child{
    margin-right: -24rem;
  }

  .mobile\:last\:-mr-px:last-child{
    margin-right: -1px;
  }

  .mobile\:last\:-mr-0\.5:last-child{
    margin-right: -0.125rem;
  }

  .mobile\:last\:-mr-1\.5:last-child{
    margin-right: -0.375rem;
  }

  .mobile\:last\:-mr-2\.5:last-child{
    margin-right: -0.625rem;
  }

  .mobile\:last\:-mr-3\.5:last-child{
    margin-right: -0.875rem;
  }

  .mobile\:last\:mr-neg1:last-child{
    margin-right: -.25rem;
  }

  .mobile\:last\:mr-neg2:last-child{
    margin-right: -.5rem;
  }

  .mobile\:last\:mr-neg4:last-child{
    margin-right: -1.0rem;
  }

  .mobile\:last\:mr-neg6:last-child{
    margin-right: -1.5rem;
  }

  .mobile\:last\:mr-neg12:last-child{
    margin-right: -3rem;
  }

  .mobile\:last\:mr-neg20:last-child{
    margin-right: -5rem;
  }

  .mobile\:last\:mb-0:last-child{
    margin-bottom: 0px;
  }

  .mobile\:last\:mb-1:last-child{
    margin-bottom: 0.25rem;
  }

  .mobile\:last\:mb-2:last-child{
    margin-bottom: 0.5rem;
  }

  .mobile\:last\:mb-3:last-child{
    margin-bottom: 0.75rem;
  }

  .mobile\:last\:mb-4:last-child{
    margin-bottom: 1rem;
  }

  .mobile\:last\:mb-5:last-child{
    margin-bottom: 1.25rem;
  }

  .mobile\:last\:mb-6:last-child{
    margin-bottom: 1.5rem;
  }

  .mobile\:last\:mb-7:last-child{
    margin-bottom: 1.75rem;
  }

  .mobile\:last\:mb-8:last-child{
    margin-bottom: 2rem;
  }

  .mobile\:last\:mb-9:last-child{
    margin-bottom: 2.25rem;
  }

  .mobile\:last\:mb-10:last-child{
    margin-bottom: 2.5rem;
  }

  .mobile\:last\:mb-11:last-child{
    margin-bottom: 2.75rem;
  }

  .mobile\:last\:mb-12:last-child{
    margin-bottom: 3rem;
  }

  .mobile\:last\:mb-14:last-child{
    margin-bottom: 3.5rem;
  }

  .mobile\:last\:mb-16:last-child{
    margin-bottom: 4rem;
  }

  .mobile\:last\:mb-20:last-child{
    margin-bottom: 5rem;
  }

  .mobile\:last\:mb-24:last-child{
    margin-bottom: 6rem;
  }

  .mobile\:last\:mb-28:last-child{
    margin-bottom: 7rem;
  }

  .mobile\:last\:mb-32:last-child{
    margin-bottom: 8rem;
  }

  .mobile\:last\:mb-36:last-child{
    margin-bottom: 9rem;
  }

  .mobile\:last\:mb-40:last-child{
    margin-bottom: 10rem;
  }

  .mobile\:last\:mb-44:last-child{
    margin-bottom: 11rem;
  }

  .mobile\:last\:mb-48:last-child{
    margin-bottom: 12rem;
  }

  .mobile\:last\:mb-52:last-child{
    margin-bottom: 13rem;
  }

  .mobile\:last\:mb-56:last-child{
    margin-bottom: 14rem;
  }

  .mobile\:last\:mb-60:last-child{
    margin-bottom: 15rem;
  }

  .mobile\:last\:mb-64:last-child{
    margin-bottom: 16rem;
  }

  .mobile\:last\:mb-72:last-child{
    margin-bottom: 18rem;
  }

  .mobile\:last\:mb-80:last-child{
    margin-bottom: 20rem;
  }

  .mobile\:last\:mb-96:last-child{
    margin-bottom: 24rem;
  }

  .mobile\:last\:mb-auto:last-child{
    margin-bottom: auto;
  }

  .mobile\:last\:mb-px:last-child{
    margin-bottom: 1px;
  }

  .mobile\:last\:mb-0\.5:last-child{
    margin-bottom: 0.125rem;
  }

  .mobile\:last\:mb-1\.5:last-child{
    margin-bottom: 0.375rem;
  }

  .mobile\:last\:mb-2\.5:last-child{
    margin-bottom: 0.625rem;
  }

  .mobile\:last\:mb-3\.5:last-child{
    margin-bottom: 0.875rem;
  }

  .mobile\:last\:-mb-0:last-child{
    margin-bottom: 0px;
  }

  .mobile\:last\:-mb-1:last-child{
    margin-bottom: -0.25rem;
  }

  .mobile\:last\:-mb-2:last-child{
    margin-bottom: -0.5rem;
  }

  .mobile\:last\:-mb-3:last-child{
    margin-bottom: -0.75rem;
  }

  .mobile\:last\:-mb-4:last-child{
    margin-bottom: -1rem;
  }

  .mobile\:last\:-mb-5:last-child{
    margin-bottom: -1.25rem;
  }

  .mobile\:last\:-mb-6:last-child{
    margin-bottom: -1.5rem;
  }

  .mobile\:last\:-mb-7:last-child{
    margin-bottom: -1.75rem;
  }

  .mobile\:last\:-mb-8:last-child{
    margin-bottom: -2rem;
  }

  .mobile\:last\:-mb-9:last-child{
    margin-bottom: -2.25rem;
  }

  .mobile\:last\:-mb-10:last-child{
    margin-bottom: -2.5rem;
  }

  .mobile\:last\:-mb-11:last-child{
    margin-bottom: -2.75rem;
  }

  .mobile\:last\:-mb-12:last-child{
    margin-bottom: -3rem;
  }

  .mobile\:last\:-mb-14:last-child{
    margin-bottom: -3.5rem;
  }

  .mobile\:last\:-mb-16:last-child{
    margin-bottom: -4rem;
  }

  .mobile\:last\:-mb-20:last-child{
    margin-bottom: -5rem;
  }

  .mobile\:last\:-mb-24:last-child{
    margin-bottom: -6rem;
  }

  .mobile\:last\:-mb-28:last-child{
    margin-bottom: -7rem;
  }

  .mobile\:last\:-mb-32:last-child{
    margin-bottom: -8rem;
  }

  .mobile\:last\:-mb-36:last-child{
    margin-bottom: -9rem;
  }

  .mobile\:last\:-mb-40:last-child{
    margin-bottom: -10rem;
  }

  .mobile\:last\:-mb-44:last-child{
    margin-bottom: -11rem;
  }

  .mobile\:last\:-mb-48:last-child{
    margin-bottom: -12rem;
  }

  .mobile\:last\:-mb-52:last-child{
    margin-bottom: -13rem;
  }

  .mobile\:last\:-mb-56:last-child{
    margin-bottom: -14rem;
  }

  .mobile\:last\:-mb-60:last-child{
    margin-bottom: -15rem;
  }

  .mobile\:last\:-mb-64:last-child{
    margin-bottom: -16rem;
  }

  .mobile\:last\:-mb-72:last-child{
    margin-bottom: -18rem;
  }

  .mobile\:last\:-mb-80:last-child{
    margin-bottom: -20rem;
  }

  .mobile\:last\:-mb-96:last-child{
    margin-bottom: -24rem;
  }

  .mobile\:last\:-mb-px:last-child{
    margin-bottom: -1px;
  }

  .mobile\:last\:-mb-0\.5:last-child{
    margin-bottom: -0.125rem;
  }

  .mobile\:last\:-mb-1\.5:last-child{
    margin-bottom: -0.375rem;
  }

  .mobile\:last\:-mb-2\.5:last-child{
    margin-bottom: -0.625rem;
  }

  .mobile\:last\:-mb-3\.5:last-child{
    margin-bottom: -0.875rem;
  }

  .mobile\:last\:mb-neg1:last-child{
    margin-bottom: -.25rem;
  }

  .mobile\:last\:mb-neg2:last-child{
    margin-bottom: -.5rem;
  }

  .mobile\:last\:mb-neg4:last-child{
    margin-bottom: -1.0rem;
  }

  .mobile\:last\:mb-neg6:last-child{
    margin-bottom: -1.5rem;
  }

  .mobile\:last\:mb-neg12:last-child{
    margin-bottom: -3rem;
  }

  .mobile\:last\:mb-neg20:last-child{
    margin-bottom: -5rem;
  }

  .mobile\:last\:ml-0:last-child{
    margin-left: 0px;
  }

  .mobile\:last\:ml-1:last-child{
    margin-left: 0.25rem;
  }

  .mobile\:last\:ml-2:last-child{
    margin-left: 0.5rem;
  }

  .mobile\:last\:ml-3:last-child{
    margin-left: 0.75rem;
  }

  .mobile\:last\:ml-4:last-child{
    margin-left: 1rem;
  }

  .mobile\:last\:ml-5:last-child{
    margin-left: 1.25rem;
  }

  .mobile\:last\:ml-6:last-child{
    margin-left: 1.5rem;
  }

  .mobile\:last\:ml-7:last-child{
    margin-left: 1.75rem;
  }

  .mobile\:last\:ml-8:last-child{
    margin-left: 2rem;
  }

  .mobile\:last\:ml-9:last-child{
    margin-left: 2.25rem;
  }

  .mobile\:last\:ml-10:last-child{
    margin-left: 2.5rem;
  }

  .mobile\:last\:ml-11:last-child{
    margin-left: 2.75rem;
  }

  .mobile\:last\:ml-12:last-child{
    margin-left: 3rem;
  }

  .mobile\:last\:ml-14:last-child{
    margin-left: 3.5rem;
  }

  .mobile\:last\:ml-16:last-child{
    margin-left: 4rem;
  }

  .mobile\:last\:ml-20:last-child{
    margin-left: 5rem;
  }

  .mobile\:last\:ml-24:last-child{
    margin-left: 6rem;
  }

  .mobile\:last\:ml-28:last-child{
    margin-left: 7rem;
  }

  .mobile\:last\:ml-32:last-child{
    margin-left: 8rem;
  }

  .mobile\:last\:ml-36:last-child{
    margin-left: 9rem;
  }

  .mobile\:last\:ml-40:last-child{
    margin-left: 10rem;
  }

  .mobile\:last\:ml-44:last-child{
    margin-left: 11rem;
  }

  .mobile\:last\:ml-48:last-child{
    margin-left: 12rem;
  }

  .mobile\:last\:ml-52:last-child{
    margin-left: 13rem;
  }

  .mobile\:last\:ml-56:last-child{
    margin-left: 14rem;
  }

  .mobile\:last\:ml-60:last-child{
    margin-left: 15rem;
  }

  .mobile\:last\:ml-64:last-child{
    margin-left: 16rem;
  }

  .mobile\:last\:ml-72:last-child{
    margin-left: 18rem;
  }

  .mobile\:last\:ml-80:last-child{
    margin-left: 20rem;
  }

  .mobile\:last\:ml-96:last-child{
    margin-left: 24rem;
  }

  .mobile\:last\:ml-auto:last-child{
    margin-left: auto;
  }

  .mobile\:last\:ml-px:last-child{
    margin-left: 1px;
  }

  .mobile\:last\:ml-0\.5:last-child{
    margin-left: 0.125rem;
  }

  .mobile\:last\:ml-1\.5:last-child{
    margin-left: 0.375rem;
  }

  .mobile\:last\:ml-2\.5:last-child{
    margin-left: 0.625rem;
  }

  .mobile\:last\:ml-3\.5:last-child{
    margin-left: 0.875rem;
  }

  .mobile\:last\:-ml-0:last-child{
    margin-left: 0px;
  }

  .mobile\:last\:-ml-1:last-child{
    margin-left: -0.25rem;
  }

  .mobile\:last\:-ml-2:last-child{
    margin-left: -0.5rem;
  }

  .mobile\:last\:-ml-3:last-child{
    margin-left: -0.75rem;
  }

  .mobile\:last\:-ml-4:last-child{
    margin-left: -1rem;
  }

  .mobile\:last\:-ml-5:last-child{
    margin-left: -1.25rem;
  }

  .mobile\:last\:-ml-6:last-child{
    margin-left: -1.5rem;
  }

  .mobile\:last\:-ml-7:last-child{
    margin-left: -1.75rem;
  }

  .mobile\:last\:-ml-8:last-child{
    margin-left: -2rem;
  }

  .mobile\:last\:-ml-9:last-child{
    margin-left: -2.25rem;
  }

  .mobile\:last\:-ml-10:last-child{
    margin-left: -2.5rem;
  }

  .mobile\:last\:-ml-11:last-child{
    margin-left: -2.75rem;
  }

  .mobile\:last\:-ml-12:last-child{
    margin-left: -3rem;
  }

  .mobile\:last\:-ml-14:last-child{
    margin-left: -3.5rem;
  }

  .mobile\:last\:-ml-16:last-child{
    margin-left: -4rem;
  }

  .mobile\:last\:-ml-20:last-child{
    margin-left: -5rem;
  }

  .mobile\:last\:-ml-24:last-child{
    margin-left: -6rem;
  }

  .mobile\:last\:-ml-28:last-child{
    margin-left: -7rem;
  }

  .mobile\:last\:-ml-32:last-child{
    margin-left: -8rem;
  }

  .mobile\:last\:-ml-36:last-child{
    margin-left: -9rem;
  }

  .mobile\:last\:-ml-40:last-child{
    margin-left: -10rem;
  }

  .mobile\:last\:-ml-44:last-child{
    margin-left: -11rem;
  }

  .mobile\:last\:-ml-48:last-child{
    margin-left: -12rem;
  }

  .mobile\:last\:-ml-52:last-child{
    margin-left: -13rem;
  }

  .mobile\:last\:-ml-56:last-child{
    margin-left: -14rem;
  }

  .mobile\:last\:-ml-60:last-child{
    margin-left: -15rem;
  }

  .mobile\:last\:-ml-64:last-child{
    margin-left: -16rem;
  }

  .mobile\:last\:-ml-72:last-child{
    margin-left: -18rem;
  }

  .mobile\:last\:-ml-80:last-child{
    margin-left: -20rem;
  }

  .mobile\:last\:-ml-96:last-child{
    margin-left: -24rem;
  }

  .mobile\:last\:-ml-px:last-child{
    margin-left: -1px;
  }

  .mobile\:last\:-ml-0\.5:last-child{
    margin-left: -0.125rem;
  }

  .mobile\:last\:-ml-1\.5:last-child{
    margin-left: -0.375rem;
  }

  .mobile\:last\:-ml-2\.5:last-child{
    margin-left: -0.625rem;
  }

  .mobile\:last\:-ml-3\.5:last-child{
    margin-left: -0.875rem;
  }

  .mobile\:last\:ml-neg1:last-child{
    margin-left: -.25rem;
  }

  .mobile\:last\:ml-neg2:last-child{
    margin-left: -.5rem;
  }

  .mobile\:last\:ml-neg4:last-child{
    margin-left: -1.0rem;
  }

  .mobile\:last\:ml-neg6:last-child{
    margin-left: -1.5rem;
  }

  .mobile\:last\:ml-neg12:last-child{
    margin-left: -3rem;
  }

  .mobile\:last\:ml-neg20:last-child{
    margin-left: -5rem;
  }

  .mobile\:box-border{
    box-sizing: border-box;
  }

  .mobile\:box-content{
    box-sizing: content-box;
  }

  .mobile\:block{
    display: block;
  }

  .mobile\:inline-block{
    display: inline-block;
  }

  .mobile\:inline{
    display: inline;
  }

  .mobile\:flex{
    display: flex;
  }

  .mobile\:inline-flex{
    display: inline-flex;
  }

  .mobile\:table{
    display: table;
  }

  .mobile\:inline-table{
    display: inline-table;
  }

  .mobile\:table-caption{
    display: table-caption;
  }

  .mobile\:table-cell{
    display: table-cell;
  }

  .mobile\:table-column{
    display: table-column;
  }

  .mobile\:table-column-group{
    display: table-column-group;
  }

  .mobile\:table-footer-group{
    display: table-footer-group;
  }

  .mobile\:table-header-group{
    display: table-header-group;
  }

  .mobile\:table-row-group{
    display: table-row-group;
  }

  .mobile\:table-row{
    display: table-row;
  }

  .mobile\:flow-root{
    display: flow-root;
  }

  .mobile\:grid{
    display: grid;
  }

  .mobile\:inline-grid{
    display: inline-grid;
  }

  .mobile\:contents{
    display: contents;
  }

  .mobile\:list-item{
    display: list-item;
  }

  .mobile\:hidden{
    display: none;
  }

  .mobile\:h-0{
    height: 0px;
  }

  .mobile\:h-1{
    height: 0.25rem;
  }

  .mobile\:h-2{
    height: 0.5rem;
  }

  .mobile\:h-3{
    height: 0.75rem;
  }

  .mobile\:h-4{
    height: 1rem;
  }

  .mobile\:h-5{
    height: 1.25rem;
  }

  .mobile\:h-6{
    height: 1.5rem;
  }

  .mobile\:h-7{
    height: 1.75rem;
  }

  .mobile\:h-8{
    height: 2rem;
  }

  .mobile\:h-9{
    height: 2.25rem;
  }

  .mobile\:h-10{
    height: 2.5rem;
  }

  .mobile\:h-11{
    height: 2.75rem;
  }

  .mobile\:h-12{
    height: 3rem;
  }

  .mobile\:h-14{
    height: 3.5rem;
  }

  .mobile\:h-16{
    height: 4rem;
  }

  .mobile\:h-20{
    height: 5rem;
  }

  .mobile\:h-24{
    height: 6rem;
  }

  .mobile\:h-28{
    height: 7rem;
  }

  .mobile\:h-32{
    height: 8rem;
  }

  .mobile\:h-36{
    height: 9rem;
  }

  .mobile\:h-40{
    height: 10rem;
  }

  .mobile\:h-44{
    height: 11rem;
  }

  .mobile\:h-48{
    height: 12rem;
  }

  .mobile\:h-52{
    height: 13rem;
  }

  .mobile\:h-56{
    height: 14rem;
  }

  .mobile\:h-60{
    height: 15rem;
  }

  .mobile\:h-64{
    height: 16rem;
  }

  .mobile\:h-72{
    height: 18rem;
  }

  .mobile\:h-80{
    height: 20rem;
  }

  .mobile\:h-96{
    height: 24rem;
  }

  .mobile\:h-auto{
    height: auto;
  }

  .mobile\:h-px{
    height: 1px;
  }

  .mobile\:h-0\.5{
    height: 0.125rem;
  }

  .mobile\:h-1\.5{
    height: 0.375rem;
  }

  .mobile\:h-2\.5{
    height: 0.625rem;
  }

  .mobile\:h-3\.5{
    height: 0.875rem;
  }

  .mobile\:h-1\/2{
    height: 50%;
  }

  .mobile\:h-1\/3{
    height: 33.333333%;
  }

  .mobile\:h-2\/3{
    height: 66.666667%;
  }

  .mobile\:h-1\/4{
    height: 25%;
  }

  .mobile\:h-2\/4{
    height: 50%;
  }

  .mobile\:h-3\/4{
    height: 75%;
  }

  .mobile\:h-1\/5{
    height: 20%;
  }

  .mobile\:h-2\/5{
    height: 40%;
  }

  .mobile\:h-3\/5{
    height: 60%;
  }

  .mobile\:h-4\/5{
    height: 80%;
  }

  .mobile\:h-1\/6{
    height: 16.666667%;
  }

  .mobile\:h-2\/6{
    height: 33.333333%;
  }

  .mobile\:h-3\/6{
    height: 50%;
  }

  .mobile\:h-4\/6{
    height: 66.666667%;
  }

  .mobile\:h-5\/6{
    height: 83.333333%;
  }

  .mobile\:h-full{
    height: 100%;
  }

  .mobile\:h-screen{
    height: 100vh;
  }

  .mobile\:max-h-0{
    max-height: 0;
  }

  .mobile\:max-h-1{
    max-height: 0.25rem;
  }

  .mobile\:max-h-2{
    max-height: 0.5rem;
  }

  .mobile\:max-h-3{
    max-height: 0.75rem;
  }

  .mobile\:max-h-4{
    max-height: 1rem;
  }

  .mobile\:max-h-5{
    max-height: 1.25rem;
  }

  .mobile\:max-h-6{
    max-height: 1.5rem;
  }

  .mobile\:max-h-7{
    max-height: 1.75rem;
  }

  .mobile\:max-h-8{
    max-height: 2rem;
  }

  .mobile\:max-h-9{
    max-height: 2.25rem;
  }

  .mobile\:max-h-10{
    max-height: 2.5rem;
  }

  .mobile\:max-h-11{
    max-height: 2.75rem;
  }

  .mobile\:max-h-12{
    max-height: 3rem;
  }

  .mobile\:max-h-14{
    max-height: 3.5rem;
  }

  .mobile\:max-h-16{
    max-height: 4rem;
  }

  .mobile\:max-h-20{
    max-height: 5rem;
  }

  .mobile\:max-h-24{
    max-height: 6rem;
  }

  .mobile\:max-h-28{
    max-height: 7rem;
  }

  .mobile\:max-h-32{
    max-height: 8rem;
  }

  .mobile\:max-h-36{
    max-height: 9rem;
  }

  .mobile\:max-h-40{
    max-height: 10rem;
  }

  .mobile\:max-h-44{
    max-height: 11rem;
  }

  .mobile\:max-h-48{
    max-height: 12rem;
  }

  .mobile\:max-h-52{
    max-height: 13rem;
  }

  .mobile\:max-h-56{
    max-height: 14rem;
  }

  .mobile\:max-h-60{
    max-height: 15rem;
  }

  .mobile\:max-h-64{
    max-height: 16rem;
  }

  .mobile\:max-h-72{
    max-height: 18rem;
  }

  .mobile\:max-h-80{
    max-height: 20rem;
  }

  .mobile\:max-h-96{
    max-height: 24rem;
  }

  .mobile\:max-h-px{
    max-height: 1px;
  }

  .mobile\:max-h-0\.5{
    max-height: 0.125rem;
  }

  .mobile\:max-h-1\.5{
    max-height: 0.375rem;
  }

  .mobile\:max-h-2\.5{
    max-height: 0.625rem;
  }

  .mobile\:max-h-3\.5{
    max-height: 0.875rem;
  }

  .mobile\:max-h-full{
    max-height: 100%;
  }

  .mobile\:max-h-screen{
    max-height: 100vh;
  }

  .mobile\:min-h-0{
    min-height: 0px;
  }

  .mobile\:min-h-full{
    min-height: 100%;
  }

  .mobile\:min-h-screen{
    min-height: 100vh;
  }

  .mobile\:w-0{
    width: 0px;
  }

  .mobile\:w-1{
    width: 0.25rem;
  }

  .mobile\:w-2{
    width: 0.5rem;
  }

  .mobile\:w-3{
    width: 0.75rem;
  }

  .mobile\:w-4{
    width: 1rem;
  }

  .mobile\:w-5{
    width: 1.25rem;
  }

  .mobile\:w-6{
    width: 1.5rem;
  }

  .mobile\:w-7{
    width: 1.75rem;
  }

  .mobile\:w-8{
    width: 2rem;
  }

  .mobile\:w-9{
    width: 2.25rem;
  }

  .mobile\:w-10{
    width: 2.5rem;
  }

  .mobile\:w-11{
    width: 2.75rem;
  }

  .mobile\:w-12{
    width: 3rem;
  }

  .mobile\:w-14{
    width: 3.5rem;
  }

  .mobile\:w-16{
    width: 4rem;
  }

  .mobile\:w-20{
    width: 5rem;
  }

  .mobile\:w-24{
    width: 6rem;
  }

  .mobile\:w-28{
    width: 7rem;
  }

  .mobile\:w-32{
    width: 8rem;
  }

  .mobile\:w-36{
    width: 9rem;
  }

  .mobile\:w-40{
    width: 10rem;
  }

  .mobile\:w-44{
    width: 11rem;
  }

  .mobile\:w-48{
    width: 12rem;
  }

  .mobile\:w-52{
    width: 13rem;
  }

  .mobile\:w-56{
    width: 14rem;
  }

  .mobile\:w-60{
    width: 15rem;
  }

  .mobile\:w-64{
    width: 16rem;
  }

  .mobile\:w-72{
    width: 18rem;
  }

  .mobile\:w-80{
    width: 20rem;
  }

  .mobile\:w-96{
    width: 24rem;
  }

  .mobile\:w-auto{
    width: auto;
  }

  .mobile\:w-px{
    width: 1px;
  }

  .mobile\:w-0\.5{
    width: 0.125rem;
  }

  .mobile\:w-1\.5{
    width: 0.375rem;
  }

  .mobile\:w-2\.5{
    width: 0.625rem;
  }

  .mobile\:w-3\.5{
    width: 0.875rem;
  }

  .mobile\:w-1\/2{
    width: 50%;
  }

  .mobile\:w-1\/3{
    width: 33.333333%;
  }

  .mobile\:w-2\/3{
    width: 66.666667%;
  }

  .mobile\:w-1\/4{
    width: 25%;
  }

  .mobile\:w-2\/4{
    width: 50%;
  }

  .mobile\:w-3\/4{
    width: 75%;
  }

  .mobile\:w-1\/5{
    width: 20%;
  }

  .mobile\:w-2\/5{
    width: 40%;
  }

  .mobile\:w-3\/5{
    width: 60%;
  }

  .mobile\:w-4\/5{
    width: 80%;
  }

  .mobile\:w-1\/6{
    width: 16.666667%;
  }

  .mobile\:w-2\/6{
    width: 33.333333%;
  }

  .mobile\:w-3\/6{
    width: 50%;
  }

  .mobile\:w-4\/6{
    width: 66.666667%;
  }

  .mobile\:w-5\/6{
    width: 83.333333%;
  }

  .mobile\:w-1\/12{
    width: 8.333333%;
  }

  .mobile\:w-2\/12{
    width: 16.666667%;
  }

  .mobile\:w-3\/12{
    width: 25%;
  }

  .mobile\:w-4\/12{
    width: 33.333333%;
  }

  .mobile\:w-5\/12{
    width: 41.666667%;
  }

  .mobile\:w-6\/12{
    width: 50%;
  }

  .mobile\:w-7\/12{
    width: 58.333333%;
  }

  .mobile\:w-8\/12{
    width: 66.666667%;
  }

  .mobile\:w-9\/12{
    width: 75%;
  }

  .mobile\:w-10\/12{
    width: 83.333333%;
  }

  .mobile\:w-11\/12{
    width: 91.666667%;
  }

  .mobile\:w-full{
    width: 100%;
  }

  .mobile\:w-screen{
    width: 100vw;
  }

  .mobile\:w-min{
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }

  .mobile\:w-max{
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .mobile\:min-w-0{
    min-width: 0px;
  }

  .mobile\:min-w-full{
    min-width: 100%;
  }

  .mobile\:min-w-min{
    min-width: -webkit-min-content;
    min-width: -moz-min-content;
    min-width: min-content;
  }

  .mobile\:min-w-max{
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }

  .mobile\:max-w-0{
    max-width: 0rem;
  }

  .mobile\:max-w-none{
    max-width: none;
  }

  .mobile\:max-w-xs{
    max-width: 20rem;
  }

  .mobile\:max-w-sm{
    max-width: 24rem;
  }

  .mobile\:max-w-md{
    max-width: 28rem;
  }

  .mobile\:max-w-lg{
    max-width: 32rem;
  }

  .mobile\:max-w-xl{
    max-width: 36rem;
  }

  .mobile\:max-w-2xl{
    max-width: 42rem;
  }

  .mobile\:max-w-3xl{
    max-width: 48rem;
  }

  .mobile\:max-w-4xl{
    max-width: 56rem;
  }

  .mobile\:max-w-5xl{
    max-width: 64rem;
  }

  .mobile\:max-w-6xl{
    max-width: 72rem;
  }

  .mobile\:max-w-7xl{
    max-width: 80rem;
  }

  .mobile\:max-w-full{
    max-width: 100%;
  }

  .mobile\:max-w-min{
    max-width: -webkit-min-content;
    max-width: -moz-min-content;
    max-width: min-content;
  }

  .mobile\:max-w-max{
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }

  .mobile\:max-w-prose{
    max-width: 65ch;
  }

  .mobile\:max-w-1\/4{
    max-width: 25%;
  }

  .mobile\:max-w-3\/10{
    max-width: 30%;
  }

  .mobile\:max-w-1\/2{
    max-width: 50%;
  }

  .mobile\:flex-1{
    flex: 1 1 0%;
  }

  .mobile\:flex-auto{
    flex: 1 1 auto;
  }

  .mobile\:flex-initial{
    flex: 0 1 auto;
  }

  .mobile\:flex-none{
    flex: none;
  }

  .mobile\:flex-shrink-0{
    flex-shrink: 0;
  }

  .mobile\:flex-shrink{
    flex-shrink: 1;
  }

  .mobile\:flex-grow-0{
    flex-grow: 0;
  }

  .mobile\:flex-grow{
    flex-grow: 1;
  }

  .mobile\:table-auto{
    table-layout: auto;
  }

  .mobile\:table-fixed{
    table-layout: fixed;
  }

  .mobile\:border-collapse{
    border-collapse: collapse;
  }

  .mobile\:border-separate{
    border-collapse: separate;
  }

  .mobile\:origin-center{
    transform-origin: center;
  }

  .mobile\:origin-top{
    transform-origin: top;
  }

  .mobile\:origin-top-right{
    transform-origin: top right;
  }

  .mobile\:origin-right{
    transform-origin: right;
  }

  .mobile\:origin-bottom-right{
    transform-origin: bottom right;
  }

  .mobile\:origin-bottom{
    transform-origin: bottom;
  }

  .mobile\:origin-bottom-left{
    transform-origin: bottom left;
  }

  .mobile\:origin-left{
    transform-origin: left;
  }

  .mobile\:origin-top-left{
    transform-origin: top left;
  }

  .mobile\:transform{
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .mobile\:transform-gpu{
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .mobile\:transform-none{
    transform: none;
  }

  .mobile\:translate-x-0{
    --tw-translate-x: 0px;
  }

  .mobile\:translate-x-1{
    --tw-translate-x: 0.25rem;
  }

  .mobile\:translate-x-2{
    --tw-translate-x: 0.5rem;
  }

  .mobile\:translate-x-3{
    --tw-translate-x: 0.75rem;
  }

  .mobile\:translate-x-4{
    --tw-translate-x: 1rem;
  }

  .mobile\:translate-x-5{
    --tw-translate-x: 1.25rem;
  }

  .mobile\:translate-x-6{
    --tw-translate-x: 1.5rem;
  }

  .mobile\:translate-x-7{
    --tw-translate-x: 1.75rem;
  }

  .mobile\:translate-x-8{
    --tw-translate-x: 2rem;
  }

  .mobile\:translate-x-9{
    --tw-translate-x: 2.25rem;
  }

  .mobile\:translate-x-10{
    --tw-translate-x: 2.5rem;
  }

  .mobile\:translate-x-11{
    --tw-translate-x: 2.75rem;
  }

  .mobile\:translate-x-12{
    --tw-translate-x: 3rem;
  }

  .mobile\:translate-x-14{
    --tw-translate-x: 3.5rem;
  }

  .mobile\:translate-x-16{
    --tw-translate-x: 4rem;
  }

  .mobile\:translate-x-20{
    --tw-translate-x: 5rem;
  }

  .mobile\:translate-x-24{
    --tw-translate-x: 6rem;
  }

  .mobile\:translate-x-28{
    --tw-translate-x: 7rem;
  }

  .mobile\:translate-x-32{
    --tw-translate-x: 8rem;
  }

  .mobile\:translate-x-36{
    --tw-translate-x: 9rem;
  }

  .mobile\:translate-x-40{
    --tw-translate-x: 10rem;
  }

  .mobile\:translate-x-44{
    --tw-translate-x: 11rem;
  }

  .mobile\:translate-x-48{
    --tw-translate-x: 12rem;
  }

  .mobile\:translate-x-52{
    --tw-translate-x: 13rem;
  }

  .mobile\:translate-x-56{
    --tw-translate-x: 14rem;
  }

  .mobile\:translate-x-60{
    --tw-translate-x: 15rem;
  }

  .mobile\:translate-x-64{
    --tw-translate-x: 16rem;
  }

  .mobile\:translate-x-72{
    --tw-translate-x: 18rem;
  }

  .mobile\:translate-x-80{
    --tw-translate-x: 20rem;
  }

  .mobile\:translate-x-96{
    --tw-translate-x: 24rem;
  }

  .mobile\:translate-x-px{
    --tw-translate-x: 1px;
  }

  .mobile\:translate-x-0\.5{
    --tw-translate-x: 0.125rem;
  }

  .mobile\:translate-x-1\.5{
    --tw-translate-x: 0.375rem;
  }

  .mobile\:translate-x-2\.5{
    --tw-translate-x: 0.625rem;
  }

  .mobile\:translate-x-3\.5{
    --tw-translate-x: 0.875rem;
  }

  .mobile\:-translate-x-0{
    --tw-translate-x: 0px;
  }

  .mobile\:-translate-x-1{
    --tw-translate-x: -0.25rem;
  }

  .mobile\:-translate-x-2{
    --tw-translate-x: -0.5rem;
  }

  .mobile\:-translate-x-3{
    --tw-translate-x: -0.75rem;
  }

  .mobile\:-translate-x-4{
    --tw-translate-x: -1rem;
  }

  .mobile\:-translate-x-5{
    --tw-translate-x: -1.25rem;
  }

  .mobile\:-translate-x-6{
    --tw-translate-x: -1.5rem;
  }

  .mobile\:-translate-x-7{
    --tw-translate-x: -1.75rem;
  }

  .mobile\:-translate-x-8{
    --tw-translate-x: -2rem;
  }

  .mobile\:-translate-x-9{
    --tw-translate-x: -2.25rem;
  }

  .mobile\:-translate-x-10{
    --tw-translate-x: -2.5rem;
  }

  .mobile\:-translate-x-11{
    --tw-translate-x: -2.75rem;
  }

  .mobile\:-translate-x-12{
    --tw-translate-x: -3rem;
  }

  .mobile\:-translate-x-14{
    --tw-translate-x: -3.5rem;
  }

  .mobile\:-translate-x-16{
    --tw-translate-x: -4rem;
  }

  .mobile\:-translate-x-20{
    --tw-translate-x: -5rem;
  }

  .mobile\:-translate-x-24{
    --tw-translate-x: -6rem;
  }

  .mobile\:-translate-x-28{
    --tw-translate-x: -7rem;
  }

  .mobile\:-translate-x-32{
    --tw-translate-x: -8rem;
  }

  .mobile\:-translate-x-36{
    --tw-translate-x: -9rem;
  }

  .mobile\:-translate-x-40{
    --tw-translate-x: -10rem;
  }

  .mobile\:-translate-x-44{
    --tw-translate-x: -11rem;
  }

  .mobile\:-translate-x-48{
    --tw-translate-x: -12rem;
  }

  .mobile\:-translate-x-52{
    --tw-translate-x: -13rem;
  }

  .mobile\:-translate-x-56{
    --tw-translate-x: -14rem;
  }

  .mobile\:-translate-x-60{
    --tw-translate-x: -15rem;
  }

  .mobile\:-translate-x-64{
    --tw-translate-x: -16rem;
  }

  .mobile\:-translate-x-72{
    --tw-translate-x: -18rem;
  }

  .mobile\:-translate-x-80{
    --tw-translate-x: -20rem;
  }

  .mobile\:-translate-x-96{
    --tw-translate-x: -24rem;
  }

  .mobile\:-translate-x-px{
    --tw-translate-x: -1px;
  }

  .mobile\:-translate-x-0\.5{
    --tw-translate-x: -0.125rem;
  }

  .mobile\:-translate-x-1\.5{
    --tw-translate-x: -0.375rem;
  }

  .mobile\:-translate-x-2\.5{
    --tw-translate-x: -0.625rem;
  }

  .mobile\:-translate-x-3\.5{
    --tw-translate-x: -0.875rem;
  }

  .mobile\:translate-x-1\/2{
    --tw-translate-x: 50%;
  }

  .mobile\:translate-x-1\/3{
    --tw-translate-x: 33.333333%;
  }

  .mobile\:translate-x-2\/3{
    --tw-translate-x: 66.666667%;
  }

  .mobile\:translate-x-1\/4{
    --tw-translate-x: 25%;
  }

  .mobile\:translate-x-2\/4{
    --tw-translate-x: 50%;
  }

  .mobile\:translate-x-3\/4{
    --tw-translate-x: 75%;
  }

  .mobile\:translate-x-full{
    --tw-translate-x: 100%;
  }

  .mobile\:-translate-x-1\/2{
    --tw-translate-x: -50%;
  }

  .mobile\:-translate-x-1\/3{
    --tw-translate-x: -33.333333%;
  }

  .mobile\:-translate-x-2\/3{
    --tw-translate-x: -66.666667%;
  }

  .mobile\:-translate-x-1\/4{
    --tw-translate-x: -25%;
  }

  .mobile\:-translate-x-2\/4{
    --tw-translate-x: -50%;
  }

  .mobile\:-translate-x-3\/4{
    --tw-translate-x: -75%;
  }

  .mobile\:-translate-x-full{
    --tw-translate-x: -100%;
  }

  .mobile\:translate-x-neg1\/2{
    --tw-translate-x: -50%;
  }

  .mobile\:translate-x-neg3\/4{
    --tw-translate-x: -75%;
  }

  .mobile\:translate-y-0{
    --tw-translate-y: 0px;
  }

  .mobile\:translate-y-1{
    --tw-translate-y: 0.25rem;
  }

  .mobile\:translate-y-2{
    --tw-translate-y: 0.5rem;
  }

  .mobile\:translate-y-3{
    --tw-translate-y: 0.75rem;
  }

  .mobile\:translate-y-4{
    --tw-translate-y: 1rem;
  }

  .mobile\:translate-y-5{
    --tw-translate-y: 1.25rem;
  }

  .mobile\:translate-y-6{
    --tw-translate-y: 1.5rem;
  }

  .mobile\:translate-y-7{
    --tw-translate-y: 1.75rem;
  }

  .mobile\:translate-y-8{
    --tw-translate-y: 2rem;
  }

  .mobile\:translate-y-9{
    --tw-translate-y: 2.25rem;
  }

  .mobile\:translate-y-10{
    --tw-translate-y: 2.5rem;
  }

  .mobile\:translate-y-11{
    --tw-translate-y: 2.75rem;
  }

  .mobile\:translate-y-12{
    --tw-translate-y: 3rem;
  }

  .mobile\:translate-y-14{
    --tw-translate-y: 3.5rem;
  }

  .mobile\:translate-y-16{
    --tw-translate-y: 4rem;
  }

  .mobile\:translate-y-20{
    --tw-translate-y: 5rem;
  }

  .mobile\:translate-y-24{
    --tw-translate-y: 6rem;
  }

  .mobile\:translate-y-28{
    --tw-translate-y: 7rem;
  }

  .mobile\:translate-y-32{
    --tw-translate-y: 8rem;
  }

  .mobile\:translate-y-36{
    --tw-translate-y: 9rem;
  }

  .mobile\:translate-y-40{
    --tw-translate-y: 10rem;
  }

  .mobile\:translate-y-44{
    --tw-translate-y: 11rem;
  }

  .mobile\:translate-y-48{
    --tw-translate-y: 12rem;
  }

  .mobile\:translate-y-52{
    --tw-translate-y: 13rem;
  }

  .mobile\:translate-y-56{
    --tw-translate-y: 14rem;
  }

  .mobile\:translate-y-60{
    --tw-translate-y: 15rem;
  }

  .mobile\:translate-y-64{
    --tw-translate-y: 16rem;
  }

  .mobile\:translate-y-72{
    --tw-translate-y: 18rem;
  }

  .mobile\:translate-y-80{
    --tw-translate-y: 20rem;
  }

  .mobile\:translate-y-96{
    --tw-translate-y: 24rem;
  }

  .mobile\:translate-y-px{
    --tw-translate-y: 1px;
  }

  .mobile\:translate-y-0\.5{
    --tw-translate-y: 0.125rem;
  }

  .mobile\:translate-y-1\.5{
    --tw-translate-y: 0.375rem;
  }

  .mobile\:translate-y-2\.5{
    --tw-translate-y: 0.625rem;
  }

  .mobile\:translate-y-3\.5{
    --tw-translate-y: 0.875rem;
  }

  .mobile\:-translate-y-0{
    --tw-translate-y: 0px;
  }

  .mobile\:-translate-y-1{
    --tw-translate-y: -0.25rem;
  }

  .mobile\:-translate-y-2{
    --tw-translate-y: -0.5rem;
  }

  .mobile\:-translate-y-3{
    --tw-translate-y: -0.75rem;
  }

  .mobile\:-translate-y-4{
    --tw-translate-y: -1rem;
  }

  .mobile\:-translate-y-5{
    --tw-translate-y: -1.25rem;
  }

  .mobile\:-translate-y-6{
    --tw-translate-y: -1.5rem;
  }

  .mobile\:-translate-y-7{
    --tw-translate-y: -1.75rem;
  }

  .mobile\:-translate-y-8{
    --tw-translate-y: -2rem;
  }

  .mobile\:-translate-y-9{
    --tw-translate-y: -2.25rem;
  }

  .mobile\:-translate-y-10{
    --tw-translate-y: -2.5rem;
  }

  .mobile\:-translate-y-11{
    --tw-translate-y: -2.75rem;
  }

  .mobile\:-translate-y-12{
    --tw-translate-y: -3rem;
  }

  .mobile\:-translate-y-14{
    --tw-translate-y: -3.5rem;
  }

  .mobile\:-translate-y-16{
    --tw-translate-y: -4rem;
  }

  .mobile\:-translate-y-20{
    --tw-translate-y: -5rem;
  }

  .mobile\:-translate-y-24{
    --tw-translate-y: -6rem;
  }

  .mobile\:-translate-y-28{
    --tw-translate-y: -7rem;
  }

  .mobile\:-translate-y-32{
    --tw-translate-y: -8rem;
  }

  .mobile\:-translate-y-36{
    --tw-translate-y: -9rem;
  }

  .mobile\:-translate-y-40{
    --tw-translate-y: -10rem;
  }

  .mobile\:-translate-y-44{
    --tw-translate-y: -11rem;
  }

  .mobile\:-translate-y-48{
    --tw-translate-y: -12rem;
  }

  .mobile\:-translate-y-52{
    --tw-translate-y: -13rem;
  }

  .mobile\:-translate-y-56{
    --tw-translate-y: -14rem;
  }

  .mobile\:-translate-y-60{
    --tw-translate-y: -15rem;
  }

  .mobile\:-translate-y-64{
    --tw-translate-y: -16rem;
  }

  .mobile\:-translate-y-72{
    --tw-translate-y: -18rem;
  }

  .mobile\:-translate-y-80{
    --tw-translate-y: -20rem;
  }

  .mobile\:-translate-y-96{
    --tw-translate-y: -24rem;
  }

  .mobile\:-translate-y-px{
    --tw-translate-y: -1px;
  }

  .mobile\:-translate-y-0\.5{
    --tw-translate-y: -0.125rem;
  }

  .mobile\:-translate-y-1\.5{
    --tw-translate-y: -0.375rem;
  }

  .mobile\:-translate-y-2\.5{
    --tw-translate-y: -0.625rem;
  }

  .mobile\:-translate-y-3\.5{
    --tw-translate-y: -0.875rem;
  }

  .mobile\:translate-y-1\/2{
    --tw-translate-y: 50%;
  }

  .mobile\:translate-y-1\/3{
    --tw-translate-y: 33.333333%;
  }

  .mobile\:translate-y-2\/3{
    --tw-translate-y: 66.666667%;
  }

  .mobile\:translate-y-1\/4{
    --tw-translate-y: 25%;
  }

  .mobile\:translate-y-2\/4{
    --tw-translate-y: 50%;
  }

  .mobile\:translate-y-3\/4{
    --tw-translate-y: 75%;
  }

  .mobile\:translate-y-full{
    --tw-translate-y: 100%;
  }

  .mobile\:-translate-y-1\/2{
    --tw-translate-y: -50%;
  }

  .mobile\:-translate-y-1\/3{
    --tw-translate-y: -33.333333%;
  }

  .mobile\:-translate-y-2\/3{
    --tw-translate-y: -66.666667%;
  }

  .mobile\:-translate-y-1\/4{
    --tw-translate-y: -25%;
  }

  .mobile\:-translate-y-2\/4{
    --tw-translate-y: -50%;
  }

  .mobile\:-translate-y-3\/4{
    --tw-translate-y: -75%;
  }

  .mobile\:-translate-y-full{
    --tw-translate-y: -100%;
  }

  .mobile\:translate-y-neg1\/2{
    --tw-translate-y: -50%;
  }

  .mobile\:translate-y-neg3\/4{
    --tw-translate-y: -75%;
  }

  .mobile\:hover\:translate-x-0:hover{
    --tw-translate-x: 0px;
  }

  .mobile\:hover\:translate-x-1:hover{
    --tw-translate-x: 0.25rem;
  }

  .mobile\:hover\:translate-x-2:hover{
    --tw-translate-x: 0.5rem;
  }

  .mobile\:hover\:translate-x-3:hover{
    --tw-translate-x: 0.75rem;
  }

  .mobile\:hover\:translate-x-4:hover{
    --tw-translate-x: 1rem;
  }

  .mobile\:hover\:translate-x-5:hover{
    --tw-translate-x: 1.25rem;
  }

  .mobile\:hover\:translate-x-6:hover{
    --tw-translate-x: 1.5rem;
  }

  .mobile\:hover\:translate-x-7:hover{
    --tw-translate-x: 1.75rem;
  }

  .mobile\:hover\:translate-x-8:hover{
    --tw-translate-x: 2rem;
  }

  .mobile\:hover\:translate-x-9:hover{
    --tw-translate-x: 2.25rem;
  }

  .mobile\:hover\:translate-x-10:hover{
    --tw-translate-x: 2.5rem;
  }

  .mobile\:hover\:translate-x-11:hover{
    --tw-translate-x: 2.75rem;
  }

  .mobile\:hover\:translate-x-12:hover{
    --tw-translate-x: 3rem;
  }

  .mobile\:hover\:translate-x-14:hover{
    --tw-translate-x: 3.5rem;
  }

  .mobile\:hover\:translate-x-16:hover{
    --tw-translate-x: 4rem;
  }

  .mobile\:hover\:translate-x-20:hover{
    --tw-translate-x: 5rem;
  }

  .mobile\:hover\:translate-x-24:hover{
    --tw-translate-x: 6rem;
  }

  .mobile\:hover\:translate-x-28:hover{
    --tw-translate-x: 7rem;
  }

  .mobile\:hover\:translate-x-32:hover{
    --tw-translate-x: 8rem;
  }

  .mobile\:hover\:translate-x-36:hover{
    --tw-translate-x: 9rem;
  }

  .mobile\:hover\:translate-x-40:hover{
    --tw-translate-x: 10rem;
  }

  .mobile\:hover\:translate-x-44:hover{
    --tw-translate-x: 11rem;
  }

  .mobile\:hover\:translate-x-48:hover{
    --tw-translate-x: 12rem;
  }

  .mobile\:hover\:translate-x-52:hover{
    --tw-translate-x: 13rem;
  }

  .mobile\:hover\:translate-x-56:hover{
    --tw-translate-x: 14rem;
  }

  .mobile\:hover\:translate-x-60:hover{
    --tw-translate-x: 15rem;
  }

  .mobile\:hover\:translate-x-64:hover{
    --tw-translate-x: 16rem;
  }

  .mobile\:hover\:translate-x-72:hover{
    --tw-translate-x: 18rem;
  }

  .mobile\:hover\:translate-x-80:hover{
    --tw-translate-x: 20rem;
  }

  .mobile\:hover\:translate-x-96:hover{
    --tw-translate-x: 24rem;
  }

  .mobile\:hover\:translate-x-px:hover{
    --tw-translate-x: 1px;
  }

  .mobile\:hover\:translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem;
  }

  .mobile\:hover\:translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem;
  }

  .mobile\:hover\:translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem;
  }

  .mobile\:hover\:translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem;
  }

  .mobile\:hover\:-translate-x-0:hover{
    --tw-translate-x: 0px;
  }

  .mobile\:hover\:-translate-x-1:hover{
    --tw-translate-x: -0.25rem;
  }

  .mobile\:hover\:-translate-x-2:hover{
    --tw-translate-x: -0.5rem;
  }

  .mobile\:hover\:-translate-x-3:hover{
    --tw-translate-x: -0.75rem;
  }

  .mobile\:hover\:-translate-x-4:hover{
    --tw-translate-x: -1rem;
  }

  .mobile\:hover\:-translate-x-5:hover{
    --tw-translate-x: -1.25rem;
  }

  .mobile\:hover\:-translate-x-6:hover{
    --tw-translate-x: -1.5rem;
  }

  .mobile\:hover\:-translate-x-7:hover{
    --tw-translate-x: -1.75rem;
  }

  .mobile\:hover\:-translate-x-8:hover{
    --tw-translate-x: -2rem;
  }

  .mobile\:hover\:-translate-x-9:hover{
    --tw-translate-x: -2.25rem;
  }

  .mobile\:hover\:-translate-x-10:hover{
    --tw-translate-x: -2.5rem;
  }

  .mobile\:hover\:-translate-x-11:hover{
    --tw-translate-x: -2.75rem;
  }

  .mobile\:hover\:-translate-x-12:hover{
    --tw-translate-x: -3rem;
  }

  .mobile\:hover\:-translate-x-14:hover{
    --tw-translate-x: -3.5rem;
  }

  .mobile\:hover\:-translate-x-16:hover{
    --tw-translate-x: -4rem;
  }

  .mobile\:hover\:-translate-x-20:hover{
    --tw-translate-x: -5rem;
  }

  .mobile\:hover\:-translate-x-24:hover{
    --tw-translate-x: -6rem;
  }

  .mobile\:hover\:-translate-x-28:hover{
    --tw-translate-x: -7rem;
  }

  .mobile\:hover\:-translate-x-32:hover{
    --tw-translate-x: -8rem;
  }

  .mobile\:hover\:-translate-x-36:hover{
    --tw-translate-x: -9rem;
  }

  .mobile\:hover\:-translate-x-40:hover{
    --tw-translate-x: -10rem;
  }

  .mobile\:hover\:-translate-x-44:hover{
    --tw-translate-x: -11rem;
  }

  .mobile\:hover\:-translate-x-48:hover{
    --tw-translate-x: -12rem;
  }

  .mobile\:hover\:-translate-x-52:hover{
    --tw-translate-x: -13rem;
  }

  .mobile\:hover\:-translate-x-56:hover{
    --tw-translate-x: -14rem;
  }

  .mobile\:hover\:-translate-x-60:hover{
    --tw-translate-x: -15rem;
  }

  .mobile\:hover\:-translate-x-64:hover{
    --tw-translate-x: -16rem;
  }

  .mobile\:hover\:-translate-x-72:hover{
    --tw-translate-x: -18rem;
  }

  .mobile\:hover\:-translate-x-80:hover{
    --tw-translate-x: -20rem;
  }

  .mobile\:hover\:-translate-x-96:hover{
    --tw-translate-x: -24rem;
  }

  .mobile\:hover\:-translate-x-px:hover{
    --tw-translate-x: -1px;
  }

  .mobile\:hover\:-translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem;
  }

  .mobile\:hover\:-translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem;
  }

  .mobile\:hover\:-translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem;
  }

  .mobile\:hover\:-translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem;
  }

  .mobile\:hover\:translate-x-1\/2:hover{
    --tw-translate-x: 50%;
  }

  .mobile\:hover\:translate-x-1\/3:hover{
    --tw-translate-x: 33.333333%;
  }

  .mobile\:hover\:translate-x-2\/3:hover{
    --tw-translate-x: 66.666667%;
  }

  .mobile\:hover\:translate-x-1\/4:hover{
    --tw-translate-x: 25%;
  }

  .mobile\:hover\:translate-x-2\/4:hover{
    --tw-translate-x: 50%;
  }

  .mobile\:hover\:translate-x-3\/4:hover{
    --tw-translate-x: 75%;
  }

  .mobile\:hover\:translate-x-full:hover{
    --tw-translate-x: 100%;
  }

  .mobile\:hover\:-translate-x-1\/2:hover{
    --tw-translate-x: -50%;
  }

  .mobile\:hover\:-translate-x-1\/3:hover{
    --tw-translate-x: -33.333333%;
  }

  .mobile\:hover\:-translate-x-2\/3:hover{
    --tw-translate-x: -66.666667%;
  }

  .mobile\:hover\:-translate-x-1\/4:hover{
    --tw-translate-x: -25%;
  }

  .mobile\:hover\:-translate-x-2\/4:hover{
    --tw-translate-x: -50%;
  }

  .mobile\:hover\:-translate-x-3\/4:hover{
    --tw-translate-x: -75%;
  }

  .mobile\:hover\:-translate-x-full:hover{
    --tw-translate-x: -100%;
  }

  .mobile\:hover\:translate-x-neg1\/2:hover{
    --tw-translate-x: -50%;
  }

  .mobile\:hover\:translate-x-neg3\/4:hover{
    --tw-translate-x: -75%;
  }

  .mobile\:hover\:translate-y-0:hover{
    --tw-translate-y: 0px;
  }

  .mobile\:hover\:translate-y-1:hover{
    --tw-translate-y: 0.25rem;
  }

  .mobile\:hover\:translate-y-2:hover{
    --tw-translate-y: 0.5rem;
  }

  .mobile\:hover\:translate-y-3:hover{
    --tw-translate-y: 0.75rem;
  }

  .mobile\:hover\:translate-y-4:hover{
    --tw-translate-y: 1rem;
  }

  .mobile\:hover\:translate-y-5:hover{
    --tw-translate-y: 1.25rem;
  }

  .mobile\:hover\:translate-y-6:hover{
    --tw-translate-y: 1.5rem;
  }

  .mobile\:hover\:translate-y-7:hover{
    --tw-translate-y: 1.75rem;
  }

  .mobile\:hover\:translate-y-8:hover{
    --tw-translate-y: 2rem;
  }

  .mobile\:hover\:translate-y-9:hover{
    --tw-translate-y: 2.25rem;
  }

  .mobile\:hover\:translate-y-10:hover{
    --tw-translate-y: 2.5rem;
  }

  .mobile\:hover\:translate-y-11:hover{
    --tw-translate-y: 2.75rem;
  }

  .mobile\:hover\:translate-y-12:hover{
    --tw-translate-y: 3rem;
  }

  .mobile\:hover\:translate-y-14:hover{
    --tw-translate-y: 3.5rem;
  }

  .mobile\:hover\:translate-y-16:hover{
    --tw-translate-y: 4rem;
  }

  .mobile\:hover\:translate-y-20:hover{
    --tw-translate-y: 5rem;
  }

  .mobile\:hover\:translate-y-24:hover{
    --tw-translate-y: 6rem;
  }

  .mobile\:hover\:translate-y-28:hover{
    --tw-translate-y: 7rem;
  }

  .mobile\:hover\:translate-y-32:hover{
    --tw-translate-y: 8rem;
  }

  .mobile\:hover\:translate-y-36:hover{
    --tw-translate-y: 9rem;
  }

  .mobile\:hover\:translate-y-40:hover{
    --tw-translate-y: 10rem;
  }

  .mobile\:hover\:translate-y-44:hover{
    --tw-translate-y: 11rem;
  }

  .mobile\:hover\:translate-y-48:hover{
    --tw-translate-y: 12rem;
  }

  .mobile\:hover\:translate-y-52:hover{
    --tw-translate-y: 13rem;
  }

  .mobile\:hover\:translate-y-56:hover{
    --tw-translate-y: 14rem;
  }

  .mobile\:hover\:translate-y-60:hover{
    --tw-translate-y: 15rem;
  }

  .mobile\:hover\:translate-y-64:hover{
    --tw-translate-y: 16rem;
  }

  .mobile\:hover\:translate-y-72:hover{
    --tw-translate-y: 18rem;
  }

  .mobile\:hover\:translate-y-80:hover{
    --tw-translate-y: 20rem;
  }

  .mobile\:hover\:translate-y-96:hover{
    --tw-translate-y: 24rem;
  }

  .mobile\:hover\:translate-y-px:hover{
    --tw-translate-y: 1px;
  }

  .mobile\:hover\:translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem;
  }

  .mobile\:hover\:translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem;
  }

  .mobile\:hover\:translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem;
  }

  .mobile\:hover\:translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem;
  }

  .mobile\:hover\:-translate-y-0:hover{
    --tw-translate-y: 0px;
  }

  .mobile\:hover\:-translate-y-1:hover{
    --tw-translate-y: -0.25rem;
  }

  .mobile\:hover\:-translate-y-2:hover{
    --tw-translate-y: -0.5rem;
  }

  .mobile\:hover\:-translate-y-3:hover{
    --tw-translate-y: -0.75rem;
  }

  .mobile\:hover\:-translate-y-4:hover{
    --tw-translate-y: -1rem;
  }

  .mobile\:hover\:-translate-y-5:hover{
    --tw-translate-y: -1.25rem;
  }

  .mobile\:hover\:-translate-y-6:hover{
    --tw-translate-y: -1.5rem;
  }

  .mobile\:hover\:-translate-y-7:hover{
    --tw-translate-y: -1.75rem;
  }

  .mobile\:hover\:-translate-y-8:hover{
    --tw-translate-y: -2rem;
  }

  .mobile\:hover\:-translate-y-9:hover{
    --tw-translate-y: -2.25rem;
  }

  .mobile\:hover\:-translate-y-10:hover{
    --tw-translate-y: -2.5rem;
  }

  .mobile\:hover\:-translate-y-11:hover{
    --tw-translate-y: -2.75rem;
  }

  .mobile\:hover\:-translate-y-12:hover{
    --tw-translate-y: -3rem;
  }

  .mobile\:hover\:-translate-y-14:hover{
    --tw-translate-y: -3.5rem;
  }

  .mobile\:hover\:-translate-y-16:hover{
    --tw-translate-y: -4rem;
  }

  .mobile\:hover\:-translate-y-20:hover{
    --tw-translate-y: -5rem;
  }

  .mobile\:hover\:-translate-y-24:hover{
    --tw-translate-y: -6rem;
  }

  .mobile\:hover\:-translate-y-28:hover{
    --tw-translate-y: -7rem;
  }

  .mobile\:hover\:-translate-y-32:hover{
    --tw-translate-y: -8rem;
  }

  .mobile\:hover\:-translate-y-36:hover{
    --tw-translate-y: -9rem;
  }

  .mobile\:hover\:-translate-y-40:hover{
    --tw-translate-y: -10rem;
  }

  .mobile\:hover\:-translate-y-44:hover{
    --tw-translate-y: -11rem;
  }

  .mobile\:hover\:-translate-y-48:hover{
    --tw-translate-y: -12rem;
  }

  .mobile\:hover\:-translate-y-52:hover{
    --tw-translate-y: -13rem;
  }

  .mobile\:hover\:-translate-y-56:hover{
    --tw-translate-y: -14rem;
  }

  .mobile\:hover\:-translate-y-60:hover{
    --tw-translate-y: -15rem;
  }

  .mobile\:hover\:-translate-y-64:hover{
    --tw-translate-y: -16rem;
  }

  .mobile\:hover\:-translate-y-72:hover{
    --tw-translate-y: -18rem;
  }

  .mobile\:hover\:-translate-y-80:hover{
    --tw-translate-y: -20rem;
  }

  .mobile\:hover\:-translate-y-96:hover{
    --tw-translate-y: -24rem;
  }

  .mobile\:hover\:-translate-y-px:hover{
    --tw-translate-y: -1px;
  }

  .mobile\:hover\:-translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem;
  }

  .mobile\:hover\:-translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem;
  }

  .mobile\:hover\:-translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem;
  }

  .mobile\:hover\:-translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem;
  }

  .mobile\:hover\:translate-y-1\/2:hover{
    --tw-translate-y: 50%;
  }

  .mobile\:hover\:translate-y-1\/3:hover{
    --tw-translate-y: 33.333333%;
  }

  .mobile\:hover\:translate-y-2\/3:hover{
    --tw-translate-y: 66.666667%;
  }

  .mobile\:hover\:translate-y-1\/4:hover{
    --tw-translate-y: 25%;
  }

  .mobile\:hover\:translate-y-2\/4:hover{
    --tw-translate-y: 50%;
  }

  .mobile\:hover\:translate-y-3\/4:hover{
    --tw-translate-y: 75%;
  }

  .mobile\:hover\:translate-y-full:hover{
    --tw-translate-y: 100%;
  }

  .mobile\:hover\:-translate-y-1\/2:hover{
    --tw-translate-y: -50%;
  }

  .mobile\:hover\:-translate-y-1\/3:hover{
    --tw-translate-y: -33.333333%;
  }

  .mobile\:hover\:-translate-y-2\/3:hover{
    --tw-translate-y: -66.666667%;
  }

  .mobile\:hover\:-translate-y-1\/4:hover{
    --tw-translate-y: -25%;
  }

  .mobile\:hover\:-translate-y-2\/4:hover{
    --tw-translate-y: -50%;
  }

  .mobile\:hover\:-translate-y-3\/4:hover{
    --tw-translate-y: -75%;
  }

  .mobile\:hover\:-translate-y-full:hover{
    --tw-translate-y: -100%;
  }

  .mobile\:hover\:translate-y-neg1\/2:hover{
    --tw-translate-y: -50%;
  }

  .mobile\:hover\:translate-y-neg3\/4:hover{
    --tw-translate-y: -75%;
  }

  .mobile\:focus\:translate-x-0:focus{
    --tw-translate-x: 0px;
  }

  .mobile\:focus\:translate-x-1:focus{
    --tw-translate-x: 0.25rem;
  }

  .mobile\:focus\:translate-x-2:focus{
    --tw-translate-x: 0.5rem;
  }

  .mobile\:focus\:translate-x-3:focus{
    --tw-translate-x: 0.75rem;
  }

  .mobile\:focus\:translate-x-4:focus{
    --tw-translate-x: 1rem;
  }

  .mobile\:focus\:translate-x-5:focus{
    --tw-translate-x: 1.25rem;
  }

  .mobile\:focus\:translate-x-6:focus{
    --tw-translate-x: 1.5rem;
  }

  .mobile\:focus\:translate-x-7:focus{
    --tw-translate-x: 1.75rem;
  }

  .mobile\:focus\:translate-x-8:focus{
    --tw-translate-x: 2rem;
  }

  .mobile\:focus\:translate-x-9:focus{
    --tw-translate-x: 2.25rem;
  }

  .mobile\:focus\:translate-x-10:focus{
    --tw-translate-x: 2.5rem;
  }

  .mobile\:focus\:translate-x-11:focus{
    --tw-translate-x: 2.75rem;
  }

  .mobile\:focus\:translate-x-12:focus{
    --tw-translate-x: 3rem;
  }

  .mobile\:focus\:translate-x-14:focus{
    --tw-translate-x: 3.5rem;
  }

  .mobile\:focus\:translate-x-16:focus{
    --tw-translate-x: 4rem;
  }

  .mobile\:focus\:translate-x-20:focus{
    --tw-translate-x: 5rem;
  }

  .mobile\:focus\:translate-x-24:focus{
    --tw-translate-x: 6rem;
  }

  .mobile\:focus\:translate-x-28:focus{
    --tw-translate-x: 7rem;
  }

  .mobile\:focus\:translate-x-32:focus{
    --tw-translate-x: 8rem;
  }

  .mobile\:focus\:translate-x-36:focus{
    --tw-translate-x: 9rem;
  }

  .mobile\:focus\:translate-x-40:focus{
    --tw-translate-x: 10rem;
  }

  .mobile\:focus\:translate-x-44:focus{
    --tw-translate-x: 11rem;
  }

  .mobile\:focus\:translate-x-48:focus{
    --tw-translate-x: 12rem;
  }

  .mobile\:focus\:translate-x-52:focus{
    --tw-translate-x: 13rem;
  }

  .mobile\:focus\:translate-x-56:focus{
    --tw-translate-x: 14rem;
  }

  .mobile\:focus\:translate-x-60:focus{
    --tw-translate-x: 15rem;
  }

  .mobile\:focus\:translate-x-64:focus{
    --tw-translate-x: 16rem;
  }

  .mobile\:focus\:translate-x-72:focus{
    --tw-translate-x: 18rem;
  }

  .mobile\:focus\:translate-x-80:focus{
    --tw-translate-x: 20rem;
  }

  .mobile\:focus\:translate-x-96:focus{
    --tw-translate-x: 24rem;
  }

  .mobile\:focus\:translate-x-px:focus{
    --tw-translate-x: 1px;
  }

  .mobile\:focus\:translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem;
  }

  .mobile\:focus\:translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem;
  }

  .mobile\:focus\:translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem;
  }

  .mobile\:focus\:translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem;
  }

  .mobile\:focus\:-translate-x-0:focus{
    --tw-translate-x: 0px;
  }

  .mobile\:focus\:-translate-x-1:focus{
    --tw-translate-x: -0.25rem;
  }

  .mobile\:focus\:-translate-x-2:focus{
    --tw-translate-x: -0.5rem;
  }

  .mobile\:focus\:-translate-x-3:focus{
    --tw-translate-x: -0.75rem;
  }

  .mobile\:focus\:-translate-x-4:focus{
    --tw-translate-x: -1rem;
  }

  .mobile\:focus\:-translate-x-5:focus{
    --tw-translate-x: -1.25rem;
  }

  .mobile\:focus\:-translate-x-6:focus{
    --tw-translate-x: -1.5rem;
  }

  .mobile\:focus\:-translate-x-7:focus{
    --tw-translate-x: -1.75rem;
  }

  .mobile\:focus\:-translate-x-8:focus{
    --tw-translate-x: -2rem;
  }

  .mobile\:focus\:-translate-x-9:focus{
    --tw-translate-x: -2.25rem;
  }

  .mobile\:focus\:-translate-x-10:focus{
    --tw-translate-x: -2.5rem;
  }

  .mobile\:focus\:-translate-x-11:focus{
    --tw-translate-x: -2.75rem;
  }

  .mobile\:focus\:-translate-x-12:focus{
    --tw-translate-x: -3rem;
  }

  .mobile\:focus\:-translate-x-14:focus{
    --tw-translate-x: -3.5rem;
  }

  .mobile\:focus\:-translate-x-16:focus{
    --tw-translate-x: -4rem;
  }

  .mobile\:focus\:-translate-x-20:focus{
    --tw-translate-x: -5rem;
  }

  .mobile\:focus\:-translate-x-24:focus{
    --tw-translate-x: -6rem;
  }

  .mobile\:focus\:-translate-x-28:focus{
    --tw-translate-x: -7rem;
  }

  .mobile\:focus\:-translate-x-32:focus{
    --tw-translate-x: -8rem;
  }

  .mobile\:focus\:-translate-x-36:focus{
    --tw-translate-x: -9rem;
  }

  .mobile\:focus\:-translate-x-40:focus{
    --tw-translate-x: -10rem;
  }

  .mobile\:focus\:-translate-x-44:focus{
    --tw-translate-x: -11rem;
  }

  .mobile\:focus\:-translate-x-48:focus{
    --tw-translate-x: -12rem;
  }

  .mobile\:focus\:-translate-x-52:focus{
    --tw-translate-x: -13rem;
  }

  .mobile\:focus\:-translate-x-56:focus{
    --tw-translate-x: -14rem;
  }

  .mobile\:focus\:-translate-x-60:focus{
    --tw-translate-x: -15rem;
  }

  .mobile\:focus\:-translate-x-64:focus{
    --tw-translate-x: -16rem;
  }

  .mobile\:focus\:-translate-x-72:focus{
    --tw-translate-x: -18rem;
  }

  .mobile\:focus\:-translate-x-80:focus{
    --tw-translate-x: -20rem;
  }

  .mobile\:focus\:-translate-x-96:focus{
    --tw-translate-x: -24rem;
  }

  .mobile\:focus\:-translate-x-px:focus{
    --tw-translate-x: -1px;
  }

  .mobile\:focus\:-translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem;
  }

  .mobile\:focus\:-translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem;
  }

  .mobile\:focus\:-translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem;
  }

  .mobile\:focus\:-translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem;
  }

  .mobile\:focus\:translate-x-1\/2:focus{
    --tw-translate-x: 50%;
  }

  .mobile\:focus\:translate-x-1\/3:focus{
    --tw-translate-x: 33.333333%;
  }

  .mobile\:focus\:translate-x-2\/3:focus{
    --tw-translate-x: 66.666667%;
  }

  .mobile\:focus\:translate-x-1\/4:focus{
    --tw-translate-x: 25%;
  }

  .mobile\:focus\:translate-x-2\/4:focus{
    --tw-translate-x: 50%;
  }

  .mobile\:focus\:translate-x-3\/4:focus{
    --tw-translate-x: 75%;
  }

  .mobile\:focus\:translate-x-full:focus{
    --tw-translate-x: 100%;
  }

  .mobile\:focus\:-translate-x-1\/2:focus{
    --tw-translate-x: -50%;
  }

  .mobile\:focus\:-translate-x-1\/3:focus{
    --tw-translate-x: -33.333333%;
  }

  .mobile\:focus\:-translate-x-2\/3:focus{
    --tw-translate-x: -66.666667%;
  }

  .mobile\:focus\:-translate-x-1\/4:focus{
    --tw-translate-x: -25%;
  }

  .mobile\:focus\:-translate-x-2\/4:focus{
    --tw-translate-x: -50%;
  }

  .mobile\:focus\:-translate-x-3\/4:focus{
    --tw-translate-x: -75%;
  }

  .mobile\:focus\:-translate-x-full:focus{
    --tw-translate-x: -100%;
  }

  .mobile\:focus\:translate-x-neg1\/2:focus{
    --tw-translate-x: -50%;
  }

  .mobile\:focus\:translate-x-neg3\/4:focus{
    --tw-translate-x: -75%;
  }

  .mobile\:focus\:translate-y-0:focus{
    --tw-translate-y: 0px;
  }

  .mobile\:focus\:translate-y-1:focus{
    --tw-translate-y: 0.25rem;
  }

  .mobile\:focus\:translate-y-2:focus{
    --tw-translate-y: 0.5rem;
  }

  .mobile\:focus\:translate-y-3:focus{
    --tw-translate-y: 0.75rem;
  }

  .mobile\:focus\:translate-y-4:focus{
    --tw-translate-y: 1rem;
  }

  .mobile\:focus\:translate-y-5:focus{
    --tw-translate-y: 1.25rem;
  }

  .mobile\:focus\:translate-y-6:focus{
    --tw-translate-y: 1.5rem;
  }

  .mobile\:focus\:translate-y-7:focus{
    --tw-translate-y: 1.75rem;
  }

  .mobile\:focus\:translate-y-8:focus{
    --tw-translate-y: 2rem;
  }

  .mobile\:focus\:translate-y-9:focus{
    --tw-translate-y: 2.25rem;
  }

  .mobile\:focus\:translate-y-10:focus{
    --tw-translate-y: 2.5rem;
  }

  .mobile\:focus\:translate-y-11:focus{
    --tw-translate-y: 2.75rem;
  }

  .mobile\:focus\:translate-y-12:focus{
    --tw-translate-y: 3rem;
  }

  .mobile\:focus\:translate-y-14:focus{
    --tw-translate-y: 3.5rem;
  }

  .mobile\:focus\:translate-y-16:focus{
    --tw-translate-y: 4rem;
  }

  .mobile\:focus\:translate-y-20:focus{
    --tw-translate-y: 5rem;
  }

  .mobile\:focus\:translate-y-24:focus{
    --tw-translate-y: 6rem;
  }

  .mobile\:focus\:translate-y-28:focus{
    --tw-translate-y: 7rem;
  }

  .mobile\:focus\:translate-y-32:focus{
    --tw-translate-y: 8rem;
  }

  .mobile\:focus\:translate-y-36:focus{
    --tw-translate-y: 9rem;
  }

  .mobile\:focus\:translate-y-40:focus{
    --tw-translate-y: 10rem;
  }

  .mobile\:focus\:translate-y-44:focus{
    --tw-translate-y: 11rem;
  }

  .mobile\:focus\:translate-y-48:focus{
    --tw-translate-y: 12rem;
  }

  .mobile\:focus\:translate-y-52:focus{
    --tw-translate-y: 13rem;
  }

  .mobile\:focus\:translate-y-56:focus{
    --tw-translate-y: 14rem;
  }

  .mobile\:focus\:translate-y-60:focus{
    --tw-translate-y: 15rem;
  }

  .mobile\:focus\:translate-y-64:focus{
    --tw-translate-y: 16rem;
  }

  .mobile\:focus\:translate-y-72:focus{
    --tw-translate-y: 18rem;
  }

  .mobile\:focus\:translate-y-80:focus{
    --tw-translate-y: 20rem;
  }

  .mobile\:focus\:translate-y-96:focus{
    --tw-translate-y: 24rem;
  }

  .mobile\:focus\:translate-y-px:focus{
    --tw-translate-y: 1px;
  }

  .mobile\:focus\:translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem;
  }

  .mobile\:focus\:translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem;
  }

  .mobile\:focus\:translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem;
  }

  .mobile\:focus\:translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem;
  }

  .mobile\:focus\:-translate-y-0:focus{
    --tw-translate-y: 0px;
  }

  .mobile\:focus\:-translate-y-1:focus{
    --tw-translate-y: -0.25rem;
  }

  .mobile\:focus\:-translate-y-2:focus{
    --tw-translate-y: -0.5rem;
  }

  .mobile\:focus\:-translate-y-3:focus{
    --tw-translate-y: -0.75rem;
  }

  .mobile\:focus\:-translate-y-4:focus{
    --tw-translate-y: -1rem;
  }

  .mobile\:focus\:-translate-y-5:focus{
    --tw-translate-y: -1.25rem;
  }

  .mobile\:focus\:-translate-y-6:focus{
    --tw-translate-y: -1.5rem;
  }

  .mobile\:focus\:-translate-y-7:focus{
    --tw-translate-y: -1.75rem;
  }

  .mobile\:focus\:-translate-y-8:focus{
    --tw-translate-y: -2rem;
  }

  .mobile\:focus\:-translate-y-9:focus{
    --tw-translate-y: -2.25rem;
  }

  .mobile\:focus\:-translate-y-10:focus{
    --tw-translate-y: -2.5rem;
  }

  .mobile\:focus\:-translate-y-11:focus{
    --tw-translate-y: -2.75rem;
  }

  .mobile\:focus\:-translate-y-12:focus{
    --tw-translate-y: -3rem;
  }

  .mobile\:focus\:-translate-y-14:focus{
    --tw-translate-y: -3.5rem;
  }

  .mobile\:focus\:-translate-y-16:focus{
    --tw-translate-y: -4rem;
  }

  .mobile\:focus\:-translate-y-20:focus{
    --tw-translate-y: -5rem;
  }

  .mobile\:focus\:-translate-y-24:focus{
    --tw-translate-y: -6rem;
  }

  .mobile\:focus\:-translate-y-28:focus{
    --tw-translate-y: -7rem;
  }

  .mobile\:focus\:-translate-y-32:focus{
    --tw-translate-y: -8rem;
  }

  .mobile\:focus\:-translate-y-36:focus{
    --tw-translate-y: -9rem;
  }

  .mobile\:focus\:-translate-y-40:focus{
    --tw-translate-y: -10rem;
  }

  .mobile\:focus\:-translate-y-44:focus{
    --tw-translate-y: -11rem;
  }

  .mobile\:focus\:-translate-y-48:focus{
    --tw-translate-y: -12rem;
  }

  .mobile\:focus\:-translate-y-52:focus{
    --tw-translate-y: -13rem;
  }

  .mobile\:focus\:-translate-y-56:focus{
    --tw-translate-y: -14rem;
  }

  .mobile\:focus\:-translate-y-60:focus{
    --tw-translate-y: -15rem;
  }

  .mobile\:focus\:-translate-y-64:focus{
    --tw-translate-y: -16rem;
  }

  .mobile\:focus\:-translate-y-72:focus{
    --tw-translate-y: -18rem;
  }

  .mobile\:focus\:-translate-y-80:focus{
    --tw-translate-y: -20rem;
  }

  .mobile\:focus\:-translate-y-96:focus{
    --tw-translate-y: -24rem;
  }

  .mobile\:focus\:-translate-y-px:focus{
    --tw-translate-y: -1px;
  }

  .mobile\:focus\:-translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem;
  }

  .mobile\:focus\:-translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem;
  }

  .mobile\:focus\:-translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem;
  }

  .mobile\:focus\:-translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem;
  }

  .mobile\:focus\:translate-y-1\/2:focus{
    --tw-translate-y: 50%;
  }

  .mobile\:focus\:translate-y-1\/3:focus{
    --tw-translate-y: 33.333333%;
  }

  .mobile\:focus\:translate-y-2\/3:focus{
    --tw-translate-y: 66.666667%;
  }

  .mobile\:focus\:translate-y-1\/4:focus{
    --tw-translate-y: 25%;
  }

  .mobile\:focus\:translate-y-2\/4:focus{
    --tw-translate-y: 50%;
  }

  .mobile\:focus\:translate-y-3\/4:focus{
    --tw-translate-y: 75%;
  }

  .mobile\:focus\:translate-y-full:focus{
    --tw-translate-y: 100%;
  }

  .mobile\:focus\:-translate-y-1\/2:focus{
    --tw-translate-y: -50%;
  }

  .mobile\:focus\:-translate-y-1\/3:focus{
    --tw-translate-y: -33.333333%;
  }

  .mobile\:focus\:-translate-y-2\/3:focus{
    --tw-translate-y: -66.666667%;
  }

  .mobile\:focus\:-translate-y-1\/4:focus{
    --tw-translate-y: -25%;
  }

  .mobile\:focus\:-translate-y-2\/4:focus{
    --tw-translate-y: -50%;
  }

  .mobile\:focus\:-translate-y-3\/4:focus{
    --tw-translate-y: -75%;
  }

  .mobile\:focus\:-translate-y-full:focus{
    --tw-translate-y: -100%;
  }

  .mobile\:focus\:translate-y-neg1\/2:focus{
    --tw-translate-y: -50%;
  }

  .mobile\:focus\:translate-y-neg3\/4:focus{
    --tw-translate-y: -75%;
  }

  .mobile\:rotate-0{
    --tw-rotate: 0deg;
  }

  .mobile\:rotate-1{
    --tw-rotate: 1deg;
  }

  .mobile\:rotate-2{
    --tw-rotate: 2deg;
  }

  .mobile\:rotate-3{
    --tw-rotate: 3deg;
  }

  .mobile\:rotate-6{
    --tw-rotate: 6deg;
  }

  .mobile\:rotate-12{
    --tw-rotate: 12deg;
  }

  .mobile\:rotate-45{
    --tw-rotate: 45deg;
  }

  .mobile\:rotate-90{
    --tw-rotate: 90deg;
  }

  .mobile\:rotate-180{
    --tw-rotate: 180deg;
  }

  .mobile\:-rotate-180{
    --tw-rotate: -180deg;
  }

  .mobile\:-rotate-90{
    --tw-rotate: -90deg;
  }

  .mobile\:-rotate-45{
    --tw-rotate: -45deg;
  }

  .mobile\:-rotate-12{
    --tw-rotate: -12deg;
  }

  .mobile\:-rotate-6{
    --tw-rotate: -6deg;
  }

  .mobile\:-rotate-3{
    --tw-rotate: -3deg;
  }

  .mobile\:-rotate-2{
    --tw-rotate: -2deg;
  }

  .mobile\:-rotate-1{
    --tw-rotate: -1deg;
  }

  .mobile\:hover\:rotate-0:hover{
    --tw-rotate: 0deg;
  }

  .mobile\:hover\:rotate-1:hover{
    --tw-rotate: 1deg;
  }

  .mobile\:hover\:rotate-2:hover{
    --tw-rotate: 2deg;
  }

  .mobile\:hover\:rotate-3:hover{
    --tw-rotate: 3deg;
  }

  .mobile\:hover\:rotate-6:hover{
    --tw-rotate: 6deg;
  }

  .mobile\:hover\:rotate-12:hover{
    --tw-rotate: 12deg;
  }

  .mobile\:hover\:rotate-45:hover{
    --tw-rotate: 45deg;
  }

  .mobile\:hover\:rotate-90:hover{
    --tw-rotate: 90deg;
  }

  .mobile\:hover\:rotate-180:hover{
    --tw-rotate: 180deg;
  }

  .mobile\:hover\:-rotate-180:hover{
    --tw-rotate: -180deg;
  }

  .mobile\:hover\:-rotate-90:hover{
    --tw-rotate: -90deg;
  }

  .mobile\:hover\:-rotate-45:hover{
    --tw-rotate: -45deg;
  }

  .mobile\:hover\:-rotate-12:hover{
    --tw-rotate: -12deg;
  }

  .mobile\:hover\:-rotate-6:hover{
    --tw-rotate: -6deg;
  }

  .mobile\:hover\:-rotate-3:hover{
    --tw-rotate: -3deg;
  }

  .mobile\:hover\:-rotate-2:hover{
    --tw-rotate: -2deg;
  }

  .mobile\:hover\:-rotate-1:hover{
    --tw-rotate: -1deg;
  }

  .mobile\:focus\:rotate-0:focus{
    --tw-rotate: 0deg;
  }

  .mobile\:focus\:rotate-1:focus{
    --tw-rotate: 1deg;
  }

  .mobile\:focus\:rotate-2:focus{
    --tw-rotate: 2deg;
  }

  .mobile\:focus\:rotate-3:focus{
    --tw-rotate: 3deg;
  }

  .mobile\:focus\:rotate-6:focus{
    --tw-rotate: 6deg;
  }

  .mobile\:focus\:rotate-12:focus{
    --tw-rotate: 12deg;
  }

  .mobile\:focus\:rotate-45:focus{
    --tw-rotate: 45deg;
  }

  .mobile\:focus\:rotate-90:focus{
    --tw-rotate: 90deg;
  }

  .mobile\:focus\:rotate-180:focus{
    --tw-rotate: 180deg;
  }

  .mobile\:focus\:-rotate-180:focus{
    --tw-rotate: -180deg;
  }

  .mobile\:focus\:-rotate-90:focus{
    --tw-rotate: -90deg;
  }

  .mobile\:focus\:-rotate-45:focus{
    --tw-rotate: -45deg;
  }

  .mobile\:focus\:-rotate-12:focus{
    --tw-rotate: -12deg;
  }

  .mobile\:focus\:-rotate-6:focus{
    --tw-rotate: -6deg;
  }

  .mobile\:focus\:-rotate-3:focus{
    --tw-rotate: -3deg;
  }

  .mobile\:focus\:-rotate-2:focus{
    --tw-rotate: -2deg;
  }

  .mobile\:focus\:-rotate-1:focus{
    --tw-rotate: -1deg;
  }

  .mobile\:skew-x-0{
    --tw-skew-x: 0deg;
  }

  .mobile\:skew-x-1{
    --tw-skew-x: 1deg;
  }

  .mobile\:skew-x-2{
    --tw-skew-x: 2deg;
  }

  .mobile\:skew-x-3{
    --tw-skew-x: 3deg;
  }

  .mobile\:skew-x-6{
    --tw-skew-x: 6deg;
  }

  .mobile\:skew-x-12{
    --tw-skew-x: 12deg;
  }

  .mobile\:-skew-x-12{
    --tw-skew-x: -12deg;
  }

  .mobile\:-skew-x-6{
    --tw-skew-x: -6deg;
  }

  .mobile\:-skew-x-3{
    --tw-skew-x: -3deg;
  }

  .mobile\:-skew-x-2{
    --tw-skew-x: -2deg;
  }

  .mobile\:-skew-x-1{
    --tw-skew-x: -1deg;
  }

  .mobile\:skew-y-0{
    --tw-skew-y: 0deg;
  }

  .mobile\:skew-y-1{
    --tw-skew-y: 1deg;
  }

  .mobile\:skew-y-2{
    --tw-skew-y: 2deg;
  }

  .mobile\:skew-y-3{
    --tw-skew-y: 3deg;
  }

  .mobile\:skew-y-6{
    --tw-skew-y: 6deg;
  }

  .mobile\:skew-y-12{
    --tw-skew-y: 12deg;
  }

  .mobile\:-skew-y-12{
    --tw-skew-y: -12deg;
  }

  .mobile\:-skew-y-6{
    --tw-skew-y: -6deg;
  }

  .mobile\:-skew-y-3{
    --tw-skew-y: -3deg;
  }

  .mobile\:-skew-y-2{
    --tw-skew-y: -2deg;
  }

  .mobile\:-skew-y-1{
    --tw-skew-y: -1deg;
  }

  .mobile\:hover\:skew-x-0:hover{
    --tw-skew-x: 0deg;
  }

  .mobile\:hover\:skew-x-1:hover{
    --tw-skew-x: 1deg;
  }

  .mobile\:hover\:skew-x-2:hover{
    --tw-skew-x: 2deg;
  }

  .mobile\:hover\:skew-x-3:hover{
    --tw-skew-x: 3deg;
  }

  .mobile\:hover\:skew-x-6:hover{
    --tw-skew-x: 6deg;
  }

  .mobile\:hover\:skew-x-12:hover{
    --tw-skew-x: 12deg;
  }

  .mobile\:hover\:-skew-x-12:hover{
    --tw-skew-x: -12deg;
  }

  .mobile\:hover\:-skew-x-6:hover{
    --tw-skew-x: -6deg;
  }

  .mobile\:hover\:-skew-x-3:hover{
    --tw-skew-x: -3deg;
  }

  .mobile\:hover\:-skew-x-2:hover{
    --tw-skew-x: -2deg;
  }

  .mobile\:hover\:-skew-x-1:hover{
    --tw-skew-x: -1deg;
  }

  .mobile\:hover\:skew-y-0:hover{
    --tw-skew-y: 0deg;
  }

  .mobile\:hover\:skew-y-1:hover{
    --tw-skew-y: 1deg;
  }

  .mobile\:hover\:skew-y-2:hover{
    --tw-skew-y: 2deg;
  }

  .mobile\:hover\:skew-y-3:hover{
    --tw-skew-y: 3deg;
  }

  .mobile\:hover\:skew-y-6:hover{
    --tw-skew-y: 6deg;
  }

  .mobile\:hover\:skew-y-12:hover{
    --tw-skew-y: 12deg;
  }

  .mobile\:hover\:-skew-y-12:hover{
    --tw-skew-y: -12deg;
  }

  .mobile\:hover\:-skew-y-6:hover{
    --tw-skew-y: -6deg;
  }

  .mobile\:hover\:-skew-y-3:hover{
    --tw-skew-y: -3deg;
  }

  .mobile\:hover\:-skew-y-2:hover{
    --tw-skew-y: -2deg;
  }

  .mobile\:hover\:-skew-y-1:hover{
    --tw-skew-y: -1deg;
  }

  .mobile\:focus\:skew-x-0:focus{
    --tw-skew-x: 0deg;
  }

  .mobile\:focus\:skew-x-1:focus{
    --tw-skew-x: 1deg;
  }

  .mobile\:focus\:skew-x-2:focus{
    --tw-skew-x: 2deg;
  }

  .mobile\:focus\:skew-x-3:focus{
    --tw-skew-x: 3deg;
  }

  .mobile\:focus\:skew-x-6:focus{
    --tw-skew-x: 6deg;
  }

  .mobile\:focus\:skew-x-12:focus{
    --tw-skew-x: 12deg;
  }

  .mobile\:focus\:-skew-x-12:focus{
    --tw-skew-x: -12deg;
  }

  .mobile\:focus\:-skew-x-6:focus{
    --tw-skew-x: -6deg;
  }

  .mobile\:focus\:-skew-x-3:focus{
    --tw-skew-x: -3deg;
  }

  .mobile\:focus\:-skew-x-2:focus{
    --tw-skew-x: -2deg;
  }

  .mobile\:focus\:-skew-x-1:focus{
    --tw-skew-x: -1deg;
  }

  .mobile\:focus\:skew-y-0:focus{
    --tw-skew-y: 0deg;
  }

  .mobile\:focus\:skew-y-1:focus{
    --tw-skew-y: 1deg;
  }

  .mobile\:focus\:skew-y-2:focus{
    --tw-skew-y: 2deg;
  }

  .mobile\:focus\:skew-y-3:focus{
    --tw-skew-y: 3deg;
  }

  .mobile\:focus\:skew-y-6:focus{
    --tw-skew-y: 6deg;
  }

  .mobile\:focus\:skew-y-12:focus{
    --tw-skew-y: 12deg;
  }

  .mobile\:focus\:-skew-y-12:focus{
    --tw-skew-y: -12deg;
  }

  .mobile\:focus\:-skew-y-6:focus{
    --tw-skew-y: -6deg;
  }

  .mobile\:focus\:-skew-y-3:focus{
    --tw-skew-y: -3deg;
  }

  .mobile\:focus\:-skew-y-2:focus{
    --tw-skew-y: -2deg;
  }

  .mobile\:focus\:-skew-y-1:focus{
    --tw-skew-y: -1deg;
  }

  .mobile\:scale-0{
    --tw-scale-x: 0;
    --tw-scale-y: 0;
  }

  .mobile\:scale-50{
    --tw-scale-x: .5;
    --tw-scale-y: .5;
  }

  .mobile\:scale-75{
    --tw-scale-x: .75;
    --tw-scale-y: .75;
  }

  .mobile\:scale-90{
    --tw-scale-x: .9;
    --tw-scale-y: .9;
  }

  .mobile\:scale-95{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
  }

  .mobile\:scale-100{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
  }

  .mobile\:scale-105{
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
  }

  .mobile\:scale-110{
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
  }

  .mobile\:scale-125{
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
  }

  .mobile\:scale-150{
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
  }

  .mobile\:hover\:scale-0:hover{
    --tw-scale-x: 0;
    --tw-scale-y: 0;
  }

  .mobile\:hover\:scale-50:hover{
    --tw-scale-x: .5;
    --tw-scale-y: .5;
  }

  .mobile\:hover\:scale-75:hover{
    --tw-scale-x: .75;
    --tw-scale-y: .75;
  }

  .mobile\:hover\:scale-90:hover{
    --tw-scale-x: .9;
    --tw-scale-y: .9;
  }

  .mobile\:hover\:scale-95:hover{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
  }

  .mobile\:hover\:scale-100:hover{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
  }

  .mobile\:hover\:scale-105:hover{
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
  }

  .mobile\:hover\:scale-110:hover{
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
  }

  .mobile\:hover\:scale-125:hover{
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
  }

  .mobile\:hover\:scale-150:hover{
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
  }

  .mobile\:focus\:scale-0:focus{
    --tw-scale-x: 0;
    --tw-scale-y: 0;
  }

  .mobile\:focus\:scale-50:focus{
    --tw-scale-x: .5;
    --tw-scale-y: .5;
  }

  .mobile\:focus\:scale-75:focus{
    --tw-scale-x: .75;
    --tw-scale-y: .75;
  }

  .mobile\:focus\:scale-90:focus{
    --tw-scale-x: .9;
    --tw-scale-y: .9;
  }

  .mobile\:focus\:scale-95:focus{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
  }

  .mobile\:focus\:scale-100:focus{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
  }

  .mobile\:focus\:scale-105:focus{
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
  }

  .mobile\:focus\:scale-110:focus{
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
  }

  .mobile\:focus\:scale-125:focus{
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
  }

  .mobile\:focus\:scale-150:focus{
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
  }

  .mobile\:scale-x-0{
    --tw-scale-x: 0;
  }

  .mobile\:scale-x-50{
    --tw-scale-x: .5;
  }

  .mobile\:scale-x-75{
    --tw-scale-x: .75;
  }

  .mobile\:scale-x-90{
    --tw-scale-x: .9;
  }

  .mobile\:scale-x-95{
    --tw-scale-x: .95;
  }

  .mobile\:scale-x-100{
    --tw-scale-x: 1;
  }

  .mobile\:scale-x-105{
    --tw-scale-x: 1.05;
  }

  .mobile\:scale-x-110{
    --tw-scale-x: 1.1;
  }

  .mobile\:scale-x-125{
    --tw-scale-x: 1.25;
  }

  .mobile\:scale-x-150{
    --tw-scale-x: 1.5;
  }

  .mobile\:scale-y-0{
    --tw-scale-y: 0;
  }

  .mobile\:scale-y-50{
    --tw-scale-y: .5;
  }

  .mobile\:scale-y-75{
    --tw-scale-y: .75;
  }

  .mobile\:scale-y-90{
    --tw-scale-y: .9;
  }

  .mobile\:scale-y-95{
    --tw-scale-y: .95;
  }

  .mobile\:scale-y-100{
    --tw-scale-y: 1;
  }

  .mobile\:scale-y-105{
    --tw-scale-y: 1.05;
  }

  .mobile\:scale-y-110{
    --tw-scale-y: 1.1;
  }

  .mobile\:scale-y-125{
    --tw-scale-y: 1.25;
  }

  .mobile\:scale-y-150{
    --tw-scale-y: 1.5;
  }

  .mobile\:hover\:scale-x-0:hover{
    --tw-scale-x: 0;
  }

  .mobile\:hover\:scale-x-50:hover{
    --tw-scale-x: .5;
  }

  .mobile\:hover\:scale-x-75:hover{
    --tw-scale-x: .75;
  }

  .mobile\:hover\:scale-x-90:hover{
    --tw-scale-x: .9;
  }

  .mobile\:hover\:scale-x-95:hover{
    --tw-scale-x: .95;
  }

  .mobile\:hover\:scale-x-100:hover{
    --tw-scale-x: 1;
  }

  .mobile\:hover\:scale-x-105:hover{
    --tw-scale-x: 1.05;
  }

  .mobile\:hover\:scale-x-110:hover{
    --tw-scale-x: 1.1;
  }

  .mobile\:hover\:scale-x-125:hover{
    --tw-scale-x: 1.25;
  }

  .mobile\:hover\:scale-x-150:hover{
    --tw-scale-x: 1.5;
  }

  .mobile\:hover\:scale-y-0:hover{
    --tw-scale-y: 0;
  }

  .mobile\:hover\:scale-y-50:hover{
    --tw-scale-y: .5;
  }

  .mobile\:hover\:scale-y-75:hover{
    --tw-scale-y: .75;
  }

  .mobile\:hover\:scale-y-90:hover{
    --tw-scale-y: .9;
  }

  .mobile\:hover\:scale-y-95:hover{
    --tw-scale-y: .95;
  }

  .mobile\:hover\:scale-y-100:hover{
    --tw-scale-y: 1;
  }

  .mobile\:hover\:scale-y-105:hover{
    --tw-scale-y: 1.05;
  }

  .mobile\:hover\:scale-y-110:hover{
    --tw-scale-y: 1.1;
  }

  .mobile\:hover\:scale-y-125:hover{
    --tw-scale-y: 1.25;
  }

  .mobile\:hover\:scale-y-150:hover{
    --tw-scale-y: 1.5;
  }

  .mobile\:focus\:scale-x-0:focus{
    --tw-scale-x: 0;
  }

  .mobile\:focus\:scale-x-50:focus{
    --tw-scale-x: .5;
  }

  .mobile\:focus\:scale-x-75:focus{
    --tw-scale-x: .75;
  }

  .mobile\:focus\:scale-x-90:focus{
    --tw-scale-x: .9;
  }

  .mobile\:focus\:scale-x-95:focus{
    --tw-scale-x: .95;
  }

  .mobile\:focus\:scale-x-100:focus{
    --tw-scale-x: 1;
  }

  .mobile\:focus\:scale-x-105:focus{
    --tw-scale-x: 1.05;
  }

  .mobile\:focus\:scale-x-110:focus{
    --tw-scale-x: 1.1;
  }

  .mobile\:focus\:scale-x-125:focus{
    --tw-scale-x: 1.25;
  }

  .mobile\:focus\:scale-x-150:focus{
    --tw-scale-x: 1.5;
  }

  .mobile\:focus\:scale-y-0:focus{
    --tw-scale-y: 0;
  }

  .mobile\:focus\:scale-y-50:focus{
    --tw-scale-y: .5;
  }

  .mobile\:focus\:scale-y-75:focus{
    --tw-scale-y: .75;
  }

  .mobile\:focus\:scale-y-90:focus{
    --tw-scale-y: .9;
  }

  .mobile\:focus\:scale-y-95:focus{
    --tw-scale-y: .95;
  }

  .mobile\:focus\:scale-y-100:focus{
    --tw-scale-y: 1;
  }

  .mobile\:focus\:scale-y-105:focus{
    --tw-scale-y: 1.05;
  }

  .mobile\:focus\:scale-y-110:focus{
    --tw-scale-y: 1.1;
  }

  .mobile\:focus\:scale-y-125:focus{
    --tw-scale-y: 1.25;
  }

  .mobile\:focus\:scale-y-150:focus{
    --tw-scale-y: 1.5;
  }

  .mobile\:animate-none{
    -webkit-animation: none;
            animation: none;
  }

  .mobile\:animate-spin{
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
  }

  .mobile\:animate-ping{
    -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  }

  .mobile\:animate-pulse{
    -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .mobile\:animate-bounce{
    -webkit-animation: bounce 1s infinite;
            animation: bounce 1s infinite;
  }

  .mobile\:cursor-auto{
    cursor: auto;
  }

  .mobile\:cursor-default{
    cursor: default;
  }

  .mobile\:cursor-pointer{
    cursor: pointer;
  }

  .mobile\:cursor-wait{
    cursor: wait;
  }

  .mobile\:cursor-text{
    cursor: text;
  }

  .mobile\:cursor-move{
    cursor: move;
  }

  .mobile\:cursor-help{
    cursor: help;
  }

  .mobile\:cursor-not-allowed{
    cursor: not-allowed;
  }

  .mobile\:select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .mobile\:select-text{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .mobile\:select-all{
    -webkit-user-select: all;
       -moz-user-select: all;
            user-select: all;
  }

  .mobile\:select-auto{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .mobile\:resize-none{
    resize: none;
  }

  .mobile\:resize-y{
    resize: vertical;
  }

  .mobile\:resize-x{
    resize: horizontal;
  }

  .mobile\:resize{
    resize: both;
  }

  .mobile\:list-inside{
    list-style-position: inside;
  }

  .mobile\:list-outside{
    list-style-position: outside;
  }

  .mobile\:list-none{
    list-style-type: none;
  }

  .mobile\:list-disc{
    list-style-type: disc;
  }

  .mobile\:list-decimal{
    list-style-type: decimal;
  }

  .mobile\:appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .mobile\:auto-cols-auto{
    grid-auto-columns: auto;
  }

  .mobile\:auto-cols-min{
    grid-auto-columns: -webkit-min-content;
    grid-auto-columns: min-content;
  }

  .mobile\:auto-cols-max{
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
  }

  .mobile\:auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr);
  }

  .mobile\:grid-flow-row{
    grid-auto-flow: row;
  }

  .mobile\:grid-flow-col{
    grid-auto-flow: column;
  }

  .mobile\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }

  .mobile\:grid-flow-col-dense{
    grid-auto-flow: column dense;
  }

  .mobile\:auto-rows-auto{
    grid-auto-rows: auto;
  }

  .mobile\:auto-rows-min{
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
  }

  .mobile\:auto-rows-max{
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
  }

  .mobile\:auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr);
  }

  .mobile\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .mobile\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mobile\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .mobile\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .mobile\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .mobile\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .mobile\:grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .mobile\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .mobile\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .mobile\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .mobile\:grid-cols-none{
    grid-template-columns: none;
  }

  .mobile\:grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .mobile\:grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .mobile\:grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .mobile\:grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .mobile\:grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .mobile\:grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .mobile\:grid-rows-none{
    grid-template-rows: none;
  }

  .mobile\:flex-row{
    flex-direction: row;
  }

  .mobile\:flex-row-reverse{
    flex-direction: row-reverse;
  }

  .mobile\:flex-col{
    flex-direction: column;
  }

  .mobile\:flex-col-reverse{
    flex-direction: column-reverse;
  }

  .mobile\:flex-wrap{
    flex-wrap: wrap;
  }

  .mobile\:flex-wrap-reverse{
    flex-wrap: wrap-reverse;
  }

  .mobile\:flex-nowrap{
    flex-wrap: nowrap;
  }

  .mobile\:place-content-center{
    place-content: center;
  }

  .mobile\:place-content-start{
    place-content: start;
  }

  .mobile\:place-content-end{
    place-content: end;
  }

  .mobile\:place-content-between{
    place-content: space-between;
  }

  .mobile\:place-content-around{
    place-content: space-around;
  }

  .mobile\:place-content-evenly{
    place-content: space-evenly;
  }

  .mobile\:place-content-stretch{
    place-content: stretch;
  }

  .mobile\:place-items-start{
    place-items: start;
  }

  .mobile\:place-items-end{
    place-items: end;
  }

  .mobile\:place-items-center{
    place-items: center;
  }

  .mobile\:place-items-stretch{
    place-items: stretch;
  }

  .mobile\:content-center{
    align-content: center;
  }

  .mobile\:content-start{
    align-content: flex-start;
  }

  .mobile\:content-end{
    align-content: flex-end;
  }

  .mobile\:content-between{
    align-content: space-between;
  }

  .mobile\:content-around{
    align-content: space-around;
  }

  .mobile\:content-evenly{
    align-content: space-evenly;
  }

  .mobile\:items-start{
    align-items: flex-start;
  }

  .mobile\:items-end{
    align-items: flex-end;
  }

  .mobile\:items-center{
    align-items: center;
  }

  .mobile\:items-baseline{
    align-items: baseline;
  }

  .mobile\:items-stretch{
    align-items: stretch;
  }

  .mobile\:justify-start{
    justify-content: flex-start;
  }

  .mobile\:justify-end{
    justify-content: flex-end;
  }

  .mobile\:justify-center{
    justify-content: center;
  }

  .mobile\:justify-between{
    justify-content: space-between;
  }

  .mobile\:justify-around{
    justify-content: space-around;
  }

  .mobile\:justify-evenly{
    justify-content: space-evenly;
  }

  .mobile\:justify-items-start{
    justify-items: start;
  }

  .mobile\:justify-items-end{
    justify-items: end;
  }

  .mobile\:justify-items-center{
    justify-items: center;
  }

  .mobile\:justify-items-stretch{
    justify-items: stretch;
  }

  .mobile\:gap-0{
    gap: 0px;
  }

  .mobile\:gap-1{
    gap: 0.25rem;
  }

  .mobile\:gap-2{
    gap: 0.5rem;
  }

  .mobile\:gap-3{
    gap: 0.75rem;
  }

  .mobile\:gap-4{
    gap: 1rem;
  }

  .mobile\:gap-5{
    gap: 1.25rem;
  }

  .mobile\:gap-6{
    gap: 1.5rem;
  }

  .mobile\:gap-7{
    gap: 1.75rem;
  }

  .mobile\:gap-8{
    gap: 2rem;
  }

  .mobile\:gap-9{
    gap: 2.25rem;
  }

  .mobile\:gap-10{
    gap: 2.5rem;
  }

  .mobile\:gap-11{
    gap: 2.75rem;
  }

  .mobile\:gap-12{
    gap: 3rem;
  }

  .mobile\:gap-14{
    gap: 3.5rem;
  }

  .mobile\:gap-16{
    gap: 4rem;
  }

  .mobile\:gap-20{
    gap: 5rem;
  }

  .mobile\:gap-24{
    gap: 6rem;
  }

  .mobile\:gap-28{
    gap: 7rem;
  }

  .mobile\:gap-32{
    gap: 8rem;
  }

  .mobile\:gap-36{
    gap: 9rem;
  }

  .mobile\:gap-40{
    gap: 10rem;
  }

  .mobile\:gap-44{
    gap: 11rem;
  }

  .mobile\:gap-48{
    gap: 12rem;
  }

  .mobile\:gap-52{
    gap: 13rem;
  }

  .mobile\:gap-56{
    gap: 14rem;
  }

  .mobile\:gap-60{
    gap: 15rem;
  }

  .mobile\:gap-64{
    gap: 16rem;
  }

  .mobile\:gap-72{
    gap: 18rem;
  }

  .mobile\:gap-80{
    gap: 20rem;
  }

  .mobile\:gap-96{
    gap: 24rem;
  }

  .mobile\:gap-px{
    gap: 1px;
  }

  .mobile\:gap-0\.5{
    gap: 0.125rem;
  }

  .mobile\:gap-1\.5{
    gap: 0.375rem;
  }

  .mobile\:gap-2\.5{
    gap: 0.625rem;
  }

  .mobile\:gap-3\.5{
    gap: 0.875rem;
  }

  .mobile\:gap-x-0{
    -moz-column-gap: 0px;
         column-gap: 0px;
  }

  .mobile\:gap-x-1{
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .mobile\:gap-x-2{
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .mobile\:gap-x-3{
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .mobile\:gap-x-4{
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .mobile\:gap-x-5{
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .mobile\:gap-x-6{
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .mobile\:gap-x-7{
    -moz-column-gap: 1.75rem;
         column-gap: 1.75rem;
  }

  .mobile\:gap-x-8{
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .mobile\:gap-x-9{
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }

  .mobile\:gap-x-10{
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .mobile\:gap-x-11{
    -moz-column-gap: 2.75rem;
         column-gap: 2.75rem;
  }

  .mobile\:gap-x-12{
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .mobile\:gap-x-14{
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .mobile\:gap-x-16{
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .mobile\:gap-x-20{
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .mobile\:gap-x-24{
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .mobile\:gap-x-28{
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }

  .mobile\:gap-x-32{
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .mobile\:gap-x-36{
    -moz-column-gap: 9rem;
         column-gap: 9rem;
  }

  .mobile\:gap-x-40{
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .mobile\:gap-x-44{
    -moz-column-gap: 11rem;
         column-gap: 11rem;
  }

  .mobile\:gap-x-48{
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .mobile\:gap-x-52{
    -moz-column-gap: 13rem;
         column-gap: 13rem;
  }

  .mobile\:gap-x-56{
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .mobile\:gap-x-60{
    -moz-column-gap: 15rem;
         column-gap: 15rem;
  }

  .mobile\:gap-x-64{
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .mobile\:gap-x-72{
    -moz-column-gap: 18rem;
         column-gap: 18rem;
  }

  .mobile\:gap-x-80{
    -moz-column-gap: 20rem;
         column-gap: 20rem;
  }

  .mobile\:gap-x-96{
    -moz-column-gap: 24rem;
         column-gap: 24rem;
  }

  .mobile\:gap-x-px{
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .mobile\:gap-x-0\.5{
    -moz-column-gap: 0.125rem;
         column-gap: 0.125rem;
  }

  .mobile\:gap-x-1\.5{
    -moz-column-gap: 0.375rem;
         column-gap: 0.375rem;
  }

  .mobile\:gap-x-2\.5{
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }

  .mobile\:gap-x-3\.5{
    -moz-column-gap: 0.875rem;
         column-gap: 0.875rem;
  }

  .mobile\:gap-y-0{
    row-gap: 0px;
  }

  .mobile\:gap-y-1{
    row-gap: 0.25rem;
  }

  .mobile\:gap-y-2{
    row-gap: 0.5rem;
  }

  .mobile\:gap-y-3{
    row-gap: 0.75rem;
  }

  .mobile\:gap-y-4{
    row-gap: 1rem;
  }

  .mobile\:gap-y-5{
    row-gap: 1.25rem;
  }

  .mobile\:gap-y-6{
    row-gap: 1.5rem;
  }

  .mobile\:gap-y-7{
    row-gap: 1.75rem;
  }

  .mobile\:gap-y-8{
    row-gap: 2rem;
  }

  .mobile\:gap-y-9{
    row-gap: 2.25rem;
  }

  .mobile\:gap-y-10{
    row-gap: 2.5rem;
  }

  .mobile\:gap-y-11{
    row-gap: 2.75rem;
  }

  .mobile\:gap-y-12{
    row-gap: 3rem;
  }

  .mobile\:gap-y-14{
    row-gap: 3.5rem;
  }

  .mobile\:gap-y-16{
    row-gap: 4rem;
  }

  .mobile\:gap-y-20{
    row-gap: 5rem;
  }

  .mobile\:gap-y-24{
    row-gap: 6rem;
  }

  .mobile\:gap-y-28{
    row-gap: 7rem;
  }

  .mobile\:gap-y-32{
    row-gap: 8rem;
  }

  .mobile\:gap-y-36{
    row-gap: 9rem;
  }

  .mobile\:gap-y-40{
    row-gap: 10rem;
  }

  .mobile\:gap-y-44{
    row-gap: 11rem;
  }

  .mobile\:gap-y-48{
    row-gap: 12rem;
  }

  .mobile\:gap-y-52{
    row-gap: 13rem;
  }

  .mobile\:gap-y-56{
    row-gap: 14rem;
  }

  .mobile\:gap-y-60{
    row-gap: 15rem;
  }

  .mobile\:gap-y-64{
    row-gap: 16rem;
  }

  .mobile\:gap-y-72{
    row-gap: 18rem;
  }

  .mobile\:gap-y-80{
    row-gap: 20rem;
  }

  .mobile\:gap-y-96{
    row-gap: 24rem;
  }

  .mobile\:gap-y-px{
    row-gap: 1px;
  }

  .mobile\:gap-y-0\.5{
    row-gap: 0.125rem;
  }

  .mobile\:gap-y-1\.5{
    row-gap: 0.375rem;
  }

  .mobile\:gap-y-2\.5{
    row-gap: 0.625rem;
  }

  .mobile\:gap-y-3\.5{
    row-gap: 0.875rem;
  }

  .mobile\:space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0px * var(--tw-space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.75rem * var(--tw-space-x-reverse));
    margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2.25rem * var(--tw-space-x-reverse));
    margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2.75rem * var(--tw-space-x-reverse));
    margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(3rem * var(--tw-space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--tw-space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(4rem * var(--tw-space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(5rem * var(--tw-space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(6rem * var(--tw-space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(7rem * var(--tw-space-x-reverse));
    margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(8rem * var(--tw-space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(9rem * var(--tw-space-x-reverse));
    margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(10rem * var(--tw-space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(11rem * var(--tw-space-x-reverse));
    margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(12rem * var(--tw-space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(13rem * var(--tw-space-x-reverse));
    margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(14rem * var(--tw-space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(15rem * var(--tw-space-x-reverse));
    margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(16rem * var(--tw-space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(18rem * var(--tw-space-x-reverse));
    margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(20rem * var(--tw-space-x-reverse));
    margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(24rem * var(--tw-space-x-reverse));
    margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1px * var(--tw-space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.125rem * var(--tw-space-x-reverse));
    margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse));
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse));
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.875rem * var(--tw-space-x-reverse));
    margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0px * var(--tw-space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1rem * var(--tw-space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1.75rem * var(--tw-space-x-reverse));
    margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-2rem * var(--tw-space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-2.25rem * var(--tw-space-x-reverse));
    margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--tw-space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-2.75rem * var(--tw-space-x-reverse));
    margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-3rem * var(--tw-space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--tw-space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-4rem * var(--tw-space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-5rem * var(--tw-space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-6rem * var(--tw-space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-7rem * var(--tw-space-x-reverse));
    margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-8rem * var(--tw-space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-9rem * var(--tw-space-x-reverse));
    margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-10rem * var(--tw-space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-11rem * var(--tw-space-x-reverse));
    margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-12rem * var(--tw-space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-13rem * var(--tw-space-x-reverse));
    margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-14rem * var(--tw-space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-15rem * var(--tw-space-x-reverse));
    margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-16rem * var(--tw-space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-18rem * var(--tw-space-x-reverse));
    margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-20rem * var(--tw-space-x-reverse));
    margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-24rem * var(--tw-space-x-reverse));
    margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1px * var(--tw-space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.125rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.375rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.625rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.875rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .mobile\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.75rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2.25rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2.75rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(3rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(4rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(5rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(6rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(7rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(8rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(9rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(10rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(11rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(12rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(13rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(14rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(15rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(16rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(18rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(20rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(24rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1px * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.875rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-2rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-3rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-4rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-5rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-6rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-7rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-8rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-9rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-10rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-11rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-12rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-13rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-14rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-15rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-16rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-18rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-20rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-24rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1px * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse));
  }

  .mobile\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse));
  }

  .mobile\:space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1;
  }

  .mobile\:space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1;
  }

  .mobile\:divide-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(0px * var(--tw-divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .mobile\:divide-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(2px * var(--tw-divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .mobile\:divide-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(4px * var(--tw-divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .mobile\:divide-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(8px * var(--tw-divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .mobile\:divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .mobile\:divide-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
  }

  .mobile\:divide-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(2px * var(--tw-divide-y-reverse));
  }

  .mobile\:divide-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(4px * var(--tw-divide-y-reverse));
  }

  .mobile\:divide-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(8px * var(--tw-divide-y-reverse));
  }

  .mobile\:divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  }

  .mobile\:divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1;
  }

  .mobile\:divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1;
  }

  .mobile\:divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid;
  }

  .mobile\:divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed;
  }

  .mobile\:divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted;
  }

  .mobile\:divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double;
  }

  .mobile\:divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none;
  }

  .mobile\:divide-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent;
  }

  .mobile\:divide-current > :not([hidden]) ~ :not([hidden]){
    border-color: currentColor;
  }

  .mobile\:divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity));
  }

  .mobile\:divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity));
  }

  .mobile\:divide-gray-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-divide-opacity));
  }

  .mobile\:divide-gray-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-divide-opacity));
  }

  .mobile\:divide-gray-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-divide-opacity));
  }

  .mobile\:divide-gray-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-divide-opacity));
  }

  .mobile\:divide-gray-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-divide-opacity));
  }

  .mobile\:divide-gray-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-divide-opacity));
  }

  .mobile\:divide-gray-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-divide-opacity));
  }

  .mobile\:divide-gray-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-divide-opacity));
  }

  .mobile\:divide-gray-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-divide-opacity));
  }

  .mobile\:divide-gray-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-divide-opacity));
  }

  .mobile\:divide-red-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-divide-opacity));
  }

  .mobile\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-divide-opacity));
  }

  .mobile\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-divide-opacity));
  }

  .mobile\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-divide-opacity));
  }

  .mobile\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-divide-opacity));
  }

  .mobile\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-divide-opacity));
  }

  .mobile\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-divide-opacity));
  }

  .mobile\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-divide-opacity));
  }

  .mobile\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-divide-opacity));
  }

  .mobile\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-divide-opacity));
  }

  .mobile\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-divide-opacity));
  }

  .mobile\:divide-green-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-divide-opacity));
  }

  .mobile\:divide-blue-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-divide-opacity));
  }

  .mobile\:divide-blue-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-divide-opacity));
  }

  .mobile\:divide-blue-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-divide-opacity));
  }

  .mobile\:divide-blue-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-divide-opacity));
  }

  .mobile\:divide-blue-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-divide-opacity));
  }

  .mobile\:divide-blue-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-divide-opacity));
  }

  .mobile\:divide-blue-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-divide-opacity));
  }

  .mobile\:divide-blue-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-divide-opacity));
  }

  .mobile\:divide-blue-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-divide-opacity));
  }

  .mobile\:divide-blue-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-divide-opacity));
  }

  .mobile\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-divide-opacity));
  }

  .mobile\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-divide-opacity));
  }

  .mobile\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-divide-opacity));
  }

  .mobile\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-divide-opacity));
  }

  .mobile\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-divide-opacity));
  }

  .mobile\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-divide-opacity));
  }

  .mobile\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-divide-opacity));
  }

  .mobile\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-divide-opacity));
  }

  .mobile\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-divide-opacity));
  }

  .mobile\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-divide-opacity));
  }

  .mobile\:divide-purple-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-divide-opacity));
  }

  .mobile\:divide-purple-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-divide-opacity));
  }

  .mobile\:divide-purple-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-divide-opacity));
  }

  .mobile\:divide-purple-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-divide-opacity));
  }

  .mobile\:divide-purple-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-divide-opacity));
  }

  .mobile\:divide-purple-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-divide-opacity));
  }

  .mobile\:divide-purple-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-divide-opacity));
  }

  .mobile\:divide-purple-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-divide-opacity));
  }

  .mobile\:divide-purple-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-divide-opacity));
  }

  .mobile\:divide-purple-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-divide-opacity));
  }

  .mobile\:divide-pink-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-divide-opacity));
  }

  .mobile\:divide-pink-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-divide-opacity));
  }

  .mobile\:divide-pink-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-divide-opacity));
  }

  .mobile\:divide-pink-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-divide-opacity));
  }

  .mobile\:divide-pink-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-divide-opacity));
  }

  .mobile\:divide-pink-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-divide-opacity));
  }

  .mobile\:divide-pink-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-divide-opacity));
  }

  .mobile\:divide-pink-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-divide-opacity));
  }

  .mobile\:divide-pink-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-divide-opacity));
  }

  .mobile\:divide-pink-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-divide-opacity));
  }

  .mobile\:divide-brown-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-divide-opacity));
  }

  .mobile\:divide-brown-semi > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-divide-opacity));
  }

  .mobile\:divide-brown-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-divide-opacity));
  }

  .mobile\:divide-brown-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-divide-opacity));
  }

  .mobile\:divide-success-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-divide-opacity));
  }

  .mobile\:divide-success-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-divide-opacity));
  }

  .mobile\:divide-success-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-divide-opacity));
  }

  .mobile\:divide-error-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-divide-opacity));
  }

  .mobile\:divide-error-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-divide-opacity));
  }

  .mobile\:divide-error-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-divide-opacity));
  }

  .mobile\:divide-navigation-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-divide-opacity));
  }

  .mobile\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0;
  }

  .mobile\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05;
  }

  .mobile\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1;
  }

  .mobile\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2;
  }

  .mobile\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25;
  }

  .mobile\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3;
  }

  .mobile\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4;
  }

  .mobile\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5;
  }

  .mobile\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6;
  }

  .mobile\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7;
  }

  .mobile\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75;
  }

  .mobile\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8;
  }

  .mobile\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9;
  }

  .mobile\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95;
  }

  .mobile\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
  }

  .mobile\:place-self-auto{
    place-self: auto;
  }

  .mobile\:place-self-start{
    place-self: start;
  }

  .mobile\:place-self-end{
    place-self: end;
  }

  .mobile\:place-self-center{
    place-self: center;
  }

  .mobile\:place-self-stretch{
    place-self: stretch;
  }

  .mobile\:self-auto{
    align-self: auto;
  }

  .mobile\:self-start{
    align-self: flex-start;
  }

  .mobile\:self-end{
    align-self: flex-end;
  }

  .mobile\:self-center{
    align-self: center;
  }

  .mobile\:self-stretch{
    align-self: stretch;
  }

  .mobile\:self-baseline{
    align-self: baseline;
  }

  .mobile\:justify-self-auto{
    justify-self: auto;
  }

  .mobile\:justify-self-start{
    justify-self: start;
  }

  .mobile\:justify-self-end{
    justify-self: end;
  }

  .mobile\:justify-self-center{
    justify-self: center;
  }

  .mobile\:justify-self-stretch{
    justify-self: stretch;
  }

  .mobile\:overflow-auto{
    overflow: auto;
  }

  .mobile\:overflow-hidden{
    overflow: hidden;
  }

  .mobile\:overflow-visible{
    overflow: visible;
  }

  .mobile\:overflow-scroll{
    overflow: scroll;
  }

  .mobile\:overflow-x-auto{
    overflow-x: auto;
  }

  .mobile\:overflow-y-auto{
    overflow-y: auto;
  }

  .mobile\:overflow-x-hidden{
    overflow-x: hidden;
  }

  .mobile\:overflow-y-hidden{
    overflow-y: hidden;
  }

  .mobile\:overflow-x-visible{
    overflow-x: visible;
  }

  .mobile\:overflow-y-visible{
    overflow-y: visible;
  }

  .mobile\:overflow-x-scroll{
    overflow-x: scroll;
  }

  .mobile\:overflow-y-scroll{
    overflow-y: scroll;
  }

  .mobile\:overscroll-auto{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .mobile\:overscroll-contain{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .mobile\:overscroll-none{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .mobile\:overscroll-y-auto{
    overscroll-behavior-y: auto;
  }

  .mobile\:overscroll-y-contain{
    overscroll-behavior-y: contain;
  }

  .mobile\:overscroll-y-none{
    overscroll-behavior-y: none;
  }

  .mobile\:overscroll-x-auto{
    overscroll-behavior-x: auto;
  }

  .mobile\:overscroll-x-contain{
    overscroll-behavior-x: contain;
  }

  .mobile\:overscroll-x-none{
    overscroll-behavior-x: none;
  }

  .mobile\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile\:overflow-ellipsis{
    text-overflow: ellipsis;
  }

  .mobile\:overflow-clip{
    text-overflow: clip;
  }

  .mobile\:whitespace-normal{
    white-space: normal;
  }

  .mobile\:whitespace-nowrap{
    white-space: nowrap;
  }

  .mobile\:whitespace-pre{
    white-space: pre;
  }

  .mobile\:whitespace-pre-line{
    white-space: pre-line;
  }

  .mobile\:whitespace-pre-wrap{
    white-space: pre-wrap;
  }

  .mobile\:break-normal{
    overflow-wrap: normal;
    word-break: normal;
  }

  .mobile\:break-words{
    overflow-wrap: break-word;
  }

  .mobile\:break-all{
    word-break: break-all;
  }

  .mobile\:rounded-none{
    border-radius: 0px;
  }

  .mobile\:rounded-sm{
    border-radius: 0.125rem;
  }

  .mobile\:rounded{
    border-radius: 0.25rem;
  }

  .mobile\:rounded-md{
    border-radius: 0.375rem;
  }

  .mobile\:rounded-lg{
    border-radius: 0.5rem;
  }

  .mobile\:rounded-xl{
    border-radius: 0.75rem;
  }

  .mobile\:rounded-2xl{
    border-radius: 1rem;
  }

  .mobile\:rounded-3xl{
    border-radius: 1.5rem;
  }

  .mobile\:rounded-full{
    border-radius: 9999px;
  }

  .mobile\:rounded-t-none{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }

  .mobile\:rounded-t-sm{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .mobile\:rounded-t{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .mobile\:rounded-t-md{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .mobile\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .mobile\:rounded-t-xl{
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
  }

  .mobile\:rounded-t-2xl{
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .mobile\:rounded-t-3xl{
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
  }

  .mobile\:rounded-t-full{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .mobile\:rounded-r-none{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .mobile\:rounded-r-sm{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .mobile\:rounded-r{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .mobile\:rounded-r-md{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .mobile\:rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .mobile\:rounded-r-xl{
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
  }

  .mobile\:rounded-r-2xl{
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }

  .mobile\:rounded-r-3xl{
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }

  .mobile\:rounded-r-full{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .mobile\:rounded-b-none{
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .mobile\:rounded-b-sm{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .mobile\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .mobile\:rounded-b-md{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .mobile\:rounded-b-lg{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .mobile\:rounded-b-xl{
    border-bottom-right-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
  }

  .mobile\:rounded-b-2xl{
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }

  .mobile\:rounded-b-3xl{
    border-bottom-right-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
  }

  .mobile\:rounded-b-full{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .mobile\:rounded-l-none{
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .mobile\:rounded-l-sm{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .mobile\:rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .mobile\:rounded-l-md{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .mobile\:rounded-l-lg{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .mobile\:rounded-l-xl{
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
  }

  .mobile\:rounded-l-2xl{
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }

  .mobile\:rounded-l-3xl{
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
  }

  .mobile\:rounded-l-full{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .mobile\:rounded-tl-none{
    border-top-left-radius: 0px;
  }

  .mobile\:rounded-tl-sm{
    border-top-left-radius: 0.125rem;
  }

  .mobile\:rounded-tl{
    border-top-left-radius: 0.25rem;
  }

  .mobile\:rounded-tl-md{
    border-top-left-radius: 0.375rem;
  }

  .mobile\:rounded-tl-lg{
    border-top-left-radius: 0.5rem;
  }

  .mobile\:rounded-tl-xl{
    border-top-left-radius: 0.75rem;
  }

  .mobile\:rounded-tl-2xl{
    border-top-left-radius: 1rem;
  }

  .mobile\:rounded-tl-3xl{
    border-top-left-radius: 1.5rem;
  }

  .mobile\:rounded-tl-full{
    border-top-left-radius: 9999px;
  }

  .mobile\:rounded-tr-none{
    border-top-right-radius: 0px;
  }

  .mobile\:rounded-tr-sm{
    border-top-right-radius: 0.125rem;
  }

  .mobile\:rounded-tr{
    border-top-right-radius: 0.25rem;
  }

  .mobile\:rounded-tr-md{
    border-top-right-radius: 0.375rem;
  }

  .mobile\:rounded-tr-lg{
    border-top-right-radius: 0.5rem;
  }

  .mobile\:rounded-tr-xl{
    border-top-right-radius: 0.75rem;
  }

  .mobile\:rounded-tr-2xl{
    border-top-right-radius: 1rem;
  }

  .mobile\:rounded-tr-3xl{
    border-top-right-radius: 1.5rem;
  }

  .mobile\:rounded-tr-full{
    border-top-right-radius: 9999px;
  }

  .mobile\:rounded-br-none{
    border-bottom-right-radius: 0px;
  }

  .mobile\:rounded-br-sm{
    border-bottom-right-radius: 0.125rem;
  }

  .mobile\:rounded-br{
    border-bottom-right-radius: 0.25rem;
  }

  .mobile\:rounded-br-md{
    border-bottom-right-radius: 0.375rem;
  }

  .mobile\:rounded-br-lg{
    border-bottom-right-radius: 0.5rem;
  }

  .mobile\:rounded-br-xl{
    border-bottom-right-radius: 0.75rem;
  }

  .mobile\:rounded-br-2xl{
    border-bottom-right-radius: 1rem;
  }

  .mobile\:rounded-br-3xl{
    border-bottom-right-radius: 1.5rem;
  }

  .mobile\:rounded-br-full{
    border-bottom-right-radius: 9999px;
  }

  .mobile\:rounded-bl-none{
    border-bottom-left-radius: 0px;
  }

  .mobile\:rounded-bl-sm{
    border-bottom-left-radius: 0.125rem;
  }

  .mobile\:rounded-bl{
    border-bottom-left-radius: 0.25rem;
  }

  .mobile\:rounded-bl-md{
    border-bottom-left-radius: 0.375rem;
  }

  .mobile\:rounded-bl-lg{
    border-bottom-left-radius: 0.5rem;
  }

  .mobile\:rounded-bl-xl{
    border-bottom-left-radius: 0.75rem;
  }

  .mobile\:rounded-bl-2xl{
    border-bottom-left-radius: 1rem;
  }

  .mobile\:rounded-bl-3xl{
    border-bottom-left-radius: 1.5rem;
  }

  .mobile\:rounded-bl-full{
    border-bottom-left-radius: 9999px;
  }

  .mobile\:border-0{
    border-width: 0px;
  }

  .mobile\:border-2{
    border-width: 2px;
  }

  .mobile\:border-4{
    border-width: 4px;
  }

  .mobile\:border-8{
    border-width: 8px;
  }

  .mobile\:border{
    border-width: 1px;
  }

  .mobile\:border-t-0{
    border-top-width: 0px;
  }

  .mobile\:border-t-2{
    border-top-width: 2px;
  }

  .mobile\:border-t-4{
    border-top-width: 4px;
  }

  .mobile\:border-t-8{
    border-top-width: 8px;
  }

  .mobile\:border-t{
    border-top-width: 1px;
  }

  .mobile\:border-r-0{
    border-right-width: 0px;
  }

  .mobile\:border-r-2{
    border-right-width: 2px;
  }

  .mobile\:border-r-4{
    border-right-width: 4px;
  }

  .mobile\:border-r-8{
    border-right-width: 8px;
  }

  .mobile\:border-r{
    border-right-width: 1px;
  }

  .mobile\:border-b-0{
    border-bottom-width: 0px;
  }

  .mobile\:border-b-2{
    border-bottom-width: 2px;
  }

  .mobile\:border-b-4{
    border-bottom-width: 4px;
  }

  .mobile\:border-b-8{
    border-bottom-width: 8px;
  }

  .mobile\:border-b{
    border-bottom-width: 1px;
  }

  .mobile\:border-l-0{
    border-left-width: 0px;
  }

  .mobile\:border-l-2{
    border-left-width: 2px;
  }

  .mobile\:border-l-4{
    border-left-width: 4px;
  }

  .mobile\:border-l-8{
    border-left-width: 8px;
  }

  .mobile\:border-l{
    border-left-width: 1px;
  }

  .mobile\:border-solid{
    border-style: solid;
  }

  .mobile\:border-dashed{
    border-style: dashed;
  }

  .mobile\:border-dotted{
    border-style: dotted;
  }

  .mobile\:border-double{
    border-style: double;
  }

  .mobile\:border-none{
    border-style: none;
  }

  .mobile\:border-transparent{
    border-color: transparent;
  }

  .mobile\:border-current{
    border-color: currentColor;
  }

  .mobile\:border-black{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:border-white{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .mobile\:border-gray-50{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .mobile\:border-gray-100{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .mobile\:border-gray-200{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .mobile\:border-gray-300{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .mobile\:border-gray-400{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .mobile\:border-gray-500{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .mobile\:border-gray-600{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .mobile\:border-gray-700{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .mobile\:border-gray-800{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .mobile\:border-gray-900{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .mobile\:border-red-50{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .mobile\:border-red-100{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .mobile\:border-red-200{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .mobile\:border-red-300{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .mobile\:border-red-400{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .mobile\:border-red-500{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .mobile\:border-red-600{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .mobile\:border-red-700{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .mobile\:border-red-800{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .mobile\:border-red-900{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .mobile\:border-red-light{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .mobile\:border-red-default{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:border-red-dark{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:border-yellow-50{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .mobile\:border-yellow-100{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .mobile\:border-yellow-200{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .mobile\:border-yellow-300{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .mobile\:border-yellow-400{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .mobile\:border-yellow-500{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .mobile\:border-yellow-600{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .mobile\:border-yellow-700{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .mobile\:border-yellow-800{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .mobile\:border-yellow-900{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .mobile\:border-green-50{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .mobile\:border-green-100{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .mobile\:border-green-200{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .mobile\:border-green-300{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .mobile\:border-green-400{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .mobile\:border-green-500{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .mobile\:border-green-600{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .mobile\:border-green-700{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .mobile\:border-green-800{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .mobile\:border-green-900{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .mobile\:border-green-light{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .mobile\:border-green-default{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .mobile\:border-green-dark{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .mobile\:border-blue-50{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .mobile\:border-blue-100{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .mobile\:border-blue-200{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .mobile\:border-blue-300{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .mobile\:border-blue-400{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .mobile\:border-blue-500{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .mobile\:border-blue-600{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .mobile\:border-blue-700{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .mobile\:border-blue-800{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .mobile\:border-blue-900{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .mobile\:border-indigo-50{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .mobile\:border-indigo-100{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .mobile\:border-indigo-200{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .mobile\:border-indigo-300{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .mobile\:border-indigo-400{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .mobile\:border-indigo-500{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .mobile\:border-indigo-600{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .mobile\:border-indigo-700{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .mobile\:border-indigo-800{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .mobile\:border-indigo-900{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .mobile\:border-purple-50{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .mobile\:border-purple-100{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .mobile\:border-purple-200{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .mobile\:border-purple-300{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .mobile\:border-purple-400{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .mobile\:border-purple-500{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .mobile\:border-purple-600{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .mobile\:border-purple-700{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .mobile\:border-purple-800{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .mobile\:border-purple-900{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .mobile\:border-pink-50{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .mobile\:border-pink-100{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .mobile\:border-pink-200{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .mobile\:border-pink-300{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .mobile\:border-pink-400{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .mobile\:border-pink-500{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .mobile\:border-pink-600{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .mobile\:border-pink-700{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .mobile\:border-pink-800{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .mobile\:border-pink-900{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .mobile\:border-brown-light{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .mobile\:border-brown-semi{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .mobile\:border-brown-default{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .mobile\:border-brown-dark{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .mobile\:border-success-light{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .mobile\:border-success-default{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .mobile\:border-success-dark{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .mobile\:border-error-light{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .mobile\:border-error-default{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .mobile\:border-error-dark{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:border-navigation-dark{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-transparent{
    border-color: transparent;
  }

  .group:hover .mobile\:group-hover\:border-current{
    border-color: currentColor;
  }

  .group:hover .mobile\:group-hover\:border-black{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-white{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-gray-50{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-gray-100{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-gray-200{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-gray-300{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-gray-400{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-gray-500{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-gray-600{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-gray-700{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-gray-800{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-gray-900{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-50{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-100{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-200{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-300{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-400{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-500{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-600{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-700{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-800{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-900{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-light{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-default{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-red-dark{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-yellow-50{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-yellow-100{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-yellow-200{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-yellow-300{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-yellow-400{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-yellow-500{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-yellow-600{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-yellow-700{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-yellow-800{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-yellow-900{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-50{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-100{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-200{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-300{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-400{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-500{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-600{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-700{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-800{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-900{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-light{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-default{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-green-dark{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-blue-50{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-blue-100{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-blue-200{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-blue-300{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-blue-400{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-blue-500{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-blue-600{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-blue-700{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-blue-800{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-blue-900{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-indigo-50{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-indigo-100{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-indigo-200{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-indigo-300{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-indigo-400{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-indigo-500{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-indigo-600{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-indigo-700{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-indigo-800{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-indigo-900{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-purple-50{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-purple-100{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-purple-200{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-purple-300{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-purple-400{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-purple-500{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-purple-600{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-purple-700{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-purple-800{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-purple-900{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-pink-50{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-pink-100{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-pink-200{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-pink-300{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-pink-400{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-pink-500{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-pink-600{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-pink-700{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-pink-800{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-pink-900{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-brown-light{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-brown-semi{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-brown-default{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-brown-dark{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-success-light{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-success-default{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-success-dark{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-error-light{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-error-default{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-error-dark{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .group:hover .mobile\:group-hover\:border-navigation-dark{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-transparent:focus-within{
    border-color: transparent;
  }

  .mobile\:focus-within\:border-current:focus-within{
    border-color: currentColor;
  }

  .mobile\:focus-within\:border-black:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-white:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-gray-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-gray-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-gray-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-gray-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-gray-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-gray-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-gray-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-gray-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-gray-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-gray-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-red-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-yellow-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-yellow-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-yellow-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-yellow-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-yellow-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-yellow-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-yellow-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-yellow-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-yellow-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-yellow-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-green-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-blue-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-blue-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-blue-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-blue-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-blue-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-blue-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-blue-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-blue-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-blue-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-blue-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-indigo-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-indigo-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-indigo-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-indigo-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-indigo-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-indigo-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-indigo-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-indigo-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-indigo-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-indigo-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-purple-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-purple-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-purple-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-purple-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-purple-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-purple-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-purple-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-purple-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-purple-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-purple-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-pink-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-pink-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-pink-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-pink-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-pink-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-pink-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-pink-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-pink-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-pink-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-pink-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-brown-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-brown-semi:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-brown-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-brown-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-success-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-success-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-success-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-error-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-error-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-error-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:focus-within\:border-navigation-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .mobile\:hover\:border-current:hover{
    border-color: currentColor;
  }

  .mobile\:hover\:border-black:hover{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-white:hover{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-gray-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-gray-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-gray-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-gray-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-gray-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-gray-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-gray-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-gray-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-gray-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-gray-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-red-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-yellow-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-yellow-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-yellow-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-yellow-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-yellow-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-yellow-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-yellow-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-yellow-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-yellow-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-yellow-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-green-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-blue-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-blue-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-blue-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-blue-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-blue-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-blue-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-blue-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-blue-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-blue-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-blue-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-indigo-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-indigo-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-indigo-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-indigo-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-indigo-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-indigo-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-indigo-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-indigo-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-indigo-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-indigo-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-purple-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-purple-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-purple-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-purple-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-purple-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-purple-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-purple-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-purple-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-purple-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-purple-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-pink-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-pink-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-pink-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-pink-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-pink-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-pink-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-pink-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-pink-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-pink-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-pink-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-brown-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-brown-semi:hover{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-brown-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-brown-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-success-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-success-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-success-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-error-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-error-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-error-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:hover\:border-navigation-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .mobile\:focus\:border-current:focus{
    border-color: currentColor;
  }

  .mobile\:focus\:border-black:focus{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-white:focus{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-gray-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-gray-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-gray-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-gray-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-gray-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-gray-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-gray-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-gray-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-gray-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-gray-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-red-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-yellow-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-yellow-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-yellow-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-yellow-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-yellow-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-yellow-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-yellow-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-yellow-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-yellow-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-yellow-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-green-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-blue-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-blue-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-blue-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-blue-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-blue-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-blue-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-blue-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-blue-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-blue-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-blue-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-indigo-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-indigo-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-indigo-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-indigo-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-indigo-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-indigo-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-indigo-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-indigo-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-indigo-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-indigo-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-purple-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-purple-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-purple-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-purple-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-purple-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-purple-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-purple-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-purple-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-purple-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-purple-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-pink-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-pink-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-pink-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-pink-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-pink-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-pink-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-pink-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-pink-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-pink-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-pink-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-brown-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-brown-semi:focus{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-brown-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-brown-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-success-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-success-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-success-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-error-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-error-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-error-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .mobile\:focus\:border-navigation-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .mobile\:border-opacity-0{
    --tw-border-opacity: 0;
  }

  .mobile\:border-opacity-5{
    --tw-border-opacity: 0.05;
  }

  .mobile\:border-opacity-10{
    --tw-border-opacity: 0.1;
  }

  .mobile\:border-opacity-20{
    --tw-border-opacity: 0.2;
  }

  .mobile\:border-opacity-25{
    --tw-border-opacity: 0.25;
  }

  .mobile\:border-opacity-30{
    --tw-border-opacity: 0.3;
  }

  .mobile\:border-opacity-40{
    --tw-border-opacity: 0.4;
  }

  .mobile\:border-opacity-50{
    --tw-border-opacity: 0.5;
  }

  .mobile\:border-opacity-60{
    --tw-border-opacity: 0.6;
  }

  .mobile\:border-opacity-70{
    --tw-border-opacity: 0.7;
  }

  .mobile\:border-opacity-75{
    --tw-border-opacity: 0.75;
  }

  .mobile\:border-opacity-80{
    --tw-border-opacity: 0.8;
  }

  .mobile\:border-opacity-90{
    --tw-border-opacity: 0.9;
  }

  .mobile\:border-opacity-95{
    --tw-border-opacity: 0.95;
  }

  .mobile\:border-opacity-100{
    --tw-border-opacity: 1;
  }

  .group:hover .mobile\:group-hover\:border-opacity-0{
    --tw-border-opacity: 0;
  }

  .group:hover .mobile\:group-hover\:border-opacity-5{
    --tw-border-opacity: 0.05;
  }

  .group:hover .mobile\:group-hover\:border-opacity-10{
    --tw-border-opacity: 0.1;
  }

  .group:hover .mobile\:group-hover\:border-opacity-20{
    --tw-border-opacity: 0.2;
  }

  .group:hover .mobile\:group-hover\:border-opacity-25{
    --tw-border-opacity: 0.25;
  }

  .group:hover .mobile\:group-hover\:border-opacity-30{
    --tw-border-opacity: 0.3;
  }

  .group:hover .mobile\:group-hover\:border-opacity-40{
    --tw-border-opacity: 0.4;
  }

  .group:hover .mobile\:group-hover\:border-opacity-50{
    --tw-border-opacity: 0.5;
  }

  .group:hover .mobile\:group-hover\:border-opacity-60{
    --tw-border-opacity: 0.6;
  }

  .group:hover .mobile\:group-hover\:border-opacity-70{
    --tw-border-opacity: 0.7;
  }

  .group:hover .mobile\:group-hover\:border-opacity-75{
    --tw-border-opacity: 0.75;
  }

  .group:hover .mobile\:group-hover\:border-opacity-80{
    --tw-border-opacity: 0.8;
  }

  .group:hover .mobile\:group-hover\:border-opacity-90{
    --tw-border-opacity: 0.9;
  }

  .group:hover .mobile\:group-hover\:border-opacity-95{
    --tw-border-opacity: 0.95;
  }

  .group:hover .mobile\:group-hover\:border-opacity-100{
    --tw-border-opacity: 1;
  }

  .mobile\:focus-within\:border-opacity-0:focus-within{
    --tw-border-opacity: 0;
  }

  .mobile\:focus-within\:border-opacity-5:focus-within{
    --tw-border-opacity: 0.05;
  }

  .mobile\:focus-within\:border-opacity-10:focus-within{
    --tw-border-opacity: 0.1;
  }

  .mobile\:focus-within\:border-opacity-20:focus-within{
    --tw-border-opacity: 0.2;
  }

  .mobile\:focus-within\:border-opacity-25:focus-within{
    --tw-border-opacity: 0.25;
  }

  .mobile\:focus-within\:border-opacity-30:focus-within{
    --tw-border-opacity: 0.3;
  }

  .mobile\:focus-within\:border-opacity-40:focus-within{
    --tw-border-opacity: 0.4;
  }

  .mobile\:focus-within\:border-opacity-50:focus-within{
    --tw-border-opacity: 0.5;
  }

  .mobile\:focus-within\:border-opacity-60:focus-within{
    --tw-border-opacity: 0.6;
  }

  .mobile\:focus-within\:border-opacity-70:focus-within{
    --tw-border-opacity: 0.7;
  }

  .mobile\:focus-within\:border-opacity-75:focus-within{
    --tw-border-opacity: 0.75;
  }

  .mobile\:focus-within\:border-opacity-80:focus-within{
    --tw-border-opacity: 0.8;
  }

  .mobile\:focus-within\:border-opacity-90:focus-within{
    --tw-border-opacity: 0.9;
  }

  .mobile\:focus-within\:border-opacity-95:focus-within{
    --tw-border-opacity: 0.95;
  }

  .mobile\:focus-within\:border-opacity-100:focus-within{
    --tw-border-opacity: 1;
  }

  .mobile\:hover\:border-opacity-0:hover{
    --tw-border-opacity: 0;
  }

  .mobile\:hover\:border-opacity-5:hover{
    --tw-border-opacity: 0.05;
  }

  .mobile\:hover\:border-opacity-10:hover{
    --tw-border-opacity: 0.1;
  }

  .mobile\:hover\:border-opacity-20:hover{
    --tw-border-opacity: 0.2;
  }

  .mobile\:hover\:border-opacity-25:hover{
    --tw-border-opacity: 0.25;
  }

  .mobile\:hover\:border-opacity-30:hover{
    --tw-border-opacity: 0.3;
  }

  .mobile\:hover\:border-opacity-40:hover{
    --tw-border-opacity: 0.4;
  }

  .mobile\:hover\:border-opacity-50:hover{
    --tw-border-opacity: 0.5;
  }

  .mobile\:hover\:border-opacity-60:hover{
    --tw-border-opacity: 0.6;
  }

  .mobile\:hover\:border-opacity-70:hover{
    --tw-border-opacity: 0.7;
  }

  .mobile\:hover\:border-opacity-75:hover{
    --tw-border-opacity: 0.75;
  }

  .mobile\:hover\:border-opacity-80:hover{
    --tw-border-opacity: 0.8;
  }

  .mobile\:hover\:border-opacity-90:hover{
    --tw-border-opacity: 0.9;
  }

  .mobile\:hover\:border-opacity-95:hover{
    --tw-border-opacity: 0.95;
  }

  .mobile\:hover\:border-opacity-100:hover{
    --tw-border-opacity: 1;
  }

  .mobile\:focus\:border-opacity-0:focus{
    --tw-border-opacity: 0;
  }

  .mobile\:focus\:border-opacity-5:focus{
    --tw-border-opacity: 0.05;
  }

  .mobile\:focus\:border-opacity-10:focus{
    --tw-border-opacity: 0.1;
  }

  .mobile\:focus\:border-opacity-20:focus{
    --tw-border-opacity: 0.2;
  }

  .mobile\:focus\:border-opacity-25:focus{
    --tw-border-opacity: 0.25;
  }

  .mobile\:focus\:border-opacity-30:focus{
    --tw-border-opacity: 0.3;
  }

  .mobile\:focus\:border-opacity-40:focus{
    --tw-border-opacity: 0.4;
  }

  .mobile\:focus\:border-opacity-50:focus{
    --tw-border-opacity: 0.5;
  }

  .mobile\:focus\:border-opacity-60:focus{
    --tw-border-opacity: 0.6;
  }

  .mobile\:focus\:border-opacity-70:focus{
    --tw-border-opacity: 0.7;
  }

  .mobile\:focus\:border-opacity-75:focus{
    --tw-border-opacity: 0.75;
  }

  .mobile\:focus\:border-opacity-80:focus{
    --tw-border-opacity: 0.8;
  }

  .mobile\:focus\:border-opacity-90:focus{
    --tw-border-opacity: 0.9;
  }

  .mobile\:focus\:border-opacity-95:focus{
    --tw-border-opacity: 0.95;
  }

  .mobile\:focus\:border-opacity-100:focus{
    --tw-border-opacity: 1;
  }

  .mobile\:bg-transparent{
    background-color: transparent;
  }

  .mobile\:bg-current{
    background-color: currentColor;
  }

  .mobile\:bg-black{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .mobile\:bg-gray-50{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .mobile\:bg-gray-100{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .mobile\:bg-gray-200{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .mobile\:bg-gray-300{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .mobile\:bg-gray-400{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .mobile\:bg-gray-500{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .mobile\:bg-gray-600{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .mobile\:bg-gray-700{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .mobile\:bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .mobile\:bg-gray-900{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-50{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-100{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-200{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-300{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-400{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-500{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-600{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-700{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-800{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-900{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-light{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-default{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:bg-red-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:bg-yellow-50{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .mobile\:bg-yellow-100{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .mobile\:bg-yellow-200{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .mobile\:bg-yellow-300{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .mobile\:bg-yellow-400{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .mobile\:bg-yellow-500{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .mobile\:bg-yellow-600{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .mobile\:bg-yellow-700{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .mobile\:bg-yellow-800{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .mobile\:bg-yellow-900{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-50{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-100{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-200{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-300{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-400{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-500{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-600{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-700{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-800{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-900{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-light{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-default{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .mobile\:bg-green-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .mobile\:bg-blue-50{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .mobile\:bg-blue-100{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .mobile\:bg-blue-200{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .mobile\:bg-blue-300{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .mobile\:bg-blue-400{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .mobile\:bg-blue-500{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .mobile\:bg-blue-600{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .mobile\:bg-blue-700{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .mobile\:bg-blue-800{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .mobile\:bg-blue-900{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .mobile\:bg-indigo-50{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .mobile\:bg-indigo-100{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .mobile\:bg-indigo-200{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .mobile\:bg-indigo-300{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .mobile\:bg-indigo-400{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .mobile\:bg-indigo-500{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .mobile\:bg-indigo-600{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .mobile\:bg-indigo-700{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .mobile\:bg-indigo-800{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .mobile\:bg-indigo-900{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .mobile\:bg-purple-50{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .mobile\:bg-purple-100{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .mobile\:bg-purple-200{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .mobile\:bg-purple-300{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .mobile\:bg-purple-400{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .mobile\:bg-purple-500{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .mobile\:bg-purple-600{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .mobile\:bg-purple-700{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .mobile\:bg-purple-800{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .mobile\:bg-purple-900{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .mobile\:bg-pink-50{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .mobile\:bg-pink-100{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .mobile\:bg-pink-200{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .mobile\:bg-pink-300{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .mobile\:bg-pink-400{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .mobile\:bg-pink-500{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .mobile\:bg-pink-600{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .mobile\:bg-pink-700{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .mobile\:bg-pink-800{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .mobile\:bg-pink-900{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .mobile\:bg-brown-light{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .mobile\:bg-brown-semi{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .mobile\:bg-brown-default{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .mobile\:bg-brown-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .mobile\:bg-success-light{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .mobile\:bg-success-default{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .mobile\:bg-success-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .mobile\:bg-error-light{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .mobile\:bg-error-default{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .mobile\:bg-error-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:bg-navigation-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-transparent{
    background-color: transparent;
  }

  .group:hover .mobile\:group-hover\:bg-current{
    background-color: currentColor;
  }

  .group:hover .mobile\:group-hover\:bg-black{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-gray-50{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-gray-100{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-gray-200{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-gray-300{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-gray-400{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-gray-500{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-gray-600{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-gray-700{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-gray-900{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-50{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-100{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-200{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-300{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-400{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-500{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-600{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-700{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-800{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-900{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-light{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-default{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-red-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-yellow-50{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-yellow-100{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-yellow-200{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-yellow-300{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-yellow-400{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-yellow-500{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-yellow-600{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-yellow-700{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-yellow-800{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-yellow-900{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-50{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-100{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-200{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-300{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-400{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-500{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-600{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-700{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-800{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-900{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-light{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-default{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-green-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-blue-50{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-blue-100{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-blue-200{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-blue-300{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-blue-400{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-blue-500{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-blue-600{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-blue-700{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-blue-800{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-blue-900{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-indigo-50{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-indigo-100{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-indigo-200{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-indigo-300{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-indigo-400{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-indigo-500{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-indigo-600{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-indigo-700{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-indigo-800{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-indigo-900{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-purple-50{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-purple-100{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-purple-200{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-purple-300{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-purple-400{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-purple-500{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-purple-600{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-purple-700{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-purple-800{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-purple-900{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-pink-50{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-pink-100{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-pink-200{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-pink-300{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-pink-400{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-pink-500{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-pink-600{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-pink-700{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-pink-800{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-pink-900{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-brown-light{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-brown-semi{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-brown-default{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-brown-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-success-light{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-success-default{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-success-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-error-light{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-error-default{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-error-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .group:hover .mobile\:group-hover\:bg-navigation-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-transparent:focus-within{
    background-color: transparent;
  }

  .mobile\:focus-within\:bg-current:focus-within{
    background-color: currentColor;
  }

  .mobile\:focus-within\:bg-black:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-white:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-gray-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-gray-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-gray-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-gray-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-gray-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-gray-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-gray-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-gray-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-gray-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-gray-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-red-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-yellow-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-yellow-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-yellow-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-yellow-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-yellow-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-yellow-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-yellow-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-yellow-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-yellow-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-yellow-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-green-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-blue-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-blue-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-blue-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-blue-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-blue-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-blue-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-blue-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-blue-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-blue-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-blue-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-indigo-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-indigo-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-indigo-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-indigo-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-indigo-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-indigo-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-indigo-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-indigo-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-indigo-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-indigo-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-purple-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-purple-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-purple-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-purple-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-purple-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-purple-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-purple-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-purple-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-purple-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-purple-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-pink-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-pink-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-pink-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-pink-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-pink-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-pink-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-pink-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-pink-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-pink-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-pink-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-brown-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-brown-semi:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-brown-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-brown-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-success-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-success-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-success-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-error-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-error-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-error-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:focus-within\:bg-navigation-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .mobile\:hover\:bg-current:hover{
    background-color: currentColor;
  }

  .mobile\:hover\:bg-black:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-white:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-gray-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-gray-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-gray-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-gray-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-gray-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-gray-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-gray-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-gray-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-gray-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-gray-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-red-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-yellow-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-yellow-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-yellow-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-yellow-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-yellow-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-yellow-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-yellow-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-yellow-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-yellow-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-yellow-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-green-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-blue-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-blue-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-blue-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-blue-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-blue-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-blue-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-blue-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-blue-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-blue-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-blue-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-indigo-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-indigo-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-indigo-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-indigo-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-indigo-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-indigo-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-indigo-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-indigo-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-indigo-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-indigo-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-purple-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-purple-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-purple-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-purple-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-purple-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-purple-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-purple-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-purple-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-purple-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-purple-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-pink-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-pink-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-pink-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-pink-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-pink-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-pink-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-pink-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-pink-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-pink-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-pink-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-brown-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-brown-semi:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-brown-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-brown-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-success-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-success-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-success-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-error-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-error-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-error-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:hover\:bg-navigation-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .mobile\:focus\:bg-current:focus{
    background-color: currentColor;
  }

  .mobile\:focus\:bg-black:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-white:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-gray-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-gray-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-gray-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-gray-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-gray-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-gray-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-gray-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-gray-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-gray-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-gray-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-red-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-yellow-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-yellow-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-yellow-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-yellow-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-yellow-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-yellow-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-yellow-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-yellow-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-yellow-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-yellow-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-green-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-blue-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-blue-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-blue-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-blue-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-blue-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-blue-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-blue-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-blue-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-blue-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-blue-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-indigo-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-indigo-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-indigo-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-indigo-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-indigo-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-indigo-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-indigo-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-indigo-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-indigo-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-indigo-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-purple-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-purple-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-purple-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-purple-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-purple-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-purple-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-purple-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-purple-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-purple-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-purple-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-pink-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-pink-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-pink-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-pink-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-pink-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-pink-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-pink-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-pink-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-pink-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-pink-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-brown-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-brown-semi:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-brown-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-brown-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-success-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-success-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-success-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-error-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-error-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-error-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .mobile\:focus\:bg-navigation-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .mobile\:bg-opacity-0{
    --tw-bg-opacity: 0;
  }

  .mobile\:bg-opacity-5{
    --tw-bg-opacity: 0.05;
  }

  .mobile\:bg-opacity-10{
    --tw-bg-opacity: 0.1;
  }

  .mobile\:bg-opacity-20{
    --tw-bg-opacity: 0.2;
  }

  .mobile\:bg-opacity-25{
    --tw-bg-opacity: 0.25;
  }

  .mobile\:bg-opacity-30{
    --tw-bg-opacity: 0.3;
  }

  .mobile\:bg-opacity-40{
    --tw-bg-opacity: 0.4;
  }

  .mobile\:bg-opacity-50{
    --tw-bg-opacity: 0.5;
  }

  .mobile\:bg-opacity-60{
    --tw-bg-opacity: 0.6;
  }

  .mobile\:bg-opacity-70{
    --tw-bg-opacity: 0.7;
  }

  .mobile\:bg-opacity-75{
    --tw-bg-opacity: 0.75;
  }

  .mobile\:bg-opacity-80{
    --tw-bg-opacity: 0.8;
  }

  .mobile\:bg-opacity-90{
    --tw-bg-opacity: 0.9;
  }

  .mobile\:bg-opacity-95{
    --tw-bg-opacity: 0.95;
  }

  .mobile\:bg-opacity-100{
    --tw-bg-opacity: 1;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-0{
    --tw-bg-opacity: 0;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-5{
    --tw-bg-opacity: 0.05;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-10{
    --tw-bg-opacity: 0.1;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-20{
    --tw-bg-opacity: 0.2;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-25{
    --tw-bg-opacity: 0.25;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-30{
    --tw-bg-opacity: 0.3;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-40{
    --tw-bg-opacity: 0.4;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-50{
    --tw-bg-opacity: 0.5;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-60{
    --tw-bg-opacity: 0.6;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-70{
    --tw-bg-opacity: 0.7;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-75{
    --tw-bg-opacity: 0.75;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-80{
    --tw-bg-opacity: 0.8;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-90{
    --tw-bg-opacity: 0.9;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-95{
    --tw-bg-opacity: 0.95;
  }

  .group:hover .mobile\:group-hover\:bg-opacity-100{
    --tw-bg-opacity: 1;
  }

  .mobile\:focus-within\:bg-opacity-0:focus-within{
    --tw-bg-opacity: 0;
  }

  .mobile\:focus-within\:bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05;
  }

  .mobile\:focus-within\:bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1;
  }

  .mobile\:focus-within\:bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2;
  }

  .mobile\:focus-within\:bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25;
  }

  .mobile\:focus-within\:bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3;
  }

  .mobile\:focus-within\:bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4;
  }

  .mobile\:focus-within\:bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5;
  }

  .mobile\:focus-within\:bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6;
  }

  .mobile\:focus-within\:bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7;
  }

  .mobile\:focus-within\:bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75;
  }

  .mobile\:focus-within\:bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8;
  }

  .mobile\:focus-within\:bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9;
  }

  .mobile\:focus-within\:bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95;
  }

  .mobile\:focus-within\:bg-opacity-100:focus-within{
    --tw-bg-opacity: 1;
  }

  .mobile\:hover\:bg-opacity-0:hover{
    --tw-bg-opacity: 0;
  }

  .mobile\:hover\:bg-opacity-5:hover{
    --tw-bg-opacity: 0.05;
  }

  .mobile\:hover\:bg-opacity-10:hover{
    --tw-bg-opacity: 0.1;
  }

  .mobile\:hover\:bg-opacity-20:hover{
    --tw-bg-opacity: 0.2;
  }

  .mobile\:hover\:bg-opacity-25:hover{
    --tw-bg-opacity: 0.25;
  }

  .mobile\:hover\:bg-opacity-30:hover{
    --tw-bg-opacity: 0.3;
  }

  .mobile\:hover\:bg-opacity-40:hover{
    --tw-bg-opacity: 0.4;
  }

  .mobile\:hover\:bg-opacity-50:hover{
    --tw-bg-opacity: 0.5;
  }

  .mobile\:hover\:bg-opacity-60:hover{
    --tw-bg-opacity: 0.6;
  }

  .mobile\:hover\:bg-opacity-70:hover{
    --tw-bg-opacity: 0.7;
  }

  .mobile\:hover\:bg-opacity-75:hover{
    --tw-bg-opacity: 0.75;
  }

  .mobile\:hover\:bg-opacity-80:hover{
    --tw-bg-opacity: 0.8;
  }

  .mobile\:hover\:bg-opacity-90:hover{
    --tw-bg-opacity: 0.9;
  }

  .mobile\:hover\:bg-opacity-95:hover{
    --tw-bg-opacity: 0.95;
  }

  .mobile\:hover\:bg-opacity-100:hover{
    --tw-bg-opacity: 1;
  }

  .mobile\:focus\:bg-opacity-0:focus{
    --tw-bg-opacity: 0;
  }

  .mobile\:focus\:bg-opacity-5:focus{
    --tw-bg-opacity: 0.05;
  }

  .mobile\:focus\:bg-opacity-10:focus{
    --tw-bg-opacity: 0.1;
  }

  .mobile\:focus\:bg-opacity-20:focus{
    --tw-bg-opacity: 0.2;
  }

  .mobile\:focus\:bg-opacity-25:focus{
    --tw-bg-opacity: 0.25;
  }

  .mobile\:focus\:bg-opacity-30:focus{
    --tw-bg-opacity: 0.3;
  }

  .mobile\:focus\:bg-opacity-40:focus{
    --tw-bg-opacity: 0.4;
  }

  .mobile\:focus\:bg-opacity-50:focus{
    --tw-bg-opacity: 0.5;
  }

  .mobile\:focus\:bg-opacity-60:focus{
    --tw-bg-opacity: 0.6;
  }

  .mobile\:focus\:bg-opacity-70:focus{
    --tw-bg-opacity: 0.7;
  }

  .mobile\:focus\:bg-opacity-75:focus{
    --tw-bg-opacity: 0.75;
  }

  .mobile\:focus\:bg-opacity-80:focus{
    --tw-bg-opacity: 0.8;
  }

  .mobile\:focus\:bg-opacity-90:focus{
    --tw-bg-opacity: 0.9;
  }

  .mobile\:focus\:bg-opacity-95:focus{
    --tw-bg-opacity: 0.95;
  }

  .mobile\:focus\:bg-opacity-100:focus{
    --tw-bg-opacity: 1;
  }

  .mobile\:bg-none{
    background-image: none;
  }

  .mobile\:bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
  }

  .mobile\:bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops));
  }

  .mobile\:bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
  }

  .mobile\:bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  }

  .mobile\:bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  }

  .mobile\:bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops));
  }

  .mobile\:bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops));
  }

  .mobile\:bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops));
  }

  .mobile\:from-transparent{
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .mobile\:from-current{
    --tw-gradient-from: currentColor;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .mobile\:from-black{
    --tw-gradient-from: #000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .mobile\:from-white{
    --tw-gradient-from: #fff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .mobile\:from-gray-50{
    --tw-gradient-from: #f9fafb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .mobile\:from-gray-100{
    --tw-gradient-from: #f3f4f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .mobile\:from-gray-200{
    --tw-gradient-from: #e5e7eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .mobile\:from-gray-300{
    --tw-gradient-from: #d1d5db;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .mobile\:from-gray-400{
    --tw-gradient-from: #9ca3af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .mobile\:from-gray-500{
    --tw-gradient-from: #6b7280;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .mobile\:from-gray-600{
    --tw-gradient-from: #4b5563;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .mobile\:from-gray-700{
    --tw-gradient-from: #374151;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .mobile\:from-gray-800{
    --tw-gradient-from: #1f2937;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .mobile\:from-gray-900{
    --tw-gradient-from: #111827;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .mobile\:from-red-50{
    --tw-gradient-from: #fef2f2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .mobile\:from-red-100{
    --tw-gradient-from: #fee2e2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .mobile\:from-red-200{
    --tw-gradient-from: #fecaca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .mobile\:from-red-300{
    --tw-gradient-from: #fca5a5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .mobile\:from-red-400{
    --tw-gradient-from: #f87171;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .mobile\:from-red-500{
    --tw-gradient-from: #ef4444;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .mobile\:from-red-600{
    --tw-gradient-from: #dc2626;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .mobile\:from-red-700{
    --tw-gradient-from: #b91c1c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .mobile\:from-red-800{
    --tw-gradient-from: #991b1b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .mobile\:from-red-900{
    --tw-gradient-from: #7f1d1d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .mobile\:from-red-light{
    --tw-gradient-from: #EA7A7A;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .mobile\:from-red-default{
    --tw-gradient-from: #B90000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .mobile\:from-red-dark{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .mobile\:from-yellow-50{
    --tw-gradient-from: #fffbeb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .mobile\:from-yellow-100{
    --tw-gradient-from: #fef3c7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .mobile\:from-yellow-200{
    --tw-gradient-from: #fde68a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .mobile\:from-yellow-300{
    --tw-gradient-from: #fcd34d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .mobile\:from-yellow-400{
    --tw-gradient-from: #fbbf24;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .mobile\:from-yellow-500{
    --tw-gradient-from: #f59e0b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .mobile\:from-yellow-600{
    --tw-gradient-from: #d97706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .mobile\:from-yellow-700{
    --tw-gradient-from: #b45309;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .mobile\:from-yellow-800{
    --tw-gradient-from: #92400e;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .mobile\:from-yellow-900{
    --tw-gradient-from: #78350f;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .mobile\:from-green-50{
    --tw-gradient-from: #ecfdf5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .mobile\:from-green-100{
    --tw-gradient-from: #d1fae5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .mobile\:from-green-200{
    --tw-gradient-from: #a7f3d0;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .mobile\:from-green-300{
    --tw-gradient-from: #6ee7b7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .mobile\:from-green-400{
    --tw-gradient-from: #34d399;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .mobile\:from-green-500{
    --tw-gradient-from: #10b981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .mobile\:from-green-600{
    --tw-gradient-from: #059669;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .mobile\:from-green-700{
    --tw-gradient-from: #047857;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .mobile\:from-green-800{
    --tw-gradient-from: #065f46;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .mobile\:from-green-900{
    --tw-gradient-from: #064e3b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .mobile\:from-green-light{
    --tw-gradient-from: #B5D1B9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .mobile\:from-green-default{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .mobile\:from-green-dark{
    --tw-gradient-from: #1C251E;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .mobile\:from-blue-50{
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .mobile\:from-blue-100{
    --tw-gradient-from: #dbeafe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .mobile\:from-blue-200{
    --tw-gradient-from: #bfdbfe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .mobile\:from-blue-300{
    --tw-gradient-from: #93c5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .mobile\:from-blue-400{
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .mobile\:from-blue-500{
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .mobile\:from-blue-600{
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .mobile\:from-blue-700{
    --tw-gradient-from: #1d4ed8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .mobile\:from-blue-800{
    --tw-gradient-from: #1e40af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .mobile\:from-blue-900{
    --tw-gradient-from: #1e3a8a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .mobile\:from-indigo-50{
    --tw-gradient-from: #eef2ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .mobile\:from-indigo-100{
    --tw-gradient-from: #e0e7ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .mobile\:from-indigo-200{
    --tw-gradient-from: #c7d2fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .mobile\:from-indigo-300{
    --tw-gradient-from: #a5b4fc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .mobile\:from-indigo-400{
    --tw-gradient-from: #818cf8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .mobile\:from-indigo-500{
    --tw-gradient-from: #6366f1;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .mobile\:from-indigo-600{
    --tw-gradient-from: #4f46e5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .mobile\:from-indigo-700{
    --tw-gradient-from: #4338ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .mobile\:from-indigo-800{
    --tw-gradient-from: #3730a3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .mobile\:from-indigo-900{
    --tw-gradient-from: #312e81;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .mobile\:from-purple-50{
    --tw-gradient-from: #f5f3ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .mobile\:from-purple-100{
    --tw-gradient-from: #ede9fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .mobile\:from-purple-200{
    --tw-gradient-from: #ddd6fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .mobile\:from-purple-300{
    --tw-gradient-from: #c4b5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .mobile\:from-purple-400{
    --tw-gradient-from: #a78bfa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .mobile\:from-purple-500{
    --tw-gradient-from: #8b5cf6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .mobile\:from-purple-600{
    --tw-gradient-from: #7c3aed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .mobile\:from-purple-700{
    --tw-gradient-from: #6d28d9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .mobile\:from-purple-800{
    --tw-gradient-from: #5b21b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .mobile\:from-purple-900{
    --tw-gradient-from: #4c1d95;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .mobile\:from-pink-50{
    --tw-gradient-from: #fdf2f8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .mobile\:from-pink-100{
    --tw-gradient-from: #fce7f3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .mobile\:from-pink-200{
    --tw-gradient-from: #fbcfe8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .mobile\:from-pink-300{
    --tw-gradient-from: #f9a8d4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .mobile\:from-pink-400{
    --tw-gradient-from: #f472b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .mobile\:from-pink-500{
    --tw-gradient-from: #ec4899;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .mobile\:from-pink-600{
    --tw-gradient-from: #db2777;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .mobile\:from-pink-700{
    --tw-gradient-from: #be185d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .mobile\:from-pink-800{
    --tw-gradient-from: #9d174d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .mobile\:from-pink-900{
    --tw-gradient-from: #831843;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .mobile\:from-brown-light{
    --tw-gradient-from: #f0e9de;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .mobile\:from-brown-semi{
    --tw-gradient-from: #ded6ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .mobile\:from-brown-default{
    --tw-gradient-from: #7b6c5c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .mobile\:from-brown-dark{
    --tw-gradient-from: #3d2706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .mobile\:from-success-light{
    --tw-gradient-from: #91E09C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .mobile\:from-success-default{
    --tw-gradient-from: #2D993C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .mobile\:from-success-dark{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .mobile\:from-error-light{
    --tw-gradient-from: #F98686;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .mobile\:from-error-default{
    --tw-gradient-from: #CB0707;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .mobile\:from-error-dark{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .mobile\:from-navigation-dark{
    --tw-gradient-from: #ffcd00;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .mobile\:hover\:from-transparent:hover{
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .mobile\:hover\:from-current:hover{
    --tw-gradient-from: currentColor;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .mobile\:hover\:from-black:hover{
    --tw-gradient-from: #000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .mobile\:hover\:from-white:hover{
    --tw-gradient-from: #fff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .mobile\:hover\:from-gray-50:hover{
    --tw-gradient-from: #f9fafb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .mobile\:hover\:from-gray-100:hover{
    --tw-gradient-from: #f3f4f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .mobile\:hover\:from-gray-200:hover{
    --tw-gradient-from: #e5e7eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .mobile\:hover\:from-gray-300:hover{
    --tw-gradient-from: #d1d5db;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .mobile\:hover\:from-gray-400:hover{
    --tw-gradient-from: #9ca3af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .mobile\:hover\:from-gray-500:hover{
    --tw-gradient-from: #6b7280;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .mobile\:hover\:from-gray-600:hover{
    --tw-gradient-from: #4b5563;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .mobile\:hover\:from-gray-700:hover{
    --tw-gradient-from: #374151;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .mobile\:hover\:from-gray-800:hover{
    --tw-gradient-from: #1f2937;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .mobile\:hover\:from-gray-900:hover{
    --tw-gradient-from: #111827;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .mobile\:hover\:from-red-50:hover{
    --tw-gradient-from: #fef2f2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .mobile\:hover\:from-red-100:hover{
    --tw-gradient-from: #fee2e2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .mobile\:hover\:from-red-200:hover{
    --tw-gradient-from: #fecaca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .mobile\:hover\:from-red-300:hover{
    --tw-gradient-from: #fca5a5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .mobile\:hover\:from-red-400:hover{
    --tw-gradient-from: #f87171;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .mobile\:hover\:from-red-500:hover{
    --tw-gradient-from: #ef4444;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .mobile\:hover\:from-red-600:hover{
    --tw-gradient-from: #dc2626;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .mobile\:hover\:from-red-700:hover{
    --tw-gradient-from: #b91c1c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .mobile\:hover\:from-red-800:hover{
    --tw-gradient-from: #991b1b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .mobile\:hover\:from-red-900:hover{
    --tw-gradient-from: #7f1d1d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .mobile\:hover\:from-red-light:hover{
    --tw-gradient-from: #EA7A7A;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .mobile\:hover\:from-red-default:hover{
    --tw-gradient-from: #B90000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .mobile\:hover\:from-red-dark:hover{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .mobile\:hover\:from-yellow-50:hover{
    --tw-gradient-from: #fffbeb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .mobile\:hover\:from-yellow-100:hover{
    --tw-gradient-from: #fef3c7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .mobile\:hover\:from-yellow-200:hover{
    --tw-gradient-from: #fde68a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .mobile\:hover\:from-yellow-300:hover{
    --tw-gradient-from: #fcd34d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .mobile\:hover\:from-yellow-400:hover{
    --tw-gradient-from: #fbbf24;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .mobile\:hover\:from-yellow-500:hover{
    --tw-gradient-from: #f59e0b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .mobile\:hover\:from-yellow-600:hover{
    --tw-gradient-from: #d97706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .mobile\:hover\:from-yellow-700:hover{
    --tw-gradient-from: #b45309;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .mobile\:hover\:from-yellow-800:hover{
    --tw-gradient-from: #92400e;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .mobile\:hover\:from-yellow-900:hover{
    --tw-gradient-from: #78350f;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .mobile\:hover\:from-green-50:hover{
    --tw-gradient-from: #ecfdf5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .mobile\:hover\:from-green-100:hover{
    --tw-gradient-from: #d1fae5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .mobile\:hover\:from-green-200:hover{
    --tw-gradient-from: #a7f3d0;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .mobile\:hover\:from-green-300:hover{
    --tw-gradient-from: #6ee7b7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .mobile\:hover\:from-green-400:hover{
    --tw-gradient-from: #34d399;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .mobile\:hover\:from-green-500:hover{
    --tw-gradient-from: #10b981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .mobile\:hover\:from-green-600:hover{
    --tw-gradient-from: #059669;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .mobile\:hover\:from-green-700:hover{
    --tw-gradient-from: #047857;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .mobile\:hover\:from-green-800:hover{
    --tw-gradient-from: #065f46;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .mobile\:hover\:from-green-900:hover{
    --tw-gradient-from: #064e3b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .mobile\:hover\:from-green-light:hover{
    --tw-gradient-from: #B5D1B9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .mobile\:hover\:from-green-default:hover{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .mobile\:hover\:from-green-dark:hover{
    --tw-gradient-from: #1C251E;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .mobile\:hover\:from-blue-50:hover{
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .mobile\:hover\:from-blue-100:hover{
    --tw-gradient-from: #dbeafe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .mobile\:hover\:from-blue-200:hover{
    --tw-gradient-from: #bfdbfe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .mobile\:hover\:from-blue-300:hover{
    --tw-gradient-from: #93c5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .mobile\:hover\:from-blue-400:hover{
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .mobile\:hover\:from-blue-500:hover{
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .mobile\:hover\:from-blue-600:hover{
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .mobile\:hover\:from-blue-700:hover{
    --tw-gradient-from: #1d4ed8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .mobile\:hover\:from-blue-800:hover{
    --tw-gradient-from: #1e40af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .mobile\:hover\:from-blue-900:hover{
    --tw-gradient-from: #1e3a8a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .mobile\:hover\:from-indigo-50:hover{
    --tw-gradient-from: #eef2ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .mobile\:hover\:from-indigo-100:hover{
    --tw-gradient-from: #e0e7ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .mobile\:hover\:from-indigo-200:hover{
    --tw-gradient-from: #c7d2fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .mobile\:hover\:from-indigo-300:hover{
    --tw-gradient-from: #a5b4fc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .mobile\:hover\:from-indigo-400:hover{
    --tw-gradient-from: #818cf8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .mobile\:hover\:from-indigo-500:hover{
    --tw-gradient-from: #6366f1;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .mobile\:hover\:from-indigo-600:hover{
    --tw-gradient-from: #4f46e5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .mobile\:hover\:from-indigo-700:hover{
    --tw-gradient-from: #4338ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .mobile\:hover\:from-indigo-800:hover{
    --tw-gradient-from: #3730a3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .mobile\:hover\:from-indigo-900:hover{
    --tw-gradient-from: #312e81;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .mobile\:hover\:from-purple-50:hover{
    --tw-gradient-from: #f5f3ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .mobile\:hover\:from-purple-100:hover{
    --tw-gradient-from: #ede9fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .mobile\:hover\:from-purple-200:hover{
    --tw-gradient-from: #ddd6fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .mobile\:hover\:from-purple-300:hover{
    --tw-gradient-from: #c4b5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .mobile\:hover\:from-purple-400:hover{
    --tw-gradient-from: #a78bfa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .mobile\:hover\:from-purple-500:hover{
    --tw-gradient-from: #8b5cf6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .mobile\:hover\:from-purple-600:hover{
    --tw-gradient-from: #7c3aed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .mobile\:hover\:from-purple-700:hover{
    --tw-gradient-from: #6d28d9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .mobile\:hover\:from-purple-800:hover{
    --tw-gradient-from: #5b21b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .mobile\:hover\:from-purple-900:hover{
    --tw-gradient-from: #4c1d95;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .mobile\:hover\:from-pink-50:hover{
    --tw-gradient-from: #fdf2f8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .mobile\:hover\:from-pink-100:hover{
    --tw-gradient-from: #fce7f3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .mobile\:hover\:from-pink-200:hover{
    --tw-gradient-from: #fbcfe8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .mobile\:hover\:from-pink-300:hover{
    --tw-gradient-from: #f9a8d4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .mobile\:hover\:from-pink-400:hover{
    --tw-gradient-from: #f472b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .mobile\:hover\:from-pink-500:hover{
    --tw-gradient-from: #ec4899;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .mobile\:hover\:from-pink-600:hover{
    --tw-gradient-from: #db2777;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .mobile\:hover\:from-pink-700:hover{
    --tw-gradient-from: #be185d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .mobile\:hover\:from-pink-800:hover{
    --tw-gradient-from: #9d174d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .mobile\:hover\:from-pink-900:hover{
    --tw-gradient-from: #831843;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .mobile\:hover\:from-brown-light:hover{
    --tw-gradient-from: #f0e9de;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .mobile\:hover\:from-brown-semi:hover{
    --tw-gradient-from: #ded6ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .mobile\:hover\:from-brown-default:hover{
    --tw-gradient-from: #7b6c5c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .mobile\:hover\:from-brown-dark:hover{
    --tw-gradient-from: #3d2706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .mobile\:hover\:from-success-light:hover{
    --tw-gradient-from: #91E09C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .mobile\:hover\:from-success-default:hover{
    --tw-gradient-from: #2D993C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .mobile\:hover\:from-success-dark:hover{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .mobile\:hover\:from-error-light:hover{
    --tw-gradient-from: #F98686;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .mobile\:hover\:from-error-default:hover{
    --tw-gradient-from: #CB0707;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .mobile\:hover\:from-error-dark:hover{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .mobile\:hover\:from-navigation-dark:hover{
    --tw-gradient-from: #ffcd00;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .mobile\:focus\:from-transparent:focus{
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .mobile\:focus\:from-current:focus{
    --tw-gradient-from: currentColor;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .mobile\:focus\:from-black:focus{
    --tw-gradient-from: #000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .mobile\:focus\:from-white:focus{
    --tw-gradient-from: #fff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .mobile\:focus\:from-gray-50:focus{
    --tw-gradient-from: #f9fafb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .mobile\:focus\:from-gray-100:focus{
    --tw-gradient-from: #f3f4f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .mobile\:focus\:from-gray-200:focus{
    --tw-gradient-from: #e5e7eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .mobile\:focus\:from-gray-300:focus{
    --tw-gradient-from: #d1d5db;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .mobile\:focus\:from-gray-400:focus{
    --tw-gradient-from: #9ca3af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .mobile\:focus\:from-gray-500:focus{
    --tw-gradient-from: #6b7280;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .mobile\:focus\:from-gray-600:focus{
    --tw-gradient-from: #4b5563;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .mobile\:focus\:from-gray-700:focus{
    --tw-gradient-from: #374151;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .mobile\:focus\:from-gray-800:focus{
    --tw-gradient-from: #1f2937;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .mobile\:focus\:from-gray-900:focus{
    --tw-gradient-from: #111827;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .mobile\:focus\:from-red-50:focus{
    --tw-gradient-from: #fef2f2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .mobile\:focus\:from-red-100:focus{
    --tw-gradient-from: #fee2e2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .mobile\:focus\:from-red-200:focus{
    --tw-gradient-from: #fecaca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .mobile\:focus\:from-red-300:focus{
    --tw-gradient-from: #fca5a5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .mobile\:focus\:from-red-400:focus{
    --tw-gradient-from: #f87171;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .mobile\:focus\:from-red-500:focus{
    --tw-gradient-from: #ef4444;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .mobile\:focus\:from-red-600:focus{
    --tw-gradient-from: #dc2626;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .mobile\:focus\:from-red-700:focus{
    --tw-gradient-from: #b91c1c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .mobile\:focus\:from-red-800:focus{
    --tw-gradient-from: #991b1b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .mobile\:focus\:from-red-900:focus{
    --tw-gradient-from: #7f1d1d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .mobile\:focus\:from-red-light:focus{
    --tw-gradient-from: #EA7A7A;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .mobile\:focus\:from-red-default:focus{
    --tw-gradient-from: #B90000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .mobile\:focus\:from-red-dark:focus{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .mobile\:focus\:from-yellow-50:focus{
    --tw-gradient-from: #fffbeb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .mobile\:focus\:from-yellow-100:focus{
    --tw-gradient-from: #fef3c7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .mobile\:focus\:from-yellow-200:focus{
    --tw-gradient-from: #fde68a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .mobile\:focus\:from-yellow-300:focus{
    --tw-gradient-from: #fcd34d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .mobile\:focus\:from-yellow-400:focus{
    --tw-gradient-from: #fbbf24;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .mobile\:focus\:from-yellow-500:focus{
    --tw-gradient-from: #f59e0b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .mobile\:focus\:from-yellow-600:focus{
    --tw-gradient-from: #d97706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .mobile\:focus\:from-yellow-700:focus{
    --tw-gradient-from: #b45309;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .mobile\:focus\:from-yellow-800:focus{
    --tw-gradient-from: #92400e;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .mobile\:focus\:from-yellow-900:focus{
    --tw-gradient-from: #78350f;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .mobile\:focus\:from-green-50:focus{
    --tw-gradient-from: #ecfdf5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .mobile\:focus\:from-green-100:focus{
    --tw-gradient-from: #d1fae5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .mobile\:focus\:from-green-200:focus{
    --tw-gradient-from: #a7f3d0;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .mobile\:focus\:from-green-300:focus{
    --tw-gradient-from: #6ee7b7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .mobile\:focus\:from-green-400:focus{
    --tw-gradient-from: #34d399;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .mobile\:focus\:from-green-500:focus{
    --tw-gradient-from: #10b981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .mobile\:focus\:from-green-600:focus{
    --tw-gradient-from: #059669;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .mobile\:focus\:from-green-700:focus{
    --tw-gradient-from: #047857;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .mobile\:focus\:from-green-800:focus{
    --tw-gradient-from: #065f46;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .mobile\:focus\:from-green-900:focus{
    --tw-gradient-from: #064e3b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .mobile\:focus\:from-green-light:focus{
    --tw-gradient-from: #B5D1B9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .mobile\:focus\:from-green-default:focus{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .mobile\:focus\:from-green-dark:focus{
    --tw-gradient-from: #1C251E;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .mobile\:focus\:from-blue-50:focus{
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .mobile\:focus\:from-blue-100:focus{
    --tw-gradient-from: #dbeafe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .mobile\:focus\:from-blue-200:focus{
    --tw-gradient-from: #bfdbfe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .mobile\:focus\:from-blue-300:focus{
    --tw-gradient-from: #93c5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .mobile\:focus\:from-blue-400:focus{
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .mobile\:focus\:from-blue-500:focus{
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .mobile\:focus\:from-blue-600:focus{
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .mobile\:focus\:from-blue-700:focus{
    --tw-gradient-from: #1d4ed8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .mobile\:focus\:from-blue-800:focus{
    --tw-gradient-from: #1e40af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .mobile\:focus\:from-blue-900:focus{
    --tw-gradient-from: #1e3a8a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .mobile\:focus\:from-indigo-50:focus{
    --tw-gradient-from: #eef2ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .mobile\:focus\:from-indigo-100:focus{
    --tw-gradient-from: #e0e7ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .mobile\:focus\:from-indigo-200:focus{
    --tw-gradient-from: #c7d2fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .mobile\:focus\:from-indigo-300:focus{
    --tw-gradient-from: #a5b4fc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .mobile\:focus\:from-indigo-400:focus{
    --tw-gradient-from: #818cf8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .mobile\:focus\:from-indigo-500:focus{
    --tw-gradient-from: #6366f1;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .mobile\:focus\:from-indigo-600:focus{
    --tw-gradient-from: #4f46e5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .mobile\:focus\:from-indigo-700:focus{
    --tw-gradient-from: #4338ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .mobile\:focus\:from-indigo-800:focus{
    --tw-gradient-from: #3730a3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .mobile\:focus\:from-indigo-900:focus{
    --tw-gradient-from: #312e81;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .mobile\:focus\:from-purple-50:focus{
    --tw-gradient-from: #f5f3ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .mobile\:focus\:from-purple-100:focus{
    --tw-gradient-from: #ede9fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .mobile\:focus\:from-purple-200:focus{
    --tw-gradient-from: #ddd6fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .mobile\:focus\:from-purple-300:focus{
    --tw-gradient-from: #c4b5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .mobile\:focus\:from-purple-400:focus{
    --tw-gradient-from: #a78bfa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .mobile\:focus\:from-purple-500:focus{
    --tw-gradient-from: #8b5cf6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .mobile\:focus\:from-purple-600:focus{
    --tw-gradient-from: #7c3aed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .mobile\:focus\:from-purple-700:focus{
    --tw-gradient-from: #6d28d9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .mobile\:focus\:from-purple-800:focus{
    --tw-gradient-from: #5b21b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .mobile\:focus\:from-purple-900:focus{
    --tw-gradient-from: #4c1d95;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .mobile\:focus\:from-pink-50:focus{
    --tw-gradient-from: #fdf2f8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .mobile\:focus\:from-pink-100:focus{
    --tw-gradient-from: #fce7f3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .mobile\:focus\:from-pink-200:focus{
    --tw-gradient-from: #fbcfe8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .mobile\:focus\:from-pink-300:focus{
    --tw-gradient-from: #f9a8d4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .mobile\:focus\:from-pink-400:focus{
    --tw-gradient-from: #f472b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .mobile\:focus\:from-pink-500:focus{
    --tw-gradient-from: #ec4899;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .mobile\:focus\:from-pink-600:focus{
    --tw-gradient-from: #db2777;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .mobile\:focus\:from-pink-700:focus{
    --tw-gradient-from: #be185d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .mobile\:focus\:from-pink-800:focus{
    --tw-gradient-from: #9d174d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .mobile\:focus\:from-pink-900:focus{
    --tw-gradient-from: #831843;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .mobile\:focus\:from-brown-light:focus{
    --tw-gradient-from: #f0e9de;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .mobile\:focus\:from-brown-semi:focus{
    --tw-gradient-from: #ded6ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .mobile\:focus\:from-brown-default:focus{
    --tw-gradient-from: #7b6c5c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .mobile\:focus\:from-brown-dark:focus{
    --tw-gradient-from: #3d2706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .mobile\:focus\:from-success-light:focus{
    --tw-gradient-from: #91E09C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .mobile\:focus\:from-success-default:focus{
    --tw-gradient-from: #2D993C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .mobile\:focus\:from-success-dark:focus{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .mobile\:focus\:from-error-light:focus{
    --tw-gradient-from: #F98686;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .mobile\:focus\:from-error-default:focus{
    --tw-gradient-from: #CB0707;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .mobile\:focus\:from-error-dark:focus{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .mobile\:focus\:from-navigation-dark:focus{
    --tw-gradient-from: #ffcd00;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .mobile\:via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .mobile\:via-current{
    --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .mobile\:via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .mobile\:via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .mobile\:via-gray-50{
    --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .mobile\:via-gray-100{
    --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .mobile\:via-gray-200{
    --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .mobile\:via-gray-300{
    --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .mobile\:via-gray-400{
    --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .mobile\:via-gray-500{
    --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .mobile\:via-gray-600{
    --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .mobile\:via-gray-700{
    --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .mobile\:via-gray-800{
    --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .mobile\:via-gray-900{
    --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .mobile\:via-red-50{
    --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .mobile\:via-red-100{
    --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .mobile\:via-red-200{
    --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .mobile\:via-red-300{
    --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .mobile\:via-red-400{
    --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .mobile\:via-red-500{
    --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .mobile\:via-red-600{
    --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .mobile\:via-red-700{
    --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .mobile\:via-red-800{
    --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .mobile\:via-red-900{
    --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .mobile\:via-red-light{
    --tw-gradient-stops: var(--tw-gradient-from), #EA7A7A, var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .mobile\:via-red-default{
    --tw-gradient-stops: var(--tw-gradient-from), #B90000, var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .mobile\:via-red-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .mobile\:via-yellow-50{
    --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .mobile\:via-yellow-100{
    --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .mobile\:via-yellow-200{
    --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .mobile\:via-yellow-300{
    --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .mobile\:via-yellow-400{
    --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .mobile\:via-yellow-500{
    --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .mobile\:via-yellow-600{
    --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .mobile\:via-yellow-700{
    --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .mobile\:via-yellow-800{
    --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .mobile\:via-yellow-900{
    --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .mobile\:via-green-50{
    --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .mobile\:via-green-100{
    --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .mobile\:via-green-200{
    --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .mobile\:via-green-300{
    --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .mobile\:via-green-400{
    --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .mobile\:via-green-500{
    --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .mobile\:via-green-600{
    --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .mobile\:via-green-700{
    --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .mobile\:via-green-800{
    --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .mobile\:via-green-900{
    --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .mobile\:via-green-light{
    --tw-gradient-stops: var(--tw-gradient-from), #B5D1B9, var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .mobile\:via-green-default{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .mobile\:via-green-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #1C251E, var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .mobile\:via-blue-50{
    --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .mobile\:via-blue-100{
    --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .mobile\:via-blue-200{
    --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .mobile\:via-blue-300{
    --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .mobile\:via-blue-400{
    --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .mobile\:via-blue-500{
    --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .mobile\:via-blue-600{
    --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .mobile\:via-blue-700{
    --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .mobile\:via-blue-800{
    --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .mobile\:via-blue-900{
    --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .mobile\:via-indigo-50{
    --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .mobile\:via-indigo-100{
    --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .mobile\:via-indigo-200{
    --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .mobile\:via-indigo-300{
    --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .mobile\:via-indigo-400{
    --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .mobile\:via-indigo-500{
    --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .mobile\:via-indigo-600{
    --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .mobile\:via-indigo-700{
    --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .mobile\:via-indigo-800{
    --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .mobile\:via-indigo-900{
    --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .mobile\:via-purple-50{
    --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .mobile\:via-purple-100{
    --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .mobile\:via-purple-200{
    --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .mobile\:via-purple-300{
    --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .mobile\:via-purple-400{
    --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .mobile\:via-purple-500{
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .mobile\:via-purple-600{
    --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .mobile\:via-purple-700{
    --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .mobile\:via-purple-800{
    --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .mobile\:via-purple-900{
    --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .mobile\:via-pink-50{
    --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .mobile\:via-pink-100{
    --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .mobile\:via-pink-200{
    --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .mobile\:via-pink-300{
    --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .mobile\:via-pink-400{
    --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .mobile\:via-pink-500{
    --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .mobile\:via-pink-600{
    --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .mobile\:via-pink-700{
    --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .mobile\:via-pink-800{
    --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .mobile\:via-pink-900{
    --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .mobile\:via-brown-light{
    --tw-gradient-stops: var(--tw-gradient-from), #f0e9de, var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .mobile\:via-brown-semi{
    --tw-gradient-stops: var(--tw-gradient-from), #ded6ca, var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .mobile\:via-brown-default{
    --tw-gradient-stops: var(--tw-gradient-from), #7b6c5c, var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .mobile\:via-brown-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #3d2706, var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .mobile\:via-success-light{
    --tw-gradient-stops: var(--tw-gradient-from), #91E09C, var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .mobile\:via-success-default{
    --tw-gradient-stops: var(--tw-gradient-from), #2D993C, var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .mobile\:via-success-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .mobile\:via-error-light{
    --tw-gradient-stops: var(--tw-gradient-from), #F98686, var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .mobile\:via-error-default{
    --tw-gradient-stops: var(--tw-gradient-from), #CB0707, var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .mobile\:via-error-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .mobile\:via-navigation-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #ffcd00, var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .mobile\:hover\:via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .mobile\:hover\:via-current:hover{
    --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .mobile\:hover\:via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .mobile\:hover\:via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .mobile\:hover\:via-gray-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .mobile\:hover\:via-gray-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .mobile\:hover\:via-gray-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .mobile\:hover\:via-gray-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .mobile\:hover\:via-gray-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .mobile\:hover\:via-gray-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .mobile\:hover\:via-gray-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .mobile\:hover\:via-gray-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .mobile\:hover\:via-gray-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .mobile\:hover\:via-gray-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .mobile\:hover\:via-red-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .mobile\:hover\:via-red-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .mobile\:hover\:via-red-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .mobile\:hover\:via-red-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .mobile\:hover\:via-red-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .mobile\:hover\:via-red-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .mobile\:hover\:via-red-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .mobile\:hover\:via-red-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .mobile\:hover\:via-red-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .mobile\:hover\:via-red-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .mobile\:hover\:via-red-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #EA7A7A, var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .mobile\:hover\:via-red-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B90000, var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .mobile\:hover\:via-red-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .mobile\:hover\:via-yellow-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .mobile\:hover\:via-yellow-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .mobile\:hover\:via-yellow-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .mobile\:hover\:via-yellow-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .mobile\:hover\:via-yellow-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .mobile\:hover\:via-yellow-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .mobile\:hover\:via-yellow-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .mobile\:hover\:via-yellow-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .mobile\:hover\:via-yellow-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .mobile\:hover\:via-yellow-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .mobile\:hover\:via-green-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .mobile\:hover\:via-green-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .mobile\:hover\:via-green-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .mobile\:hover\:via-green-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .mobile\:hover\:via-green-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .mobile\:hover\:via-green-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .mobile\:hover\:via-green-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .mobile\:hover\:via-green-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .mobile\:hover\:via-green-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .mobile\:hover\:via-green-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .mobile\:hover\:via-green-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B5D1B9, var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .mobile\:hover\:via-green-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .mobile\:hover\:via-green-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1C251E, var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .mobile\:hover\:via-blue-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .mobile\:hover\:via-blue-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .mobile\:hover\:via-blue-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .mobile\:hover\:via-blue-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .mobile\:hover\:via-blue-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .mobile\:hover\:via-blue-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .mobile\:hover\:via-blue-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .mobile\:hover\:via-blue-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .mobile\:hover\:via-blue-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .mobile\:hover\:via-blue-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .mobile\:hover\:via-indigo-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .mobile\:hover\:via-indigo-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .mobile\:hover\:via-indigo-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .mobile\:hover\:via-indigo-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .mobile\:hover\:via-indigo-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .mobile\:hover\:via-indigo-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .mobile\:hover\:via-indigo-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .mobile\:hover\:via-indigo-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .mobile\:hover\:via-indigo-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .mobile\:hover\:via-indigo-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .mobile\:hover\:via-purple-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .mobile\:hover\:via-purple-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .mobile\:hover\:via-purple-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .mobile\:hover\:via-purple-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .mobile\:hover\:via-purple-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .mobile\:hover\:via-purple-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .mobile\:hover\:via-purple-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .mobile\:hover\:via-purple-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .mobile\:hover\:via-purple-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .mobile\:hover\:via-purple-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .mobile\:hover\:via-pink-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .mobile\:hover\:via-pink-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .mobile\:hover\:via-pink-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .mobile\:hover\:via-pink-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .mobile\:hover\:via-pink-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .mobile\:hover\:via-pink-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .mobile\:hover\:via-pink-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .mobile\:hover\:via-pink-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .mobile\:hover\:via-pink-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .mobile\:hover\:via-pink-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .mobile\:hover\:via-brown-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f0e9de, var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .mobile\:hover\:via-brown-semi:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ded6ca, var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .mobile\:hover\:via-brown-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #7b6c5c, var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .mobile\:hover\:via-brown-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #3d2706, var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .mobile\:hover\:via-success-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #91E09C, var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .mobile\:hover\:via-success-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2D993C, var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .mobile\:hover\:via-success-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .mobile\:hover\:via-error-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F98686, var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .mobile\:hover\:via-error-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #CB0707, var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .mobile\:hover\:via-error-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .mobile\:hover\:via-navigation-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ffcd00, var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .mobile\:focus\:via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .mobile\:focus\:via-current:focus{
    --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .mobile\:focus\:via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .mobile\:focus\:via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .mobile\:focus\:via-gray-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .mobile\:focus\:via-gray-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .mobile\:focus\:via-gray-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .mobile\:focus\:via-gray-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .mobile\:focus\:via-gray-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .mobile\:focus\:via-gray-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .mobile\:focus\:via-gray-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .mobile\:focus\:via-gray-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .mobile\:focus\:via-gray-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .mobile\:focus\:via-gray-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .mobile\:focus\:via-red-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .mobile\:focus\:via-red-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .mobile\:focus\:via-red-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .mobile\:focus\:via-red-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .mobile\:focus\:via-red-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .mobile\:focus\:via-red-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .mobile\:focus\:via-red-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .mobile\:focus\:via-red-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .mobile\:focus\:via-red-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .mobile\:focus\:via-red-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .mobile\:focus\:via-red-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #EA7A7A, var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .mobile\:focus\:via-red-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B90000, var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .mobile\:focus\:via-red-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .mobile\:focus\:via-yellow-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .mobile\:focus\:via-yellow-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .mobile\:focus\:via-yellow-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .mobile\:focus\:via-yellow-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .mobile\:focus\:via-yellow-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .mobile\:focus\:via-yellow-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .mobile\:focus\:via-yellow-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .mobile\:focus\:via-yellow-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .mobile\:focus\:via-yellow-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .mobile\:focus\:via-yellow-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .mobile\:focus\:via-green-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .mobile\:focus\:via-green-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .mobile\:focus\:via-green-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .mobile\:focus\:via-green-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .mobile\:focus\:via-green-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .mobile\:focus\:via-green-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .mobile\:focus\:via-green-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .mobile\:focus\:via-green-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .mobile\:focus\:via-green-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .mobile\:focus\:via-green-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .mobile\:focus\:via-green-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B5D1B9, var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .mobile\:focus\:via-green-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .mobile\:focus\:via-green-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1C251E, var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .mobile\:focus\:via-blue-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .mobile\:focus\:via-blue-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .mobile\:focus\:via-blue-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .mobile\:focus\:via-blue-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .mobile\:focus\:via-blue-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .mobile\:focus\:via-blue-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .mobile\:focus\:via-blue-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .mobile\:focus\:via-blue-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .mobile\:focus\:via-blue-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .mobile\:focus\:via-blue-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .mobile\:focus\:via-indigo-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .mobile\:focus\:via-indigo-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .mobile\:focus\:via-indigo-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .mobile\:focus\:via-indigo-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .mobile\:focus\:via-indigo-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .mobile\:focus\:via-indigo-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .mobile\:focus\:via-indigo-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .mobile\:focus\:via-indigo-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .mobile\:focus\:via-indigo-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .mobile\:focus\:via-indigo-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .mobile\:focus\:via-purple-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .mobile\:focus\:via-purple-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .mobile\:focus\:via-purple-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .mobile\:focus\:via-purple-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .mobile\:focus\:via-purple-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .mobile\:focus\:via-purple-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .mobile\:focus\:via-purple-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .mobile\:focus\:via-purple-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .mobile\:focus\:via-purple-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .mobile\:focus\:via-purple-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .mobile\:focus\:via-pink-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .mobile\:focus\:via-pink-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .mobile\:focus\:via-pink-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .mobile\:focus\:via-pink-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .mobile\:focus\:via-pink-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .mobile\:focus\:via-pink-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .mobile\:focus\:via-pink-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .mobile\:focus\:via-pink-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .mobile\:focus\:via-pink-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .mobile\:focus\:via-pink-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .mobile\:focus\:via-brown-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f0e9de, var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .mobile\:focus\:via-brown-semi:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ded6ca, var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .mobile\:focus\:via-brown-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #7b6c5c, var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .mobile\:focus\:via-brown-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #3d2706, var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .mobile\:focus\:via-success-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #91E09C, var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .mobile\:focus\:via-success-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2D993C, var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .mobile\:focus\:via-success-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .mobile\:focus\:via-error-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F98686, var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .mobile\:focus\:via-error-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #CB0707, var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .mobile\:focus\:via-error-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .mobile\:focus\:via-navigation-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ffcd00, var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .mobile\:to-transparent{
    --tw-gradient-to: transparent;
  }

  .mobile\:to-current{
    --tw-gradient-to: currentColor;
  }

  .mobile\:to-black{
    --tw-gradient-to: #000;
  }

  .mobile\:to-white{
    --tw-gradient-to: #fff;
  }

  .mobile\:to-gray-50{
    --tw-gradient-to: #f9fafb;
  }

  .mobile\:to-gray-100{
    --tw-gradient-to: #f3f4f6;
  }

  .mobile\:to-gray-200{
    --tw-gradient-to: #e5e7eb;
  }

  .mobile\:to-gray-300{
    --tw-gradient-to: #d1d5db;
  }

  .mobile\:to-gray-400{
    --tw-gradient-to: #9ca3af;
  }

  .mobile\:to-gray-500{
    --tw-gradient-to: #6b7280;
  }

  .mobile\:to-gray-600{
    --tw-gradient-to: #4b5563;
  }

  .mobile\:to-gray-700{
    --tw-gradient-to: #374151;
  }

  .mobile\:to-gray-800{
    --tw-gradient-to: #1f2937;
  }

  .mobile\:to-gray-900{
    --tw-gradient-to: #111827;
  }

  .mobile\:to-red-50{
    --tw-gradient-to: #fef2f2;
  }

  .mobile\:to-red-100{
    --tw-gradient-to: #fee2e2;
  }

  .mobile\:to-red-200{
    --tw-gradient-to: #fecaca;
  }

  .mobile\:to-red-300{
    --tw-gradient-to: #fca5a5;
  }

  .mobile\:to-red-400{
    --tw-gradient-to: #f87171;
  }

  .mobile\:to-red-500{
    --tw-gradient-to: #ef4444;
  }

  .mobile\:to-red-600{
    --tw-gradient-to: #dc2626;
  }

  .mobile\:to-red-700{
    --tw-gradient-to: #b91c1c;
  }

  .mobile\:to-red-800{
    --tw-gradient-to: #991b1b;
  }

  .mobile\:to-red-900{
    --tw-gradient-to: #7f1d1d;
  }

  .mobile\:to-red-light{
    --tw-gradient-to: #EA7A7A;
  }

  .mobile\:to-red-default{
    --tw-gradient-to: #B90000;
  }

  .mobile\:to-red-dark{
    --tw-gradient-to: #580000;
  }

  .mobile\:to-yellow-50{
    --tw-gradient-to: #fffbeb;
  }

  .mobile\:to-yellow-100{
    --tw-gradient-to: #fef3c7;
  }

  .mobile\:to-yellow-200{
    --tw-gradient-to: #fde68a;
  }

  .mobile\:to-yellow-300{
    --tw-gradient-to: #fcd34d;
  }

  .mobile\:to-yellow-400{
    --tw-gradient-to: #fbbf24;
  }

  .mobile\:to-yellow-500{
    --tw-gradient-to: #f59e0b;
  }

  .mobile\:to-yellow-600{
    --tw-gradient-to: #d97706;
  }

  .mobile\:to-yellow-700{
    --tw-gradient-to: #b45309;
  }

  .mobile\:to-yellow-800{
    --tw-gradient-to: #92400e;
  }

  .mobile\:to-yellow-900{
    --tw-gradient-to: #78350f;
  }

  .mobile\:to-green-50{
    --tw-gradient-to: #ecfdf5;
  }

  .mobile\:to-green-100{
    --tw-gradient-to: #d1fae5;
  }

  .mobile\:to-green-200{
    --tw-gradient-to: #a7f3d0;
  }

  .mobile\:to-green-300{
    --tw-gradient-to: #6ee7b7;
  }

  .mobile\:to-green-400{
    --tw-gradient-to: #34d399;
  }

  .mobile\:to-green-500{
    --tw-gradient-to: #10b981;
  }

  .mobile\:to-green-600{
    --tw-gradient-to: #059669;
  }

  .mobile\:to-green-700{
    --tw-gradient-to: #047857;
  }

  .mobile\:to-green-800{
    --tw-gradient-to: #065f46;
  }

  .mobile\:to-green-900{
    --tw-gradient-to: #064e3b;
  }

  .mobile\:to-green-light{
    --tw-gradient-to: #B5D1B9;
  }

  .mobile\:to-green-default{
    --tw-gradient-to: #263B29;
  }

  .mobile\:to-green-dark{
    --tw-gradient-to: #1C251E;
  }

  .mobile\:to-blue-50{
    --tw-gradient-to: #eff6ff;
  }

  .mobile\:to-blue-100{
    --tw-gradient-to: #dbeafe;
  }

  .mobile\:to-blue-200{
    --tw-gradient-to: #bfdbfe;
  }

  .mobile\:to-blue-300{
    --tw-gradient-to: #93c5fd;
  }

  .mobile\:to-blue-400{
    --tw-gradient-to: #60a5fa;
  }

  .mobile\:to-blue-500{
    --tw-gradient-to: #3b82f6;
  }

  .mobile\:to-blue-600{
    --tw-gradient-to: #2563eb;
  }

  .mobile\:to-blue-700{
    --tw-gradient-to: #1d4ed8;
  }

  .mobile\:to-blue-800{
    --tw-gradient-to: #1e40af;
  }

  .mobile\:to-blue-900{
    --tw-gradient-to: #1e3a8a;
  }

  .mobile\:to-indigo-50{
    --tw-gradient-to: #eef2ff;
  }

  .mobile\:to-indigo-100{
    --tw-gradient-to: #e0e7ff;
  }

  .mobile\:to-indigo-200{
    --tw-gradient-to: #c7d2fe;
  }

  .mobile\:to-indigo-300{
    --tw-gradient-to: #a5b4fc;
  }

  .mobile\:to-indigo-400{
    --tw-gradient-to: #818cf8;
  }

  .mobile\:to-indigo-500{
    --tw-gradient-to: #6366f1;
  }

  .mobile\:to-indigo-600{
    --tw-gradient-to: #4f46e5;
  }

  .mobile\:to-indigo-700{
    --tw-gradient-to: #4338ca;
  }

  .mobile\:to-indigo-800{
    --tw-gradient-to: #3730a3;
  }

  .mobile\:to-indigo-900{
    --tw-gradient-to: #312e81;
  }

  .mobile\:to-purple-50{
    --tw-gradient-to: #f5f3ff;
  }

  .mobile\:to-purple-100{
    --tw-gradient-to: #ede9fe;
  }

  .mobile\:to-purple-200{
    --tw-gradient-to: #ddd6fe;
  }

  .mobile\:to-purple-300{
    --tw-gradient-to: #c4b5fd;
  }

  .mobile\:to-purple-400{
    --tw-gradient-to: #a78bfa;
  }

  .mobile\:to-purple-500{
    --tw-gradient-to: #8b5cf6;
  }

  .mobile\:to-purple-600{
    --tw-gradient-to: #7c3aed;
  }

  .mobile\:to-purple-700{
    --tw-gradient-to: #6d28d9;
  }

  .mobile\:to-purple-800{
    --tw-gradient-to: #5b21b6;
  }

  .mobile\:to-purple-900{
    --tw-gradient-to: #4c1d95;
  }

  .mobile\:to-pink-50{
    --tw-gradient-to: #fdf2f8;
  }

  .mobile\:to-pink-100{
    --tw-gradient-to: #fce7f3;
  }

  .mobile\:to-pink-200{
    --tw-gradient-to: #fbcfe8;
  }

  .mobile\:to-pink-300{
    --tw-gradient-to: #f9a8d4;
  }

  .mobile\:to-pink-400{
    --tw-gradient-to: #f472b6;
  }

  .mobile\:to-pink-500{
    --tw-gradient-to: #ec4899;
  }

  .mobile\:to-pink-600{
    --tw-gradient-to: #db2777;
  }

  .mobile\:to-pink-700{
    --tw-gradient-to: #be185d;
  }

  .mobile\:to-pink-800{
    --tw-gradient-to: #9d174d;
  }

  .mobile\:to-pink-900{
    --tw-gradient-to: #831843;
  }

  .mobile\:to-brown-light{
    --tw-gradient-to: #f0e9de;
  }

  .mobile\:to-brown-semi{
    --tw-gradient-to: #ded6ca;
  }

  .mobile\:to-brown-default{
    --tw-gradient-to: #7b6c5c;
  }

  .mobile\:to-brown-dark{
    --tw-gradient-to: #3d2706;
  }

  .mobile\:to-success-light{
    --tw-gradient-to: #91E09C;
  }

  .mobile\:to-success-default{
    --tw-gradient-to: #2D993C;
  }

  .mobile\:to-success-dark{
    --tw-gradient-to: #263B29;
  }

  .mobile\:to-error-light{
    --tw-gradient-to: #F98686;
  }

  .mobile\:to-error-default{
    --tw-gradient-to: #CB0707;
  }

  .mobile\:to-error-dark{
    --tw-gradient-to: #580000;
  }

  .mobile\:to-navigation-dark{
    --tw-gradient-to: #ffcd00;
  }

  .mobile\:hover\:to-transparent:hover{
    --tw-gradient-to: transparent;
  }

  .mobile\:hover\:to-current:hover{
    --tw-gradient-to: currentColor;
  }

  .mobile\:hover\:to-black:hover{
    --tw-gradient-to: #000;
  }

  .mobile\:hover\:to-white:hover{
    --tw-gradient-to: #fff;
  }

  .mobile\:hover\:to-gray-50:hover{
    --tw-gradient-to: #f9fafb;
  }

  .mobile\:hover\:to-gray-100:hover{
    --tw-gradient-to: #f3f4f6;
  }

  .mobile\:hover\:to-gray-200:hover{
    --tw-gradient-to: #e5e7eb;
  }

  .mobile\:hover\:to-gray-300:hover{
    --tw-gradient-to: #d1d5db;
  }

  .mobile\:hover\:to-gray-400:hover{
    --tw-gradient-to: #9ca3af;
  }

  .mobile\:hover\:to-gray-500:hover{
    --tw-gradient-to: #6b7280;
  }

  .mobile\:hover\:to-gray-600:hover{
    --tw-gradient-to: #4b5563;
  }

  .mobile\:hover\:to-gray-700:hover{
    --tw-gradient-to: #374151;
  }

  .mobile\:hover\:to-gray-800:hover{
    --tw-gradient-to: #1f2937;
  }

  .mobile\:hover\:to-gray-900:hover{
    --tw-gradient-to: #111827;
  }

  .mobile\:hover\:to-red-50:hover{
    --tw-gradient-to: #fef2f2;
  }

  .mobile\:hover\:to-red-100:hover{
    --tw-gradient-to: #fee2e2;
  }

  .mobile\:hover\:to-red-200:hover{
    --tw-gradient-to: #fecaca;
  }

  .mobile\:hover\:to-red-300:hover{
    --tw-gradient-to: #fca5a5;
  }

  .mobile\:hover\:to-red-400:hover{
    --tw-gradient-to: #f87171;
  }

  .mobile\:hover\:to-red-500:hover{
    --tw-gradient-to: #ef4444;
  }

  .mobile\:hover\:to-red-600:hover{
    --tw-gradient-to: #dc2626;
  }

  .mobile\:hover\:to-red-700:hover{
    --tw-gradient-to: #b91c1c;
  }

  .mobile\:hover\:to-red-800:hover{
    --tw-gradient-to: #991b1b;
  }

  .mobile\:hover\:to-red-900:hover{
    --tw-gradient-to: #7f1d1d;
  }

  .mobile\:hover\:to-red-light:hover{
    --tw-gradient-to: #EA7A7A;
  }

  .mobile\:hover\:to-red-default:hover{
    --tw-gradient-to: #B90000;
  }

  .mobile\:hover\:to-red-dark:hover{
    --tw-gradient-to: #580000;
  }

  .mobile\:hover\:to-yellow-50:hover{
    --tw-gradient-to: #fffbeb;
  }

  .mobile\:hover\:to-yellow-100:hover{
    --tw-gradient-to: #fef3c7;
  }

  .mobile\:hover\:to-yellow-200:hover{
    --tw-gradient-to: #fde68a;
  }

  .mobile\:hover\:to-yellow-300:hover{
    --tw-gradient-to: #fcd34d;
  }

  .mobile\:hover\:to-yellow-400:hover{
    --tw-gradient-to: #fbbf24;
  }

  .mobile\:hover\:to-yellow-500:hover{
    --tw-gradient-to: #f59e0b;
  }

  .mobile\:hover\:to-yellow-600:hover{
    --tw-gradient-to: #d97706;
  }

  .mobile\:hover\:to-yellow-700:hover{
    --tw-gradient-to: #b45309;
  }

  .mobile\:hover\:to-yellow-800:hover{
    --tw-gradient-to: #92400e;
  }

  .mobile\:hover\:to-yellow-900:hover{
    --tw-gradient-to: #78350f;
  }

  .mobile\:hover\:to-green-50:hover{
    --tw-gradient-to: #ecfdf5;
  }

  .mobile\:hover\:to-green-100:hover{
    --tw-gradient-to: #d1fae5;
  }

  .mobile\:hover\:to-green-200:hover{
    --tw-gradient-to: #a7f3d0;
  }

  .mobile\:hover\:to-green-300:hover{
    --tw-gradient-to: #6ee7b7;
  }

  .mobile\:hover\:to-green-400:hover{
    --tw-gradient-to: #34d399;
  }

  .mobile\:hover\:to-green-500:hover{
    --tw-gradient-to: #10b981;
  }

  .mobile\:hover\:to-green-600:hover{
    --tw-gradient-to: #059669;
  }

  .mobile\:hover\:to-green-700:hover{
    --tw-gradient-to: #047857;
  }

  .mobile\:hover\:to-green-800:hover{
    --tw-gradient-to: #065f46;
  }

  .mobile\:hover\:to-green-900:hover{
    --tw-gradient-to: #064e3b;
  }

  .mobile\:hover\:to-green-light:hover{
    --tw-gradient-to: #B5D1B9;
  }

  .mobile\:hover\:to-green-default:hover{
    --tw-gradient-to: #263B29;
  }

  .mobile\:hover\:to-green-dark:hover{
    --tw-gradient-to: #1C251E;
  }

  .mobile\:hover\:to-blue-50:hover{
    --tw-gradient-to: #eff6ff;
  }

  .mobile\:hover\:to-blue-100:hover{
    --tw-gradient-to: #dbeafe;
  }

  .mobile\:hover\:to-blue-200:hover{
    --tw-gradient-to: #bfdbfe;
  }

  .mobile\:hover\:to-blue-300:hover{
    --tw-gradient-to: #93c5fd;
  }

  .mobile\:hover\:to-blue-400:hover{
    --tw-gradient-to: #60a5fa;
  }

  .mobile\:hover\:to-blue-500:hover{
    --tw-gradient-to: #3b82f6;
  }

  .mobile\:hover\:to-blue-600:hover{
    --tw-gradient-to: #2563eb;
  }

  .mobile\:hover\:to-blue-700:hover{
    --tw-gradient-to: #1d4ed8;
  }

  .mobile\:hover\:to-blue-800:hover{
    --tw-gradient-to: #1e40af;
  }

  .mobile\:hover\:to-blue-900:hover{
    --tw-gradient-to: #1e3a8a;
  }

  .mobile\:hover\:to-indigo-50:hover{
    --tw-gradient-to: #eef2ff;
  }

  .mobile\:hover\:to-indigo-100:hover{
    --tw-gradient-to: #e0e7ff;
  }

  .mobile\:hover\:to-indigo-200:hover{
    --tw-gradient-to: #c7d2fe;
  }

  .mobile\:hover\:to-indigo-300:hover{
    --tw-gradient-to: #a5b4fc;
  }

  .mobile\:hover\:to-indigo-400:hover{
    --tw-gradient-to: #818cf8;
  }

  .mobile\:hover\:to-indigo-500:hover{
    --tw-gradient-to: #6366f1;
  }

  .mobile\:hover\:to-indigo-600:hover{
    --tw-gradient-to: #4f46e5;
  }

  .mobile\:hover\:to-indigo-700:hover{
    --tw-gradient-to: #4338ca;
  }

  .mobile\:hover\:to-indigo-800:hover{
    --tw-gradient-to: #3730a3;
  }

  .mobile\:hover\:to-indigo-900:hover{
    --tw-gradient-to: #312e81;
  }

  .mobile\:hover\:to-purple-50:hover{
    --tw-gradient-to: #f5f3ff;
  }

  .mobile\:hover\:to-purple-100:hover{
    --tw-gradient-to: #ede9fe;
  }

  .mobile\:hover\:to-purple-200:hover{
    --tw-gradient-to: #ddd6fe;
  }

  .mobile\:hover\:to-purple-300:hover{
    --tw-gradient-to: #c4b5fd;
  }

  .mobile\:hover\:to-purple-400:hover{
    --tw-gradient-to: #a78bfa;
  }

  .mobile\:hover\:to-purple-500:hover{
    --tw-gradient-to: #8b5cf6;
  }

  .mobile\:hover\:to-purple-600:hover{
    --tw-gradient-to: #7c3aed;
  }

  .mobile\:hover\:to-purple-700:hover{
    --tw-gradient-to: #6d28d9;
  }

  .mobile\:hover\:to-purple-800:hover{
    --tw-gradient-to: #5b21b6;
  }

  .mobile\:hover\:to-purple-900:hover{
    --tw-gradient-to: #4c1d95;
  }

  .mobile\:hover\:to-pink-50:hover{
    --tw-gradient-to: #fdf2f8;
  }

  .mobile\:hover\:to-pink-100:hover{
    --tw-gradient-to: #fce7f3;
  }

  .mobile\:hover\:to-pink-200:hover{
    --tw-gradient-to: #fbcfe8;
  }

  .mobile\:hover\:to-pink-300:hover{
    --tw-gradient-to: #f9a8d4;
  }

  .mobile\:hover\:to-pink-400:hover{
    --tw-gradient-to: #f472b6;
  }

  .mobile\:hover\:to-pink-500:hover{
    --tw-gradient-to: #ec4899;
  }

  .mobile\:hover\:to-pink-600:hover{
    --tw-gradient-to: #db2777;
  }

  .mobile\:hover\:to-pink-700:hover{
    --tw-gradient-to: #be185d;
  }

  .mobile\:hover\:to-pink-800:hover{
    --tw-gradient-to: #9d174d;
  }

  .mobile\:hover\:to-pink-900:hover{
    --tw-gradient-to: #831843;
  }

  .mobile\:hover\:to-brown-light:hover{
    --tw-gradient-to: #f0e9de;
  }

  .mobile\:hover\:to-brown-semi:hover{
    --tw-gradient-to: #ded6ca;
  }

  .mobile\:hover\:to-brown-default:hover{
    --tw-gradient-to: #7b6c5c;
  }

  .mobile\:hover\:to-brown-dark:hover{
    --tw-gradient-to: #3d2706;
  }

  .mobile\:hover\:to-success-light:hover{
    --tw-gradient-to: #91E09C;
  }

  .mobile\:hover\:to-success-default:hover{
    --tw-gradient-to: #2D993C;
  }

  .mobile\:hover\:to-success-dark:hover{
    --tw-gradient-to: #263B29;
  }

  .mobile\:hover\:to-error-light:hover{
    --tw-gradient-to: #F98686;
  }

  .mobile\:hover\:to-error-default:hover{
    --tw-gradient-to: #CB0707;
  }

  .mobile\:hover\:to-error-dark:hover{
    --tw-gradient-to: #580000;
  }

  .mobile\:hover\:to-navigation-dark:hover{
    --tw-gradient-to: #ffcd00;
  }

  .mobile\:focus\:to-transparent:focus{
    --tw-gradient-to: transparent;
  }

  .mobile\:focus\:to-current:focus{
    --tw-gradient-to: currentColor;
  }

  .mobile\:focus\:to-black:focus{
    --tw-gradient-to: #000;
  }

  .mobile\:focus\:to-white:focus{
    --tw-gradient-to: #fff;
  }

  .mobile\:focus\:to-gray-50:focus{
    --tw-gradient-to: #f9fafb;
  }

  .mobile\:focus\:to-gray-100:focus{
    --tw-gradient-to: #f3f4f6;
  }

  .mobile\:focus\:to-gray-200:focus{
    --tw-gradient-to: #e5e7eb;
  }

  .mobile\:focus\:to-gray-300:focus{
    --tw-gradient-to: #d1d5db;
  }

  .mobile\:focus\:to-gray-400:focus{
    --tw-gradient-to: #9ca3af;
  }

  .mobile\:focus\:to-gray-500:focus{
    --tw-gradient-to: #6b7280;
  }

  .mobile\:focus\:to-gray-600:focus{
    --tw-gradient-to: #4b5563;
  }

  .mobile\:focus\:to-gray-700:focus{
    --tw-gradient-to: #374151;
  }

  .mobile\:focus\:to-gray-800:focus{
    --tw-gradient-to: #1f2937;
  }

  .mobile\:focus\:to-gray-900:focus{
    --tw-gradient-to: #111827;
  }

  .mobile\:focus\:to-red-50:focus{
    --tw-gradient-to: #fef2f2;
  }

  .mobile\:focus\:to-red-100:focus{
    --tw-gradient-to: #fee2e2;
  }

  .mobile\:focus\:to-red-200:focus{
    --tw-gradient-to: #fecaca;
  }

  .mobile\:focus\:to-red-300:focus{
    --tw-gradient-to: #fca5a5;
  }

  .mobile\:focus\:to-red-400:focus{
    --tw-gradient-to: #f87171;
  }

  .mobile\:focus\:to-red-500:focus{
    --tw-gradient-to: #ef4444;
  }

  .mobile\:focus\:to-red-600:focus{
    --tw-gradient-to: #dc2626;
  }

  .mobile\:focus\:to-red-700:focus{
    --tw-gradient-to: #b91c1c;
  }

  .mobile\:focus\:to-red-800:focus{
    --tw-gradient-to: #991b1b;
  }

  .mobile\:focus\:to-red-900:focus{
    --tw-gradient-to: #7f1d1d;
  }

  .mobile\:focus\:to-red-light:focus{
    --tw-gradient-to: #EA7A7A;
  }

  .mobile\:focus\:to-red-default:focus{
    --tw-gradient-to: #B90000;
  }

  .mobile\:focus\:to-red-dark:focus{
    --tw-gradient-to: #580000;
  }

  .mobile\:focus\:to-yellow-50:focus{
    --tw-gradient-to: #fffbeb;
  }

  .mobile\:focus\:to-yellow-100:focus{
    --tw-gradient-to: #fef3c7;
  }

  .mobile\:focus\:to-yellow-200:focus{
    --tw-gradient-to: #fde68a;
  }

  .mobile\:focus\:to-yellow-300:focus{
    --tw-gradient-to: #fcd34d;
  }

  .mobile\:focus\:to-yellow-400:focus{
    --tw-gradient-to: #fbbf24;
  }

  .mobile\:focus\:to-yellow-500:focus{
    --tw-gradient-to: #f59e0b;
  }

  .mobile\:focus\:to-yellow-600:focus{
    --tw-gradient-to: #d97706;
  }

  .mobile\:focus\:to-yellow-700:focus{
    --tw-gradient-to: #b45309;
  }

  .mobile\:focus\:to-yellow-800:focus{
    --tw-gradient-to: #92400e;
  }

  .mobile\:focus\:to-yellow-900:focus{
    --tw-gradient-to: #78350f;
  }

  .mobile\:focus\:to-green-50:focus{
    --tw-gradient-to: #ecfdf5;
  }

  .mobile\:focus\:to-green-100:focus{
    --tw-gradient-to: #d1fae5;
  }

  .mobile\:focus\:to-green-200:focus{
    --tw-gradient-to: #a7f3d0;
  }

  .mobile\:focus\:to-green-300:focus{
    --tw-gradient-to: #6ee7b7;
  }

  .mobile\:focus\:to-green-400:focus{
    --tw-gradient-to: #34d399;
  }

  .mobile\:focus\:to-green-500:focus{
    --tw-gradient-to: #10b981;
  }

  .mobile\:focus\:to-green-600:focus{
    --tw-gradient-to: #059669;
  }

  .mobile\:focus\:to-green-700:focus{
    --tw-gradient-to: #047857;
  }

  .mobile\:focus\:to-green-800:focus{
    --tw-gradient-to: #065f46;
  }

  .mobile\:focus\:to-green-900:focus{
    --tw-gradient-to: #064e3b;
  }

  .mobile\:focus\:to-green-light:focus{
    --tw-gradient-to: #B5D1B9;
  }

  .mobile\:focus\:to-green-default:focus{
    --tw-gradient-to: #263B29;
  }

  .mobile\:focus\:to-green-dark:focus{
    --tw-gradient-to: #1C251E;
  }

  .mobile\:focus\:to-blue-50:focus{
    --tw-gradient-to: #eff6ff;
  }

  .mobile\:focus\:to-blue-100:focus{
    --tw-gradient-to: #dbeafe;
  }

  .mobile\:focus\:to-blue-200:focus{
    --tw-gradient-to: #bfdbfe;
  }

  .mobile\:focus\:to-blue-300:focus{
    --tw-gradient-to: #93c5fd;
  }

  .mobile\:focus\:to-blue-400:focus{
    --tw-gradient-to: #60a5fa;
  }

  .mobile\:focus\:to-blue-500:focus{
    --tw-gradient-to: #3b82f6;
  }

  .mobile\:focus\:to-blue-600:focus{
    --tw-gradient-to: #2563eb;
  }

  .mobile\:focus\:to-blue-700:focus{
    --tw-gradient-to: #1d4ed8;
  }

  .mobile\:focus\:to-blue-800:focus{
    --tw-gradient-to: #1e40af;
  }

  .mobile\:focus\:to-blue-900:focus{
    --tw-gradient-to: #1e3a8a;
  }

  .mobile\:focus\:to-indigo-50:focus{
    --tw-gradient-to: #eef2ff;
  }

  .mobile\:focus\:to-indigo-100:focus{
    --tw-gradient-to: #e0e7ff;
  }

  .mobile\:focus\:to-indigo-200:focus{
    --tw-gradient-to: #c7d2fe;
  }

  .mobile\:focus\:to-indigo-300:focus{
    --tw-gradient-to: #a5b4fc;
  }

  .mobile\:focus\:to-indigo-400:focus{
    --tw-gradient-to: #818cf8;
  }

  .mobile\:focus\:to-indigo-500:focus{
    --tw-gradient-to: #6366f1;
  }

  .mobile\:focus\:to-indigo-600:focus{
    --tw-gradient-to: #4f46e5;
  }

  .mobile\:focus\:to-indigo-700:focus{
    --tw-gradient-to: #4338ca;
  }

  .mobile\:focus\:to-indigo-800:focus{
    --tw-gradient-to: #3730a3;
  }

  .mobile\:focus\:to-indigo-900:focus{
    --tw-gradient-to: #312e81;
  }

  .mobile\:focus\:to-purple-50:focus{
    --tw-gradient-to: #f5f3ff;
  }

  .mobile\:focus\:to-purple-100:focus{
    --tw-gradient-to: #ede9fe;
  }

  .mobile\:focus\:to-purple-200:focus{
    --tw-gradient-to: #ddd6fe;
  }

  .mobile\:focus\:to-purple-300:focus{
    --tw-gradient-to: #c4b5fd;
  }

  .mobile\:focus\:to-purple-400:focus{
    --tw-gradient-to: #a78bfa;
  }

  .mobile\:focus\:to-purple-500:focus{
    --tw-gradient-to: #8b5cf6;
  }

  .mobile\:focus\:to-purple-600:focus{
    --tw-gradient-to: #7c3aed;
  }

  .mobile\:focus\:to-purple-700:focus{
    --tw-gradient-to: #6d28d9;
  }

  .mobile\:focus\:to-purple-800:focus{
    --tw-gradient-to: #5b21b6;
  }

  .mobile\:focus\:to-purple-900:focus{
    --tw-gradient-to: #4c1d95;
  }

  .mobile\:focus\:to-pink-50:focus{
    --tw-gradient-to: #fdf2f8;
  }

  .mobile\:focus\:to-pink-100:focus{
    --tw-gradient-to: #fce7f3;
  }

  .mobile\:focus\:to-pink-200:focus{
    --tw-gradient-to: #fbcfe8;
  }

  .mobile\:focus\:to-pink-300:focus{
    --tw-gradient-to: #f9a8d4;
  }

  .mobile\:focus\:to-pink-400:focus{
    --tw-gradient-to: #f472b6;
  }

  .mobile\:focus\:to-pink-500:focus{
    --tw-gradient-to: #ec4899;
  }

  .mobile\:focus\:to-pink-600:focus{
    --tw-gradient-to: #db2777;
  }

  .mobile\:focus\:to-pink-700:focus{
    --tw-gradient-to: #be185d;
  }

  .mobile\:focus\:to-pink-800:focus{
    --tw-gradient-to: #9d174d;
  }

  .mobile\:focus\:to-pink-900:focus{
    --tw-gradient-to: #831843;
  }

  .mobile\:focus\:to-brown-light:focus{
    --tw-gradient-to: #f0e9de;
  }

  .mobile\:focus\:to-brown-semi:focus{
    --tw-gradient-to: #ded6ca;
  }

  .mobile\:focus\:to-brown-default:focus{
    --tw-gradient-to: #7b6c5c;
  }

  .mobile\:focus\:to-brown-dark:focus{
    --tw-gradient-to: #3d2706;
  }

  .mobile\:focus\:to-success-light:focus{
    --tw-gradient-to: #91E09C;
  }

  .mobile\:focus\:to-success-default:focus{
    --tw-gradient-to: #2D993C;
  }

  .mobile\:focus\:to-success-dark:focus{
    --tw-gradient-to: #263B29;
  }

  .mobile\:focus\:to-error-light:focus{
    --tw-gradient-to: #F98686;
  }

  .mobile\:focus\:to-error-default:focus{
    --tw-gradient-to: #CB0707;
  }

  .mobile\:focus\:to-error-dark:focus{
    --tw-gradient-to: #580000;
  }

  .mobile\:focus\:to-navigation-dark:focus{
    --tw-gradient-to: #ffcd00;
  }

  .mobile\:decoration-slice{
    -webkit-box-decoration-break: slice;
            box-decoration-break: slice;
  }

  .mobile\:decoration-clone{
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
  }

  .mobile\:bg-auto{
    background-size: auto;
  }

  .mobile\:bg-cover{
    background-size: cover;
  }

  .mobile\:bg-contain{
    background-size: contain;
  }

  .mobile\:bg-fixed{
    background-attachment: fixed;
  }

  .mobile\:bg-local{
    background-attachment: local;
  }

  .mobile\:bg-scroll{
    background-attachment: scroll;
  }

  .mobile\:bg-clip-border{
    background-clip: border-box;
  }

  .mobile\:bg-clip-padding{
    background-clip: padding-box;
  }

  .mobile\:bg-clip-content{
    background-clip: content-box;
  }

  .mobile\:bg-clip-text{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .mobile\:bg-bottom{
    background-position: bottom;
  }

  .mobile\:bg-center{
    background-position: center;
  }

  .mobile\:bg-left{
    background-position: left;
  }

  .mobile\:bg-left-bottom{
    background-position: left bottom;
  }

  .mobile\:bg-left-top{
    background-position: left top;
  }

  .mobile\:bg-right{
    background-position: right;
  }

  .mobile\:bg-right-bottom{
    background-position: right bottom;
  }

  .mobile\:bg-right-top{
    background-position: right top;
  }

  .mobile\:bg-top{
    background-position: top;
  }

  .mobile\:bg-repeat{
    background-repeat: repeat;
  }

  .mobile\:bg-no-repeat{
    background-repeat: no-repeat;
  }

  .mobile\:bg-repeat-x{
    background-repeat: repeat-x;
  }

  .mobile\:bg-repeat-y{
    background-repeat: repeat-y;
  }

  .mobile\:bg-repeat-round{
    background-repeat: round;
  }

  .mobile\:bg-repeat-space{
    background-repeat: space;
  }

  .mobile\:bg-origin-border{
    background-origin: border-box;
  }

  .mobile\:bg-origin-padding{
    background-origin: padding-box;
  }

  .mobile\:bg-origin-content{
    background-origin: content-box;
  }

  .mobile\:fill-current{
    fill: currentColor;
  }

  .mobile\:stroke-current{
    stroke: currentColor;
  }

  .mobile\:stroke-0{
    stroke-width: 0;
  }

  .mobile\:stroke-1{
    stroke-width: 1;
  }

  .mobile\:stroke-2{
    stroke-width: 2;
  }

  .mobile\:object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .mobile\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .mobile\:object-fill{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .mobile\:object-none{
    -o-object-fit: none;
       object-fit: none;
  }

  .mobile\:object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .mobile\:object-bottom{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .mobile\:object-center{
    -o-object-position: center;
       object-position: center;
  }

  .mobile\:object-left{
    -o-object-position: left;
       object-position: left;
  }

  .mobile\:object-left-bottom{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .mobile\:object-left-top{
    -o-object-position: left top;
       object-position: left top;
  }

  .mobile\:object-right{
    -o-object-position: right;
       object-position: right;
  }

  .mobile\:object-right-bottom{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .mobile\:object-right-top{
    -o-object-position: right top;
       object-position: right top;
  }

  .mobile\:object-top{
    -o-object-position: top;
       object-position: top;
  }

  .mobile\:p-0{
    padding: 0px;
  }

  .mobile\:p-1{
    padding: 0.25rem;
  }

  .mobile\:p-2{
    padding: 0.5rem;
  }

  .mobile\:p-3{
    padding: 0.75rem;
  }

  .mobile\:p-4{
    padding: 1rem;
  }

  .mobile\:p-5{
    padding: 1.25rem;
  }

  .mobile\:p-6{
    padding: 1.5rem;
  }

  .mobile\:p-7{
    padding: 1.75rem;
  }

  .mobile\:p-8{
    padding: 2rem;
  }

  .mobile\:p-9{
    padding: 2.25rem;
  }

  .mobile\:p-10{
    padding: 2.5rem;
  }

  .mobile\:p-11{
    padding: 2.75rem;
  }

  .mobile\:p-12{
    padding: 3rem;
  }

  .mobile\:p-14{
    padding: 3.5rem;
  }

  .mobile\:p-16{
    padding: 4rem;
  }

  .mobile\:p-20{
    padding: 5rem;
  }

  .mobile\:p-24{
    padding: 6rem;
  }

  .mobile\:p-28{
    padding: 7rem;
  }

  .mobile\:p-32{
    padding: 8rem;
  }

  .mobile\:p-36{
    padding: 9rem;
  }

  .mobile\:p-40{
    padding: 10rem;
  }

  .mobile\:p-44{
    padding: 11rem;
  }

  .mobile\:p-48{
    padding: 12rem;
  }

  .mobile\:p-52{
    padding: 13rem;
  }

  .mobile\:p-56{
    padding: 14rem;
  }

  .mobile\:p-60{
    padding: 15rem;
  }

  .mobile\:p-64{
    padding: 16rem;
  }

  .mobile\:p-72{
    padding: 18rem;
  }

  .mobile\:p-80{
    padding: 20rem;
  }

  .mobile\:p-96{
    padding: 24rem;
  }

  .mobile\:p-px{
    padding: 1px;
  }

  .mobile\:p-0\.5{
    padding: 0.125rem;
  }

  .mobile\:p-1\.5{
    padding: 0.375rem;
  }

  .mobile\:p-2\.5{
    padding: 0.625rem;
  }

  .mobile\:p-3\.5{
    padding: 0.875rem;
  }

  .mobile\:last\:p-0:last-child{
    padding: 0px;
  }

  .mobile\:last\:p-1:last-child{
    padding: 0.25rem;
  }

  .mobile\:last\:p-2:last-child{
    padding: 0.5rem;
  }

  .mobile\:last\:p-3:last-child{
    padding: 0.75rem;
  }

  .mobile\:last\:p-4:last-child{
    padding: 1rem;
  }

  .mobile\:last\:p-5:last-child{
    padding: 1.25rem;
  }

  .mobile\:last\:p-6:last-child{
    padding: 1.5rem;
  }

  .mobile\:last\:p-7:last-child{
    padding: 1.75rem;
  }

  .mobile\:last\:p-8:last-child{
    padding: 2rem;
  }

  .mobile\:last\:p-9:last-child{
    padding: 2.25rem;
  }

  .mobile\:last\:p-10:last-child{
    padding: 2.5rem;
  }

  .mobile\:last\:p-11:last-child{
    padding: 2.75rem;
  }

  .mobile\:last\:p-12:last-child{
    padding: 3rem;
  }

  .mobile\:last\:p-14:last-child{
    padding: 3.5rem;
  }

  .mobile\:last\:p-16:last-child{
    padding: 4rem;
  }

  .mobile\:last\:p-20:last-child{
    padding: 5rem;
  }

  .mobile\:last\:p-24:last-child{
    padding: 6rem;
  }

  .mobile\:last\:p-28:last-child{
    padding: 7rem;
  }

  .mobile\:last\:p-32:last-child{
    padding: 8rem;
  }

  .mobile\:last\:p-36:last-child{
    padding: 9rem;
  }

  .mobile\:last\:p-40:last-child{
    padding: 10rem;
  }

  .mobile\:last\:p-44:last-child{
    padding: 11rem;
  }

  .mobile\:last\:p-48:last-child{
    padding: 12rem;
  }

  .mobile\:last\:p-52:last-child{
    padding: 13rem;
  }

  .mobile\:last\:p-56:last-child{
    padding: 14rem;
  }

  .mobile\:last\:p-60:last-child{
    padding: 15rem;
  }

  .mobile\:last\:p-64:last-child{
    padding: 16rem;
  }

  .mobile\:last\:p-72:last-child{
    padding: 18rem;
  }

  .mobile\:last\:p-80:last-child{
    padding: 20rem;
  }

  .mobile\:last\:p-96:last-child{
    padding: 24rem;
  }

  .mobile\:last\:p-px:last-child{
    padding: 1px;
  }

  .mobile\:last\:p-0\.5:last-child{
    padding: 0.125rem;
  }

  .mobile\:last\:p-1\.5:last-child{
    padding: 0.375rem;
  }

  .mobile\:last\:p-2\.5:last-child{
    padding: 0.625rem;
  }

  .mobile\:last\:p-3\.5:last-child{
    padding: 0.875rem;
  }

  .mobile\:hover\:p-0:hover{
    padding: 0px;
  }

  .mobile\:hover\:p-1:hover{
    padding: 0.25rem;
  }

  .mobile\:hover\:p-2:hover{
    padding: 0.5rem;
  }

  .mobile\:hover\:p-3:hover{
    padding: 0.75rem;
  }

  .mobile\:hover\:p-4:hover{
    padding: 1rem;
  }

  .mobile\:hover\:p-5:hover{
    padding: 1.25rem;
  }

  .mobile\:hover\:p-6:hover{
    padding: 1.5rem;
  }

  .mobile\:hover\:p-7:hover{
    padding: 1.75rem;
  }

  .mobile\:hover\:p-8:hover{
    padding: 2rem;
  }

  .mobile\:hover\:p-9:hover{
    padding: 2.25rem;
  }

  .mobile\:hover\:p-10:hover{
    padding: 2.5rem;
  }

  .mobile\:hover\:p-11:hover{
    padding: 2.75rem;
  }

  .mobile\:hover\:p-12:hover{
    padding: 3rem;
  }

  .mobile\:hover\:p-14:hover{
    padding: 3.5rem;
  }

  .mobile\:hover\:p-16:hover{
    padding: 4rem;
  }

  .mobile\:hover\:p-20:hover{
    padding: 5rem;
  }

  .mobile\:hover\:p-24:hover{
    padding: 6rem;
  }

  .mobile\:hover\:p-28:hover{
    padding: 7rem;
  }

  .mobile\:hover\:p-32:hover{
    padding: 8rem;
  }

  .mobile\:hover\:p-36:hover{
    padding: 9rem;
  }

  .mobile\:hover\:p-40:hover{
    padding: 10rem;
  }

  .mobile\:hover\:p-44:hover{
    padding: 11rem;
  }

  .mobile\:hover\:p-48:hover{
    padding: 12rem;
  }

  .mobile\:hover\:p-52:hover{
    padding: 13rem;
  }

  .mobile\:hover\:p-56:hover{
    padding: 14rem;
  }

  .mobile\:hover\:p-60:hover{
    padding: 15rem;
  }

  .mobile\:hover\:p-64:hover{
    padding: 16rem;
  }

  .mobile\:hover\:p-72:hover{
    padding: 18rem;
  }

  .mobile\:hover\:p-80:hover{
    padding: 20rem;
  }

  .mobile\:hover\:p-96:hover{
    padding: 24rem;
  }

  .mobile\:hover\:p-px:hover{
    padding: 1px;
  }

  .mobile\:hover\:p-0\.5:hover{
    padding: 0.125rem;
  }

  .mobile\:hover\:p-1\.5:hover{
    padding: 0.375rem;
  }

  .mobile\:hover\:p-2\.5:hover{
    padding: 0.625rem;
  }

  .mobile\:hover\:p-3\.5:hover{
    padding: 0.875rem;
  }

  .mobile\:focus\:p-0:focus{
    padding: 0px;
  }

  .mobile\:focus\:p-1:focus{
    padding: 0.25rem;
  }

  .mobile\:focus\:p-2:focus{
    padding: 0.5rem;
  }

  .mobile\:focus\:p-3:focus{
    padding: 0.75rem;
  }

  .mobile\:focus\:p-4:focus{
    padding: 1rem;
  }

  .mobile\:focus\:p-5:focus{
    padding: 1.25rem;
  }

  .mobile\:focus\:p-6:focus{
    padding: 1.5rem;
  }

  .mobile\:focus\:p-7:focus{
    padding: 1.75rem;
  }

  .mobile\:focus\:p-8:focus{
    padding: 2rem;
  }

  .mobile\:focus\:p-9:focus{
    padding: 2.25rem;
  }

  .mobile\:focus\:p-10:focus{
    padding: 2.5rem;
  }

  .mobile\:focus\:p-11:focus{
    padding: 2.75rem;
  }

  .mobile\:focus\:p-12:focus{
    padding: 3rem;
  }

  .mobile\:focus\:p-14:focus{
    padding: 3.5rem;
  }

  .mobile\:focus\:p-16:focus{
    padding: 4rem;
  }

  .mobile\:focus\:p-20:focus{
    padding: 5rem;
  }

  .mobile\:focus\:p-24:focus{
    padding: 6rem;
  }

  .mobile\:focus\:p-28:focus{
    padding: 7rem;
  }

  .mobile\:focus\:p-32:focus{
    padding: 8rem;
  }

  .mobile\:focus\:p-36:focus{
    padding: 9rem;
  }

  .mobile\:focus\:p-40:focus{
    padding: 10rem;
  }

  .mobile\:focus\:p-44:focus{
    padding: 11rem;
  }

  .mobile\:focus\:p-48:focus{
    padding: 12rem;
  }

  .mobile\:focus\:p-52:focus{
    padding: 13rem;
  }

  .mobile\:focus\:p-56:focus{
    padding: 14rem;
  }

  .mobile\:focus\:p-60:focus{
    padding: 15rem;
  }

  .mobile\:focus\:p-64:focus{
    padding: 16rem;
  }

  .mobile\:focus\:p-72:focus{
    padding: 18rem;
  }

  .mobile\:focus\:p-80:focus{
    padding: 20rem;
  }

  .mobile\:focus\:p-96:focus{
    padding: 24rem;
  }

  .mobile\:focus\:p-px:focus{
    padding: 1px;
  }

  .mobile\:focus\:p-0\.5:focus{
    padding: 0.125rem;
  }

  .mobile\:focus\:p-1\.5:focus{
    padding: 0.375rem;
  }

  .mobile\:focus\:p-2\.5:focus{
    padding: 0.625rem;
  }

  .mobile\:focus\:p-3\.5:focus{
    padding: 0.875rem;
  }

  .mobile\:first\:p-0:first-child{
    padding: 0px;
  }

  .mobile\:first\:p-1:first-child{
    padding: 0.25rem;
  }

  .mobile\:first\:p-2:first-child{
    padding: 0.5rem;
  }

  .mobile\:first\:p-3:first-child{
    padding: 0.75rem;
  }

  .mobile\:first\:p-4:first-child{
    padding: 1rem;
  }

  .mobile\:first\:p-5:first-child{
    padding: 1.25rem;
  }

  .mobile\:first\:p-6:first-child{
    padding: 1.5rem;
  }

  .mobile\:first\:p-7:first-child{
    padding: 1.75rem;
  }

  .mobile\:first\:p-8:first-child{
    padding: 2rem;
  }

  .mobile\:first\:p-9:first-child{
    padding: 2.25rem;
  }

  .mobile\:first\:p-10:first-child{
    padding: 2.5rem;
  }

  .mobile\:first\:p-11:first-child{
    padding: 2.75rem;
  }

  .mobile\:first\:p-12:first-child{
    padding: 3rem;
  }

  .mobile\:first\:p-14:first-child{
    padding: 3.5rem;
  }

  .mobile\:first\:p-16:first-child{
    padding: 4rem;
  }

  .mobile\:first\:p-20:first-child{
    padding: 5rem;
  }

  .mobile\:first\:p-24:first-child{
    padding: 6rem;
  }

  .mobile\:first\:p-28:first-child{
    padding: 7rem;
  }

  .mobile\:first\:p-32:first-child{
    padding: 8rem;
  }

  .mobile\:first\:p-36:first-child{
    padding: 9rem;
  }

  .mobile\:first\:p-40:first-child{
    padding: 10rem;
  }

  .mobile\:first\:p-44:first-child{
    padding: 11rem;
  }

  .mobile\:first\:p-48:first-child{
    padding: 12rem;
  }

  .mobile\:first\:p-52:first-child{
    padding: 13rem;
  }

  .mobile\:first\:p-56:first-child{
    padding: 14rem;
  }

  .mobile\:first\:p-60:first-child{
    padding: 15rem;
  }

  .mobile\:first\:p-64:first-child{
    padding: 16rem;
  }

  .mobile\:first\:p-72:first-child{
    padding: 18rem;
  }

  .mobile\:first\:p-80:first-child{
    padding: 20rem;
  }

  .mobile\:first\:p-96:first-child{
    padding: 24rem;
  }

  .mobile\:first\:p-px:first-child{
    padding: 1px;
  }

  .mobile\:first\:p-0\.5:first-child{
    padding: 0.125rem;
  }

  .mobile\:first\:p-1\.5:first-child{
    padding: 0.375rem;
  }

  .mobile\:first\:p-2\.5:first-child{
    padding: 0.625rem;
  }

  .mobile\:first\:p-3\.5:first-child{
    padding: 0.875rem;
  }

  .mobile\:last\:p-0:last-child{
    padding: 0px;
  }

  .mobile\:last\:p-1:last-child{
    padding: 0.25rem;
  }

  .mobile\:last\:p-2:last-child{
    padding: 0.5rem;
  }

  .mobile\:last\:p-3:last-child{
    padding: 0.75rem;
  }

  .mobile\:last\:p-4:last-child{
    padding: 1rem;
  }

  .mobile\:last\:p-5:last-child{
    padding: 1.25rem;
  }

  .mobile\:last\:p-6:last-child{
    padding: 1.5rem;
  }

  .mobile\:last\:p-7:last-child{
    padding: 1.75rem;
  }

  .mobile\:last\:p-8:last-child{
    padding: 2rem;
  }

  .mobile\:last\:p-9:last-child{
    padding: 2.25rem;
  }

  .mobile\:last\:p-10:last-child{
    padding: 2.5rem;
  }

  .mobile\:last\:p-11:last-child{
    padding: 2.75rem;
  }

  .mobile\:last\:p-12:last-child{
    padding: 3rem;
  }

  .mobile\:last\:p-14:last-child{
    padding: 3.5rem;
  }

  .mobile\:last\:p-16:last-child{
    padding: 4rem;
  }

  .mobile\:last\:p-20:last-child{
    padding: 5rem;
  }

  .mobile\:last\:p-24:last-child{
    padding: 6rem;
  }

  .mobile\:last\:p-28:last-child{
    padding: 7rem;
  }

  .mobile\:last\:p-32:last-child{
    padding: 8rem;
  }

  .mobile\:last\:p-36:last-child{
    padding: 9rem;
  }

  .mobile\:last\:p-40:last-child{
    padding: 10rem;
  }

  .mobile\:last\:p-44:last-child{
    padding: 11rem;
  }

  .mobile\:last\:p-48:last-child{
    padding: 12rem;
  }

  .mobile\:last\:p-52:last-child{
    padding: 13rem;
  }

  .mobile\:last\:p-56:last-child{
    padding: 14rem;
  }

  .mobile\:last\:p-60:last-child{
    padding: 15rem;
  }

  .mobile\:last\:p-64:last-child{
    padding: 16rem;
  }

  .mobile\:last\:p-72:last-child{
    padding: 18rem;
  }

  .mobile\:last\:p-80:last-child{
    padding: 20rem;
  }

  .mobile\:last\:p-96:last-child{
    padding: 24rem;
  }

  .mobile\:last\:p-px:last-child{
    padding: 1px;
  }

  .mobile\:last\:p-0\.5:last-child{
    padding: 0.125rem;
  }

  .mobile\:last\:p-1\.5:last-child{
    padding: 0.375rem;
  }

  .mobile\:last\:p-2\.5:last-child{
    padding: 0.625rem;
  }

  .mobile\:last\:p-3\.5:last-child{
    padding: 0.875rem;
  }

  .mobile\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }

  .mobile\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .mobile\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .mobile\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .mobile\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mobile\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .mobile\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .mobile\:px-7{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .mobile\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .mobile\:px-9{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .mobile\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .mobile\:px-11{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .mobile\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .mobile\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .mobile\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .mobile\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .mobile\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .mobile\:px-28{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .mobile\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .mobile\:px-36{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .mobile\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .mobile\:px-44{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .mobile\:px-48{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .mobile\:px-52{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .mobile\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .mobile\:px-60{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .mobile\:px-64{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .mobile\:px-72{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .mobile\:px-80{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .mobile\:px-96{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .mobile\:px-px{
    padding-left: 1px;
    padding-right: 1px;
  }

  .mobile\:px-0\.5{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .mobile\:px-1\.5{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .mobile\:px-2\.5{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .mobile\:px-3\.5{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .mobile\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .mobile\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .mobile\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .mobile\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .mobile\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .mobile\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .mobile\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .mobile\:py-7{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .mobile\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .mobile\:py-9{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .mobile\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .mobile\:py-11{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .mobile\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mobile\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .mobile\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .mobile\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .mobile\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .mobile\:py-28{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .mobile\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .mobile\:py-36{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .mobile\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .mobile\:py-44{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .mobile\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .mobile\:py-52{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .mobile\:py-56{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .mobile\:py-60{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .mobile\:py-64{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .mobile\:py-72{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .mobile\:py-80{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .mobile\:py-96{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .mobile\:py-px{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .mobile\:py-0\.5{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .mobile\:py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .mobile\:py-2\.5{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .mobile\:py-3\.5{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .mobile\:last\:px-0:last-child{
    padding-left: 0px;
    padding-right: 0px;
  }

  .mobile\:last\:px-1:last-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .mobile\:last\:px-2:last-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .mobile\:last\:px-3:last-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .mobile\:last\:px-4:last-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mobile\:last\:px-5:last-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .mobile\:last\:px-6:last-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .mobile\:last\:px-7:last-child{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .mobile\:last\:px-8:last-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .mobile\:last\:px-9:last-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .mobile\:last\:px-10:last-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .mobile\:last\:px-11:last-child{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .mobile\:last\:px-12:last-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .mobile\:last\:px-14:last-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .mobile\:last\:px-16:last-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .mobile\:last\:px-20:last-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .mobile\:last\:px-24:last-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .mobile\:last\:px-28:last-child{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .mobile\:last\:px-32:last-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .mobile\:last\:px-36:last-child{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .mobile\:last\:px-40:last-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .mobile\:last\:px-44:last-child{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .mobile\:last\:px-48:last-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .mobile\:last\:px-52:last-child{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .mobile\:last\:px-56:last-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .mobile\:last\:px-60:last-child{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .mobile\:last\:px-64:last-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .mobile\:last\:px-72:last-child{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .mobile\:last\:px-80:last-child{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .mobile\:last\:px-96:last-child{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .mobile\:last\:px-px:last-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .mobile\:last\:px-0\.5:last-child{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .mobile\:last\:px-1\.5:last-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .mobile\:last\:px-2\.5:last-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .mobile\:last\:px-3\.5:last-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .mobile\:last\:py-0:last-child{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .mobile\:last\:py-1:last-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .mobile\:last\:py-2:last-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .mobile\:last\:py-3:last-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .mobile\:last\:py-4:last-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .mobile\:last\:py-5:last-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .mobile\:last\:py-6:last-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .mobile\:last\:py-7:last-child{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .mobile\:last\:py-8:last-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .mobile\:last\:py-9:last-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .mobile\:last\:py-10:last-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .mobile\:last\:py-11:last-child{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .mobile\:last\:py-12:last-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mobile\:last\:py-14:last-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .mobile\:last\:py-16:last-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .mobile\:last\:py-20:last-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .mobile\:last\:py-24:last-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .mobile\:last\:py-28:last-child{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .mobile\:last\:py-32:last-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .mobile\:last\:py-36:last-child{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .mobile\:last\:py-40:last-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .mobile\:last\:py-44:last-child{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .mobile\:last\:py-48:last-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .mobile\:last\:py-52:last-child{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .mobile\:last\:py-56:last-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .mobile\:last\:py-60:last-child{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .mobile\:last\:py-64:last-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .mobile\:last\:py-72:last-child{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .mobile\:last\:py-80:last-child{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .mobile\:last\:py-96:last-child{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .mobile\:last\:py-px:last-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .mobile\:last\:py-0\.5:last-child{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .mobile\:last\:py-1\.5:last-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .mobile\:last\:py-2\.5:last-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .mobile\:last\:py-3\.5:last-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .mobile\:hover\:px-0:hover{
    padding-left: 0px;
    padding-right: 0px;
  }

  .mobile\:hover\:px-1:hover{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .mobile\:hover\:px-2:hover{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .mobile\:hover\:px-3:hover{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .mobile\:hover\:px-4:hover{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mobile\:hover\:px-5:hover{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .mobile\:hover\:px-6:hover{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .mobile\:hover\:px-7:hover{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .mobile\:hover\:px-8:hover{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .mobile\:hover\:px-9:hover{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .mobile\:hover\:px-10:hover{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .mobile\:hover\:px-11:hover{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .mobile\:hover\:px-12:hover{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .mobile\:hover\:px-14:hover{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .mobile\:hover\:px-16:hover{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .mobile\:hover\:px-20:hover{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .mobile\:hover\:px-24:hover{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .mobile\:hover\:px-28:hover{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .mobile\:hover\:px-32:hover{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .mobile\:hover\:px-36:hover{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .mobile\:hover\:px-40:hover{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .mobile\:hover\:px-44:hover{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .mobile\:hover\:px-48:hover{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .mobile\:hover\:px-52:hover{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .mobile\:hover\:px-56:hover{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .mobile\:hover\:px-60:hover{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .mobile\:hover\:px-64:hover{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .mobile\:hover\:px-72:hover{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .mobile\:hover\:px-80:hover{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .mobile\:hover\:px-96:hover{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .mobile\:hover\:px-px:hover{
    padding-left: 1px;
    padding-right: 1px;
  }

  .mobile\:hover\:px-0\.5:hover{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .mobile\:hover\:px-1\.5:hover{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .mobile\:hover\:px-2\.5:hover{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .mobile\:hover\:px-3\.5:hover{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .mobile\:hover\:py-0:hover{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .mobile\:hover\:py-1:hover{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .mobile\:hover\:py-2:hover{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .mobile\:hover\:py-3:hover{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .mobile\:hover\:py-4:hover{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .mobile\:hover\:py-5:hover{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .mobile\:hover\:py-6:hover{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .mobile\:hover\:py-7:hover{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .mobile\:hover\:py-8:hover{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .mobile\:hover\:py-9:hover{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .mobile\:hover\:py-10:hover{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .mobile\:hover\:py-11:hover{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .mobile\:hover\:py-12:hover{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mobile\:hover\:py-14:hover{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .mobile\:hover\:py-16:hover{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .mobile\:hover\:py-20:hover{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .mobile\:hover\:py-24:hover{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .mobile\:hover\:py-28:hover{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .mobile\:hover\:py-32:hover{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .mobile\:hover\:py-36:hover{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .mobile\:hover\:py-40:hover{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .mobile\:hover\:py-44:hover{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .mobile\:hover\:py-48:hover{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .mobile\:hover\:py-52:hover{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .mobile\:hover\:py-56:hover{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .mobile\:hover\:py-60:hover{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .mobile\:hover\:py-64:hover{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .mobile\:hover\:py-72:hover{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .mobile\:hover\:py-80:hover{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .mobile\:hover\:py-96:hover{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .mobile\:hover\:py-px:hover{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .mobile\:hover\:py-0\.5:hover{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .mobile\:hover\:py-1\.5:hover{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .mobile\:hover\:py-2\.5:hover{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .mobile\:hover\:py-3\.5:hover{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .mobile\:focus\:px-0:focus{
    padding-left: 0px;
    padding-right: 0px;
  }

  .mobile\:focus\:px-1:focus{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .mobile\:focus\:px-2:focus{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .mobile\:focus\:px-3:focus{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .mobile\:focus\:px-4:focus{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mobile\:focus\:px-5:focus{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .mobile\:focus\:px-6:focus{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .mobile\:focus\:px-7:focus{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .mobile\:focus\:px-8:focus{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .mobile\:focus\:px-9:focus{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .mobile\:focus\:px-10:focus{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .mobile\:focus\:px-11:focus{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .mobile\:focus\:px-12:focus{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .mobile\:focus\:px-14:focus{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .mobile\:focus\:px-16:focus{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .mobile\:focus\:px-20:focus{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .mobile\:focus\:px-24:focus{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .mobile\:focus\:px-28:focus{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .mobile\:focus\:px-32:focus{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .mobile\:focus\:px-36:focus{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .mobile\:focus\:px-40:focus{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .mobile\:focus\:px-44:focus{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .mobile\:focus\:px-48:focus{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .mobile\:focus\:px-52:focus{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .mobile\:focus\:px-56:focus{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .mobile\:focus\:px-60:focus{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .mobile\:focus\:px-64:focus{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .mobile\:focus\:px-72:focus{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .mobile\:focus\:px-80:focus{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .mobile\:focus\:px-96:focus{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .mobile\:focus\:px-px:focus{
    padding-left: 1px;
    padding-right: 1px;
  }

  .mobile\:focus\:px-0\.5:focus{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .mobile\:focus\:px-1\.5:focus{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .mobile\:focus\:px-2\.5:focus{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .mobile\:focus\:px-3\.5:focus{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .mobile\:focus\:py-0:focus{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .mobile\:focus\:py-1:focus{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .mobile\:focus\:py-2:focus{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .mobile\:focus\:py-3:focus{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .mobile\:focus\:py-4:focus{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .mobile\:focus\:py-5:focus{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .mobile\:focus\:py-6:focus{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .mobile\:focus\:py-7:focus{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .mobile\:focus\:py-8:focus{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .mobile\:focus\:py-9:focus{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .mobile\:focus\:py-10:focus{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .mobile\:focus\:py-11:focus{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .mobile\:focus\:py-12:focus{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mobile\:focus\:py-14:focus{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .mobile\:focus\:py-16:focus{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .mobile\:focus\:py-20:focus{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .mobile\:focus\:py-24:focus{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .mobile\:focus\:py-28:focus{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .mobile\:focus\:py-32:focus{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .mobile\:focus\:py-36:focus{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .mobile\:focus\:py-40:focus{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .mobile\:focus\:py-44:focus{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .mobile\:focus\:py-48:focus{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .mobile\:focus\:py-52:focus{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .mobile\:focus\:py-56:focus{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .mobile\:focus\:py-60:focus{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .mobile\:focus\:py-64:focus{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .mobile\:focus\:py-72:focus{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .mobile\:focus\:py-80:focus{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .mobile\:focus\:py-96:focus{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .mobile\:focus\:py-px:focus{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .mobile\:focus\:py-0\.5:focus{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .mobile\:focus\:py-1\.5:focus{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .mobile\:focus\:py-2\.5:focus{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .mobile\:focus\:py-3\.5:focus{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .mobile\:first\:px-0:first-child{
    padding-left: 0px;
    padding-right: 0px;
  }

  .mobile\:first\:px-1:first-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .mobile\:first\:px-2:first-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .mobile\:first\:px-3:first-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .mobile\:first\:px-4:first-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mobile\:first\:px-5:first-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .mobile\:first\:px-6:first-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .mobile\:first\:px-7:first-child{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .mobile\:first\:px-8:first-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .mobile\:first\:px-9:first-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .mobile\:first\:px-10:first-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .mobile\:first\:px-11:first-child{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .mobile\:first\:px-12:first-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .mobile\:first\:px-14:first-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .mobile\:first\:px-16:first-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .mobile\:first\:px-20:first-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .mobile\:first\:px-24:first-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .mobile\:first\:px-28:first-child{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .mobile\:first\:px-32:first-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .mobile\:first\:px-36:first-child{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .mobile\:first\:px-40:first-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .mobile\:first\:px-44:first-child{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .mobile\:first\:px-48:first-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .mobile\:first\:px-52:first-child{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .mobile\:first\:px-56:first-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .mobile\:first\:px-60:first-child{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .mobile\:first\:px-64:first-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .mobile\:first\:px-72:first-child{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .mobile\:first\:px-80:first-child{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .mobile\:first\:px-96:first-child{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .mobile\:first\:px-px:first-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .mobile\:first\:px-0\.5:first-child{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .mobile\:first\:px-1\.5:first-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .mobile\:first\:px-2\.5:first-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .mobile\:first\:px-3\.5:first-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .mobile\:first\:py-0:first-child{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .mobile\:first\:py-1:first-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .mobile\:first\:py-2:first-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .mobile\:first\:py-3:first-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .mobile\:first\:py-4:first-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .mobile\:first\:py-5:first-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .mobile\:first\:py-6:first-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .mobile\:first\:py-7:first-child{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .mobile\:first\:py-8:first-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .mobile\:first\:py-9:first-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .mobile\:first\:py-10:first-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .mobile\:first\:py-11:first-child{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .mobile\:first\:py-12:first-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mobile\:first\:py-14:first-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .mobile\:first\:py-16:first-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .mobile\:first\:py-20:first-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .mobile\:first\:py-24:first-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .mobile\:first\:py-28:first-child{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .mobile\:first\:py-32:first-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .mobile\:first\:py-36:first-child{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .mobile\:first\:py-40:first-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .mobile\:first\:py-44:first-child{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .mobile\:first\:py-48:first-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .mobile\:first\:py-52:first-child{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .mobile\:first\:py-56:first-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .mobile\:first\:py-60:first-child{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .mobile\:first\:py-64:first-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .mobile\:first\:py-72:first-child{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .mobile\:first\:py-80:first-child{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .mobile\:first\:py-96:first-child{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .mobile\:first\:py-px:first-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .mobile\:first\:py-0\.5:first-child{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .mobile\:first\:py-1\.5:first-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .mobile\:first\:py-2\.5:first-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .mobile\:first\:py-3\.5:first-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .mobile\:last\:px-0:last-child{
    padding-left: 0px;
    padding-right: 0px;
  }

  .mobile\:last\:px-1:last-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .mobile\:last\:px-2:last-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .mobile\:last\:px-3:last-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .mobile\:last\:px-4:last-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mobile\:last\:px-5:last-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .mobile\:last\:px-6:last-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .mobile\:last\:px-7:last-child{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .mobile\:last\:px-8:last-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .mobile\:last\:px-9:last-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .mobile\:last\:px-10:last-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .mobile\:last\:px-11:last-child{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .mobile\:last\:px-12:last-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .mobile\:last\:px-14:last-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .mobile\:last\:px-16:last-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .mobile\:last\:px-20:last-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .mobile\:last\:px-24:last-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .mobile\:last\:px-28:last-child{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .mobile\:last\:px-32:last-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .mobile\:last\:px-36:last-child{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .mobile\:last\:px-40:last-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .mobile\:last\:px-44:last-child{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .mobile\:last\:px-48:last-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .mobile\:last\:px-52:last-child{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .mobile\:last\:px-56:last-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .mobile\:last\:px-60:last-child{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .mobile\:last\:px-64:last-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .mobile\:last\:px-72:last-child{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .mobile\:last\:px-80:last-child{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .mobile\:last\:px-96:last-child{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .mobile\:last\:px-px:last-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .mobile\:last\:px-0\.5:last-child{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .mobile\:last\:px-1\.5:last-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .mobile\:last\:px-2\.5:last-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .mobile\:last\:px-3\.5:last-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .mobile\:last\:py-0:last-child{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .mobile\:last\:py-1:last-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .mobile\:last\:py-2:last-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .mobile\:last\:py-3:last-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .mobile\:last\:py-4:last-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .mobile\:last\:py-5:last-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .mobile\:last\:py-6:last-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .mobile\:last\:py-7:last-child{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .mobile\:last\:py-8:last-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .mobile\:last\:py-9:last-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .mobile\:last\:py-10:last-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .mobile\:last\:py-11:last-child{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .mobile\:last\:py-12:last-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mobile\:last\:py-14:last-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .mobile\:last\:py-16:last-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .mobile\:last\:py-20:last-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .mobile\:last\:py-24:last-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .mobile\:last\:py-28:last-child{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .mobile\:last\:py-32:last-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .mobile\:last\:py-36:last-child{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .mobile\:last\:py-40:last-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .mobile\:last\:py-44:last-child{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .mobile\:last\:py-48:last-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .mobile\:last\:py-52:last-child{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .mobile\:last\:py-56:last-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .mobile\:last\:py-60:last-child{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .mobile\:last\:py-64:last-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .mobile\:last\:py-72:last-child{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .mobile\:last\:py-80:last-child{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .mobile\:last\:py-96:last-child{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .mobile\:last\:py-px:last-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .mobile\:last\:py-0\.5:last-child{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .mobile\:last\:py-1\.5:last-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .mobile\:last\:py-2\.5:last-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .mobile\:last\:py-3\.5:last-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .mobile\:pt-0{
    padding-top: 0px;
  }

  .mobile\:pt-1{
    padding-top: 0.25rem;
  }

  .mobile\:pt-2{
    padding-top: 0.5rem;
  }

  .mobile\:pt-3{
    padding-top: 0.75rem;
  }

  .mobile\:pt-4{
    padding-top: 1rem;
  }

  .mobile\:pt-5{
    padding-top: 1.25rem;
  }

  .mobile\:pt-6{
    padding-top: 1.5rem;
  }

  .mobile\:pt-7{
    padding-top: 1.75rem;
  }

  .mobile\:pt-8{
    padding-top: 2rem;
  }

  .mobile\:pt-9{
    padding-top: 2.25rem;
  }

  .mobile\:pt-10{
    padding-top: 2.5rem;
  }

  .mobile\:pt-11{
    padding-top: 2.75rem;
  }

  .mobile\:pt-12{
    padding-top: 3rem;
  }

  .mobile\:pt-14{
    padding-top: 3.5rem;
  }

  .mobile\:pt-16{
    padding-top: 4rem;
  }

  .mobile\:pt-20{
    padding-top: 5rem;
  }

  .mobile\:pt-24{
    padding-top: 6rem;
  }

  .mobile\:pt-28{
    padding-top: 7rem;
  }

  .mobile\:pt-32{
    padding-top: 8rem;
  }

  .mobile\:pt-36{
    padding-top: 9rem;
  }

  .mobile\:pt-40{
    padding-top: 10rem;
  }

  .mobile\:pt-44{
    padding-top: 11rem;
  }

  .mobile\:pt-48{
    padding-top: 12rem;
  }

  .mobile\:pt-52{
    padding-top: 13rem;
  }

  .mobile\:pt-56{
    padding-top: 14rem;
  }

  .mobile\:pt-60{
    padding-top: 15rem;
  }

  .mobile\:pt-64{
    padding-top: 16rem;
  }

  .mobile\:pt-72{
    padding-top: 18rem;
  }

  .mobile\:pt-80{
    padding-top: 20rem;
  }

  .mobile\:pt-96{
    padding-top: 24rem;
  }

  .mobile\:pt-px{
    padding-top: 1px;
  }

  .mobile\:pt-0\.5{
    padding-top: 0.125rem;
  }

  .mobile\:pt-1\.5{
    padding-top: 0.375rem;
  }

  .mobile\:pt-2\.5{
    padding-top: 0.625rem;
  }

  .mobile\:pt-3\.5{
    padding-top: 0.875rem;
  }

  .mobile\:pr-0{
    padding-right: 0px;
  }

  .mobile\:pr-1{
    padding-right: 0.25rem;
  }

  .mobile\:pr-2{
    padding-right: 0.5rem;
  }

  .mobile\:pr-3{
    padding-right: 0.75rem;
  }

  .mobile\:pr-4{
    padding-right: 1rem;
  }

  .mobile\:pr-5{
    padding-right: 1.25rem;
  }

  .mobile\:pr-6{
    padding-right: 1.5rem;
  }

  .mobile\:pr-7{
    padding-right: 1.75rem;
  }

  .mobile\:pr-8{
    padding-right: 2rem;
  }

  .mobile\:pr-9{
    padding-right: 2.25rem;
  }

  .mobile\:pr-10{
    padding-right: 2.5rem;
  }

  .mobile\:pr-11{
    padding-right: 2.75rem;
  }

  .mobile\:pr-12{
    padding-right: 3rem;
  }

  .mobile\:pr-14{
    padding-right: 3.5rem;
  }

  .mobile\:pr-16{
    padding-right: 4rem;
  }

  .mobile\:pr-20{
    padding-right: 5rem;
  }

  .mobile\:pr-24{
    padding-right: 6rem;
  }

  .mobile\:pr-28{
    padding-right: 7rem;
  }

  .mobile\:pr-32{
    padding-right: 8rem;
  }

  .mobile\:pr-36{
    padding-right: 9rem;
  }

  .mobile\:pr-40{
    padding-right: 10rem;
  }

  .mobile\:pr-44{
    padding-right: 11rem;
  }

  .mobile\:pr-48{
    padding-right: 12rem;
  }

  .mobile\:pr-52{
    padding-right: 13rem;
  }

  .mobile\:pr-56{
    padding-right: 14rem;
  }

  .mobile\:pr-60{
    padding-right: 15rem;
  }

  .mobile\:pr-64{
    padding-right: 16rem;
  }

  .mobile\:pr-72{
    padding-right: 18rem;
  }

  .mobile\:pr-80{
    padding-right: 20rem;
  }

  .mobile\:pr-96{
    padding-right: 24rem;
  }

  .mobile\:pr-px{
    padding-right: 1px;
  }

  .mobile\:pr-0\.5{
    padding-right: 0.125rem;
  }

  .mobile\:pr-1\.5{
    padding-right: 0.375rem;
  }

  .mobile\:pr-2\.5{
    padding-right: 0.625rem;
  }

  .mobile\:pr-3\.5{
    padding-right: 0.875rem;
  }

  .mobile\:pb-0{
    padding-bottom: 0px;
  }

  .mobile\:pb-1{
    padding-bottom: 0.25rem;
  }

  .mobile\:pb-2{
    padding-bottom: 0.5rem;
  }

  .mobile\:pb-3{
    padding-bottom: 0.75rem;
  }

  .mobile\:pb-4{
    padding-bottom: 1rem;
  }

  .mobile\:pb-5{
    padding-bottom: 1.25rem;
  }

  .mobile\:pb-6{
    padding-bottom: 1.5rem;
  }

  .mobile\:pb-7{
    padding-bottom: 1.75rem;
  }

  .mobile\:pb-8{
    padding-bottom: 2rem;
  }

  .mobile\:pb-9{
    padding-bottom: 2.25rem;
  }

  .mobile\:pb-10{
    padding-bottom: 2.5rem;
  }

  .mobile\:pb-11{
    padding-bottom: 2.75rem;
  }

  .mobile\:pb-12{
    padding-bottom: 3rem;
  }

  .mobile\:pb-14{
    padding-bottom: 3.5rem;
  }

  .mobile\:pb-16{
    padding-bottom: 4rem;
  }

  .mobile\:pb-20{
    padding-bottom: 5rem;
  }

  .mobile\:pb-24{
    padding-bottom: 6rem;
  }

  .mobile\:pb-28{
    padding-bottom: 7rem;
  }

  .mobile\:pb-32{
    padding-bottom: 8rem;
  }

  .mobile\:pb-36{
    padding-bottom: 9rem;
  }

  .mobile\:pb-40{
    padding-bottom: 10rem;
  }

  .mobile\:pb-44{
    padding-bottom: 11rem;
  }

  .mobile\:pb-48{
    padding-bottom: 12rem;
  }

  .mobile\:pb-52{
    padding-bottom: 13rem;
  }

  .mobile\:pb-56{
    padding-bottom: 14rem;
  }

  .mobile\:pb-60{
    padding-bottom: 15rem;
  }

  .mobile\:pb-64{
    padding-bottom: 16rem;
  }

  .mobile\:pb-72{
    padding-bottom: 18rem;
  }

  .mobile\:pb-80{
    padding-bottom: 20rem;
  }

  .mobile\:pb-96{
    padding-bottom: 24rem;
  }

  .mobile\:pb-px{
    padding-bottom: 1px;
  }

  .mobile\:pb-0\.5{
    padding-bottom: 0.125rem;
  }

  .mobile\:pb-1\.5{
    padding-bottom: 0.375rem;
  }

  .mobile\:pb-2\.5{
    padding-bottom: 0.625rem;
  }

  .mobile\:pb-3\.5{
    padding-bottom: 0.875rem;
  }

  .mobile\:pl-0{
    padding-left: 0px;
  }

  .mobile\:pl-1{
    padding-left: 0.25rem;
  }

  .mobile\:pl-2{
    padding-left: 0.5rem;
  }

  .mobile\:pl-3{
    padding-left: 0.75rem;
  }

  .mobile\:pl-4{
    padding-left: 1rem;
  }

  .mobile\:pl-5{
    padding-left: 1.25rem;
  }

  .mobile\:pl-6{
    padding-left: 1.5rem;
  }

  .mobile\:pl-7{
    padding-left: 1.75rem;
  }

  .mobile\:pl-8{
    padding-left: 2rem;
  }

  .mobile\:pl-9{
    padding-left: 2.25rem;
  }

  .mobile\:pl-10{
    padding-left: 2.5rem;
  }

  .mobile\:pl-11{
    padding-left: 2.75rem;
  }

  .mobile\:pl-12{
    padding-left: 3rem;
  }

  .mobile\:pl-14{
    padding-left: 3.5rem;
  }

  .mobile\:pl-16{
    padding-left: 4rem;
  }

  .mobile\:pl-20{
    padding-left: 5rem;
  }

  .mobile\:pl-24{
    padding-left: 6rem;
  }

  .mobile\:pl-28{
    padding-left: 7rem;
  }

  .mobile\:pl-32{
    padding-left: 8rem;
  }

  .mobile\:pl-36{
    padding-left: 9rem;
  }

  .mobile\:pl-40{
    padding-left: 10rem;
  }

  .mobile\:pl-44{
    padding-left: 11rem;
  }

  .mobile\:pl-48{
    padding-left: 12rem;
  }

  .mobile\:pl-52{
    padding-left: 13rem;
  }

  .mobile\:pl-56{
    padding-left: 14rem;
  }

  .mobile\:pl-60{
    padding-left: 15rem;
  }

  .mobile\:pl-64{
    padding-left: 16rem;
  }

  .mobile\:pl-72{
    padding-left: 18rem;
  }

  .mobile\:pl-80{
    padding-left: 20rem;
  }

  .mobile\:pl-96{
    padding-left: 24rem;
  }

  .mobile\:pl-px{
    padding-left: 1px;
  }

  .mobile\:pl-0\.5{
    padding-left: 0.125rem;
  }

  .mobile\:pl-1\.5{
    padding-left: 0.375rem;
  }

  .mobile\:pl-2\.5{
    padding-left: 0.625rem;
  }

  .mobile\:pl-3\.5{
    padding-left: 0.875rem;
  }

  .mobile\:last\:pt-0:last-child{
    padding-top: 0px;
  }

  .mobile\:last\:pt-1:last-child{
    padding-top: 0.25rem;
  }

  .mobile\:last\:pt-2:last-child{
    padding-top: 0.5rem;
  }

  .mobile\:last\:pt-3:last-child{
    padding-top: 0.75rem;
  }

  .mobile\:last\:pt-4:last-child{
    padding-top: 1rem;
  }

  .mobile\:last\:pt-5:last-child{
    padding-top: 1.25rem;
  }

  .mobile\:last\:pt-6:last-child{
    padding-top: 1.5rem;
  }

  .mobile\:last\:pt-7:last-child{
    padding-top: 1.75rem;
  }

  .mobile\:last\:pt-8:last-child{
    padding-top: 2rem;
  }

  .mobile\:last\:pt-9:last-child{
    padding-top: 2.25rem;
  }

  .mobile\:last\:pt-10:last-child{
    padding-top: 2.5rem;
  }

  .mobile\:last\:pt-11:last-child{
    padding-top: 2.75rem;
  }

  .mobile\:last\:pt-12:last-child{
    padding-top: 3rem;
  }

  .mobile\:last\:pt-14:last-child{
    padding-top: 3.5rem;
  }

  .mobile\:last\:pt-16:last-child{
    padding-top: 4rem;
  }

  .mobile\:last\:pt-20:last-child{
    padding-top: 5rem;
  }

  .mobile\:last\:pt-24:last-child{
    padding-top: 6rem;
  }

  .mobile\:last\:pt-28:last-child{
    padding-top: 7rem;
  }

  .mobile\:last\:pt-32:last-child{
    padding-top: 8rem;
  }

  .mobile\:last\:pt-36:last-child{
    padding-top: 9rem;
  }

  .mobile\:last\:pt-40:last-child{
    padding-top: 10rem;
  }

  .mobile\:last\:pt-44:last-child{
    padding-top: 11rem;
  }

  .mobile\:last\:pt-48:last-child{
    padding-top: 12rem;
  }

  .mobile\:last\:pt-52:last-child{
    padding-top: 13rem;
  }

  .mobile\:last\:pt-56:last-child{
    padding-top: 14rem;
  }

  .mobile\:last\:pt-60:last-child{
    padding-top: 15rem;
  }

  .mobile\:last\:pt-64:last-child{
    padding-top: 16rem;
  }

  .mobile\:last\:pt-72:last-child{
    padding-top: 18rem;
  }

  .mobile\:last\:pt-80:last-child{
    padding-top: 20rem;
  }

  .mobile\:last\:pt-96:last-child{
    padding-top: 24rem;
  }

  .mobile\:last\:pt-px:last-child{
    padding-top: 1px;
  }

  .mobile\:last\:pt-0\.5:last-child{
    padding-top: 0.125rem;
  }

  .mobile\:last\:pt-1\.5:last-child{
    padding-top: 0.375rem;
  }

  .mobile\:last\:pt-2\.5:last-child{
    padding-top: 0.625rem;
  }

  .mobile\:last\:pt-3\.5:last-child{
    padding-top: 0.875rem;
  }

  .mobile\:last\:pr-0:last-child{
    padding-right: 0px;
  }

  .mobile\:last\:pr-1:last-child{
    padding-right: 0.25rem;
  }

  .mobile\:last\:pr-2:last-child{
    padding-right: 0.5rem;
  }

  .mobile\:last\:pr-3:last-child{
    padding-right: 0.75rem;
  }

  .mobile\:last\:pr-4:last-child{
    padding-right: 1rem;
  }

  .mobile\:last\:pr-5:last-child{
    padding-right: 1.25rem;
  }

  .mobile\:last\:pr-6:last-child{
    padding-right: 1.5rem;
  }

  .mobile\:last\:pr-7:last-child{
    padding-right: 1.75rem;
  }

  .mobile\:last\:pr-8:last-child{
    padding-right: 2rem;
  }

  .mobile\:last\:pr-9:last-child{
    padding-right: 2.25rem;
  }

  .mobile\:last\:pr-10:last-child{
    padding-right: 2.5rem;
  }

  .mobile\:last\:pr-11:last-child{
    padding-right: 2.75rem;
  }

  .mobile\:last\:pr-12:last-child{
    padding-right: 3rem;
  }

  .mobile\:last\:pr-14:last-child{
    padding-right: 3.5rem;
  }

  .mobile\:last\:pr-16:last-child{
    padding-right: 4rem;
  }

  .mobile\:last\:pr-20:last-child{
    padding-right: 5rem;
  }

  .mobile\:last\:pr-24:last-child{
    padding-right: 6rem;
  }

  .mobile\:last\:pr-28:last-child{
    padding-right: 7rem;
  }

  .mobile\:last\:pr-32:last-child{
    padding-right: 8rem;
  }

  .mobile\:last\:pr-36:last-child{
    padding-right: 9rem;
  }

  .mobile\:last\:pr-40:last-child{
    padding-right: 10rem;
  }

  .mobile\:last\:pr-44:last-child{
    padding-right: 11rem;
  }

  .mobile\:last\:pr-48:last-child{
    padding-right: 12rem;
  }

  .mobile\:last\:pr-52:last-child{
    padding-right: 13rem;
  }

  .mobile\:last\:pr-56:last-child{
    padding-right: 14rem;
  }

  .mobile\:last\:pr-60:last-child{
    padding-right: 15rem;
  }

  .mobile\:last\:pr-64:last-child{
    padding-right: 16rem;
  }

  .mobile\:last\:pr-72:last-child{
    padding-right: 18rem;
  }

  .mobile\:last\:pr-80:last-child{
    padding-right: 20rem;
  }

  .mobile\:last\:pr-96:last-child{
    padding-right: 24rem;
  }

  .mobile\:last\:pr-px:last-child{
    padding-right: 1px;
  }

  .mobile\:last\:pr-0\.5:last-child{
    padding-right: 0.125rem;
  }

  .mobile\:last\:pr-1\.5:last-child{
    padding-right: 0.375rem;
  }

  .mobile\:last\:pr-2\.5:last-child{
    padding-right: 0.625rem;
  }

  .mobile\:last\:pr-3\.5:last-child{
    padding-right: 0.875rem;
  }

  .mobile\:last\:pb-0:last-child{
    padding-bottom: 0px;
  }

  .mobile\:last\:pb-1:last-child{
    padding-bottom: 0.25rem;
  }

  .mobile\:last\:pb-2:last-child{
    padding-bottom: 0.5rem;
  }

  .mobile\:last\:pb-3:last-child{
    padding-bottom: 0.75rem;
  }

  .mobile\:last\:pb-4:last-child{
    padding-bottom: 1rem;
  }

  .mobile\:last\:pb-5:last-child{
    padding-bottom: 1.25rem;
  }

  .mobile\:last\:pb-6:last-child{
    padding-bottom: 1.5rem;
  }

  .mobile\:last\:pb-7:last-child{
    padding-bottom: 1.75rem;
  }

  .mobile\:last\:pb-8:last-child{
    padding-bottom: 2rem;
  }

  .mobile\:last\:pb-9:last-child{
    padding-bottom: 2.25rem;
  }

  .mobile\:last\:pb-10:last-child{
    padding-bottom: 2.5rem;
  }

  .mobile\:last\:pb-11:last-child{
    padding-bottom: 2.75rem;
  }

  .mobile\:last\:pb-12:last-child{
    padding-bottom: 3rem;
  }

  .mobile\:last\:pb-14:last-child{
    padding-bottom: 3.5rem;
  }

  .mobile\:last\:pb-16:last-child{
    padding-bottom: 4rem;
  }

  .mobile\:last\:pb-20:last-child{
    padding-bottom: 5rem;
  }

  .mobile\:last\:pb-24:last-child{
    padding-bottom: 6rem;
  }

  .mobile\:last\:pb-28:last-child{
    padding-bottom: 7rem;
  }

  .mobile\:last\:pb-32:last-child{
    padding-bottom: 8rem;
  }

  .mobile\:last\:pb-36:last-child{
    padding-bottom: 9rem;
  }

  .mobile\:last\:pb-40:last-child{
    padding-bottom: 10rem;
  }

  .mobile\:last\:pb-44:last-child{
    padding-bottom: 11rem;
  }

  .mobile\:last\:pb-48:last-child{
    padding-bottom: 12rem;
  }

  .mobile\:last\:pb-52:last-child{
    padding-bottom: 13rem;
  }

  .mobile\:last\:pb-56:last-child{
    padding-bottom: 14rem;
  }

  .mobile\:last\:pb-60:last-child{
    padding-bottom: 15rem;
  }

  .mobile\:last\:pb-64:last-child{
    padding-bottom: 16rem;
  }

  .mobile\:last\:pb-72:last-child{
    padding-bottom: 18rem;
  }

  .mobile\:last\:pb-80:last-child{
    padding-bottom: 20rem;
  }

  .mobile\:last\:pb-96:last-child{
    padding-bottom: 24rem;
  }

  .mobile\:last\:pb-px:last-child{
    padding-bottom: 1px;
  }

  .mobile\:last\:pb-0\.5:last-child{
    padding-bottom: 0.125rem;
  }

  .mobile\:last\:pb-1\.5:last-child{
    padding-bottom: 0.375rem;
  }

  .mobile\:last\:pb-2\.5:last-child{
    padding-bottom: 0.625rem;
  }

  .mobile\:last\:pb-3\.5:last-child{
    padding-bottom: 0.875rem;
  }

  .mobile\:last\:pl-0:last-child{
    padding-left: 0px;
  }

  .mobile\:last\:pl-1:last-child{
    padding-left: 0.25rem;
  }

  .mobile\:last\:pl-2:last-child{
    padding-left: 0.5rem;
  }

  .mobile\:last\:pl-3:last-child{
    padding-left: 0.75rem;
  }

  .mobile\:last\:pl-4:last-child{
    padding-left: 1rem;
  }

  .mobile\:last\:pl-5:last-child{
    padding-left: 1.25rem;
  }

  .mobile\:last\:pl-6:last-child{
    padding-left: 1.5rem;
  }

  .mobile\:last\:pl-7:last-child{
    padding-left: 1.75rem;
  }

  .mobile\:last\:pl-8:last-child{
    padding-left: 2rem;
  }

  .mobile\:last\:pl-9:last-child{
    padding-left: 2.25rem;
  }

  .mobile\:last\:pl-10:last-child{
    padding-left: 2.5rem;
  }

  .mobile\:last\:pl-11:last-child{
    padding-left: 2.75rem;
  }

  .mobile\:last\:pl-12:last-child{
    padding-left: 3rem;
  }

  .mobile\:last\:pl-14:last-child{
    padding-left: 3.5rem;
  }

  .mobile\:last\:pl-16:last-child{
    padding-left: 4rem;
  }

  .mobile\:last\:pl-20:last-child{
    padding-left: 5rem;
  }

  .mobile\:last\:pl-24:last-child{
    padding-left: 6rem;
  }

  .mobile\:last\:pl-28:last-child{
    padding-left: 7rem;
  }

  .mobile\:last\:pl-32:last-child{
    padding-left: 8rem;
  }

  .mobile\:last\:pl-36:last-child{
    padding-left: 9rem;
  }

  .mobile\:last\:pl-40:last-child{
    padding-left: 10rem;
  }

  .mobile\:last\:pl-44:last-child{
    padding-left: 11rem;
  }

  .mobile\:last\:pl-48:last-child{
    padding-left: 12rem;
  }

  .mobile\:last\:pl-52:last-child{
    padding-left: 13rem;
  }

  .mobile\:last\:pl-56:last-child{
    padding-left: 14rem;
  }

  .mobile\:last\:pl-60:last-child{
    padding-left: 15rem;
  }

  .mobile\:last\:pl-64:last-child{
    padding-left: 16rem;
  }

  .mobile\:last\:pl-72:last-child{
    padding-left: 18rem;
  }

  .mobile\:last\:pl-80:last-child{
    padding-left: 20rem;
  }

  .mobile\:last\:pl-96:last-child{
    padding-left: 24rem;
  }

  .mobile\:last\:pl-px:last-child{
    padding-left: 1px;
  }

  .mobile\:last\:pl-0\.5:last-child{
    padding-left: 0.125rem;
  }

  .mobile\:last\:pl-1\.5:last-child{
    padding-left: 0.375rem;
  }

  .mobile\:last\:pl-2\.5:last-child{
    padding-left: 0.625rem;
  }

  .mobile\:last\:pl-3\.5:last-child{
    padding-left: 0.875rem;
  }

  .mobile\:hover\:pt-0:hover{
    padding-top: 0px;
  }

  .mobile\:hover\:pt-1:hover{
    padding-top: 0.25rem;
  }

  .mobile\:hover\:pt-2:hover{
    padding-top: 0.5rem;
  }

  .mobile\:hover\:pt-3:hover{
    padding-top: 0.75rem;
  }

  .mobile\:hover\:pt-4:hover{
    padding-top: 1rem;
  }

  .mobile\:hover\:pt-5:hover{
    padding-top: 1.25rem;
  }

  .mobile\:hover\:pt-6:hover{
    padding-top: 1.5rem;
  }

  .mobile\:hover\:pt-7:hover{
    padding-top: 1.75rem;
  }

  .mobile\:hover\:pt-8:hover{
    padding-top: 2rem;
  }

  .mobile\:hover\:pt-9:hover{
    padding-top: 2.25rem;
  }

  .mobile\:hover\:pt-10:hover{
    padding-top: 2.5rem;
  }

  .mobile\:hover\:pt-11:hover{
    padding-top: 2.75rem;
  }

  .mobile\:hover\:pt-12:hover{
    padding-top: 3rem;
  }

  .mobile\:hover\:pt-14:hover{
    padding-top: 3.5rem;
  }

  .mobile\:hover\:pt-16:hover{
    padding-top: 4rem;
  }

  .mobile\:hover\:pt-20:hover{
    padding-top: 5rem;
  }

  .mobile\:hover\:pt-24:hover{
    padding-top: 6rem;
  }

  .mobile\:hover\:pt-28:hover{
    padding-top: 7rem;
  }

  .mobile\:hover\:pt-32:hover{
    padding-top: 8rem;
  }

  .mobile\:hover\:pt-36:hover{
    padding-top: 9rem;
  }

  .mobile\:hover\:pt-40:hover{
    padding-top: 10rem;
  }

  .mobile\:hover\:pt-44:hover{
    padding-top: 11rem;
  }

  .mobile\:hover\:pt-48:hover{
    padding-top: 12rem;
  }

  .mobile\:hover\:pt-52:hover{
    padding-top: 13rem;
  }

  .mobile\:hover\:pt-56:hover{
    padding-top: 14rem;
  }

  .mobile\:hover\:pt-60:hover{
    padding-top: 15rem;
  }

  .mobile\:hover\:pt-64:hover{
    padding-top: 16rem;
  }

  .mobile\:hover\:pt-72:hover{
    padding-top: 18rem;
  }

  .mobile\:hover\:pt-80:hover{
    padding-top: 20rem;
  }

  .mobile\:hover\:pt-96:hover{
    padding-top: 24rem;
  }

  .mobile\:hover\:pt-px:hover{
    padding-top: 1px;
  }

  .mobile\:hover\:pt-0\.5:hover{
    padding-top: 0.125rem;
  }

  .mobile\:hover\:pt-1\.5:hover{
    padding-top: 0.375rem;
  }

  .mobile\:hover\:pt-2\.5:hover{
    padding-top: 0.625rem;
  }

  .mobile\:hover\:pt-3\.5:hover{
    padding-top: 0.875rem;
  }

  .mobile\:hover\:pr-0:hover{
    padding-right: 0px;
  }

  .mobile\:hover\:pr-1:hover{
    padding-right: 0.25rem;
  }

  .mobile\:hover\:pr-2:hover{
    padding-right: 0.5rem;
  }

  .mobile\:hover\:pr-3:hover{
    padding-right: 0.75rem;
  }

  .mobile\:hover\:pr-4:hover{
    padding-right: 1rem;
  }

  .mobile\:hover\:pr-5:hover{
    padding-right: 1.25rem;
  }

  .mobile\:hover\:pr-6:hover{
    padding-right: 1.5rem;
  }

  .mobile\:hover\:pr-7:hover{
    padding-right: 1.75rem;
  }

  .mobile\:hover\:pr-8:hover{
    padding-right: 2rem;
  }

  .mobile\:hover\:pr-9:hover{
    padding-right: 2.25rem;
  }

  .mobile\:hover\:pr-10:hover{
    padding-right: 2.5rem;
  }

  .mobile\:hover\:pr-11:hover{
    padding-right: 2.75rem;
  }

  .mobile\:hover\:pr-12:hover{
    padding-right: 3rem;
  }

  .mobile\:hover\:pr-14:hover{
    padding-right: 3.5rem;
  }

  .mobile\:hover\:pr-16:hover{
    padding-right: 4rem;
  }

  .mobile\:hover\:pr-20:hover{
    padding-right: 5rem;
  }

  .mobile\:hover\:pr-24:hover{
    padding-right: 6rem;
  }

  .mobile\:hover\:pr-28:hover{
    padding-right: 7rem;
  }

  .mobile\:hover\:pr-32:hover{
    padding-right: 8rem;
  }

  .mobile\:hover\:pr-36:hover{
    padding-right: 9rem;
  }

  .mobile\:hover\:pr-40:hover{
    padding-right: 10rem;
  }

  .mobile\:hover\:pr-44:hover{
    padding-right: 11rem;
  }

  .mobile\:hover\:pr-48:hover{
    padding-right: 12rem;
  }

  .mobile\:hover\:pr-52:hover{
    padding-right: 13rem;
  }

  .mobile\:hover\:pr-56:hover{
    padding-right: 14rem;
  }

  .mobile\:hover\:pr-60:hover{
    padding-right: 15rem;
  }

  .mobile\:hover\:pr-64:hover{
    padding-right: 16rem;
  }

  .mobile\:hover\:pr-72:hover{
    padding-right: 18rem;
  }

  .mobile\:hover\:pr-80:hover{
    padding-right: 20rem;
  }

  .mobile\:hover\:pr-96:hover{
    padding-right: 24rem;
  }

  .mobile\:hover\:pr-px:hover{
    padding-right: 1px;
  }

  .mobile\:hover\:pr-0\.5:hover{
    padding-right: 0.125rem;
  }

  .mobile\:hover\:pr-1\.5:hover{
    padding-right: 0.375rem;
  }

  .mobile\:hover\:pr-2\.5:hover{
    padding-right: 0.625rem;
  }

  .mobile\:hover\:pr-3\.5:hover{
    padding-right: 0.875rem;
  }

  .mobile\:hover\:pb-0:hover{
    padding-bottom: 0px;
  }

  .mobile\:hover\:pb-1:hover{
    padding-bottom: 0.25rem;
  }

  .mobile\:hover\:pb-2:hover{
    padding-bottom: 0.5rem;
  }

  .mobile\:hover\:pb-3:hover{
    padding-bottom: 0.75rem;
  }

  .mobile\:hover\:pb-4:hover{
    padding-bottom: 1rem;
  }

  .mobile\:hover\:pb-5:hover{
    padding-bottom: 1.25rem;
  }

  .mobile\:hover\:pb-6:hover{
    padding-bottom: 1.5rem;
  }

  .mobile\:hover\:pb-7:hover{
    padding-bottom: 1.75rem;
  }

  .mobile\:hover\:pb-8:hover{
    padding-bottom: 2rem;
  }

  .mobile\:hover\:pb-9:hover{
    padding-bottom: 2.25rem;
  }

  .mobile\:hover\:pb-10:hover{
    padding-bottom: 2.5rem;
  }

  .mobile\:hover\:pb-11:hover{
    padding-bottom: 2.75rem;
  }

  .mobile\:hover\:pb-12:hover{
    padding-bottom: 3rem;
  }

  .mobile\:hover\:pb-14:hover{
    padding-bottom: 3.5rem;
  }

  .mobile\:hover\:pb-16:hover{
    padding-bottom: 4rem;
  }

  .mobile\:hover\:pb-20:hover{
    padding-bottom: 5rem;
  }

  .mobile\:hover\:pb-24:hover{
    padding-bottom: 6rem;
  }

  .mobile\:hover\:pb-28:hover{
    padding-bottom: 7rem;
  }

  .mobile\:hover\:pb-32:hover{
    padding-bottom: 8rem;
  }

  .mobile\:hover\:pb-36:hover{
    padding-bottom: 9rem;
  }

  .mobile\:hover\:pb-40:hover{
    padding-bottom: 10rem;
  }

  .mobile\:hover\:pb-44:hover{
    padding-bottom: 11rem;
  }

  .mobile\:hover\:pb-48:hover{
    padding-bottom: 12rem;
  }

  .mobile\:hover\:pb-52:hover{
    padding-bottom: 13rem;
  }

  .mobile\:hover\:pb-56:hover{
    padding-bottom: 14rem;
  }

  .mobile\:hover\:pb-60:hover{
    padding-bottom: 15rem;
  }

  .mobile\:hover\:pb-64:hover{
    padding-bottom: 16rem;
  }

  .mobile\:hover\:pb-72:hover{
    padding-bottom: 18rem;
  }

  .mobile\:hover\:pb-80:hover{
    padding-bottom: 20rem;
  }

  .mobile\:hover\:pb-96:hover{
    padding-bottom: 24rem;
  }

  .mobile\:hover\:pb-px:hover{
    padding-bottom: 1px;
  }

  .mobile\:hover\:pb-0\.5:hover{
    padding-bottom: 0.125rem;
  }

  .mobile\:hover\:pb-1\.5:hover{
    padding-bottom: 0.375rem;
  }

  .mobile\:hover\:pb-2\.5:hover{
    padding-bottom: 0.625rem;
  }

  .mobile\:hover\:pb-3\.5:hover{
    padding-bottom: 0.875rem;
  }

  .mobile\:hover\:pl-0:hover{
    padding-left: 0px;
  }

  .mobile\:hover\:pl-1:hover{
    padding-left: 0.25rem;
  }

  .mobile\:hover\:pl-2:hover{
    padding-left: 0.5rem;
  }

  .mobile\:hover\:pl-3:hover{
    padding-left: 0.75rem;
  }

  .mobile\:hover\:pl-4:hover{
    padding-left: 1rem;
  }

  .mobile\:hover\:pl-5:hover{
    padding-left: 1.25rem;
  }

  .mobile\:hover\:pl-6:hover{
    padding-left: 1.5rem;
  }

  .mobile\:hover\:pl-7:hover{
    padding-left: 1.75rem;
  }

  .mobile\:hover\:pl-8:hover{
    padding-left: 2rem;
  }

  .mobile\:hover\:pl-9:hover{
    padding-left: 2.25rem;
  }

  .mobile\:hover\:pl-10:hover{
    padding-left: 2.5rem;
  }

  .mobile\:hover\:pl-11:hover{
    padding-left: 2.75rem;
  }

  .mobile\:hover\:pl-12:hover{
    padding-left: 3rem;
  }

  .mobile\:hover\:pl-14:hover{
    padding-left: 3.5rem;
  }

  .mobile\:hover\:pl-16:hover{
    padding-left: 4rem;
  }

  .mobile\:hover\:pl-20:hover{
    padding-left: 5rem;
  }

  .mobile\:hover\:pl-24:hover{
    padding-left: 6rem;
  }

  .mobile\:hover\:pl-28:hover{
    padding-left: 7rem;
  }

  .mobile\:hover\:pl-32:hover{
    padding-left: 8rem;
  }

  .mobile\:hover\:pl-36:hover{
    padding-left: 9rem;
  }

  .mobile\:hover\:pl-40:hover{
    padding-left: 10rem;
  }

  .mobile\:hover\:pl-44:hover{
    padding-left: 11rem;
  }

  .mobile\:hover\:pl-48:hover{
    padding-left: 12rem;
  }

  .mobile\:hover\:pl-52:hover{
    padding-left: 13rem;
  }

  .mobile\:hover\:pl-56:hover{
    padding-left: 14rem;
  }

  .mobile\:hover\:pl-60:hover{
    padding-left: 15rem;
  }

  .mobile\:hover\:pl-64:hover{
    padding-left: 16rem;
  }

  .mobile\:hover\:pl-72:hover{
    padding-left: 18rem;
  }

  .mobile\:hover\:pl-80:hover{
    padding-left: 20rem;
  }

  .mobile\:hover\:pl-96:hover{
    padding-left: 24rem;
  }

  .mobile\:hover\:pl-px:hover{
    padding-left: 1px;
  }

  .mobile\:hover\:pl-0\.5:hover{
    padding-left: 0.125rem;
  }

  .mobile\:hover\:pl-1\.5:hover{
    padding-left: 0.375rem;
  }

  .mobile\:hover\:pl-2\.5:hover{
    padding-left: 0.625rem;
  }

  .mobile\:hover\:pl-3\.5:hover{
    padding-left: 0.875rem;
  }

  .mobile\:focus\:pt-0:focus{
    padding-top: 0px;
  }

  .mobile\:focus\:pt-1:focus{
    padding-top: 0.25rem;
  }

  .mobile\:focus\:pt-2:focus{
    padding-top: 0.5rem;
  }

  .mobile\:focus\:pt-3:focus{
    padding-top: 0.75rem;
  }

  .mobile\:focus\:pt-4:focus{
    padding-top: 1rem;
  }

  .mobile\:focus\:pt-5:focus{
    padding-top: 1.25rem;
  }

  .mobile\:focus\:pt-6:focus{
    padding-top: 1.5rem;
  }

  .mobile\:focus\:pt-7:focus{
    padding-top: 1.75rem;
  }

  .mobile\:focus\:pt-8:focus{
    padding-top: 2rem;
  }

  .mobile\:focus\:pt-9:focus{
    padding-top: 2.25rem;
  }

  .mobile\:focus\:pt-10:focus{
    padding-top: 2.5rem;
  }

  .mobile\:focus\:pt-11:focus{
    padding-top: 2.75rem;
  }

  .mobile\:focus\:pt-12:focus{
    padding-top: 3rem;
  }

  .mobile\:focus\:pt-14:focus{
    padding-top: 3.5rem;
  }

  .mobile\:focus\:pt-16:focus{
    padding-top: 4rem;
  }

  .mobile\:focus\:pt-20:focus{
    padding-top: 5rem;
  }

  .mobile\:focus\:pt-24:focus{
    padding-top: 6rem;
  }

  .mobile\:focus\:pt-28:focus{
    padding-top: 7rem;
  }

  .mobile\:focus\:pt-32:focus{
    padding-top: 8rem;
  }

  .mobile\:focus\:pt-36:focus{
    padding-top: 9rem;
  }

  .mobile\:focus\:pt-40:focus{
    padding-top: 10rem;
  }

  .mobile\:focus\:pt-44:focus{
    padding-top: 11rem;
  }

  .mobile\:focus\:pt-48:focus{
    padding-top: 12rem;
  }

  .mobile\:focus\:pt-52:focus{
    padding-top: 13rem;
  }

  .mobile\:focus\:pt-56:focus{
    padding-top: 14rem;
  }

  .mobile\:focus\:pt-60:focus{
    padding-top: 15rem;
  }

  .mobile\:focus\:pt-64:focus{
    padding-top: 16rem;
  }

  .mobile\:focus\:pt-72:focus{
    padding-top: 18rem;
  }

  .mobile\:focus\:pt-80:focus{
    padding-top: 20rem;
  }

  .mobile\:focus\:pt-96:focus{
    padding-top: 24rem;
  }

  .mobile\:focus\:pt-px:focus{
    padding-top: 1px;
  }

  .mobile\:focus\:pt-0\.5:focus{
    padding-top: 0.125rem;
  }

  .mobile\:focus\:pt-1\.5:focus{
    padding-top: 0.375rem;
  }

  .mobile\:focus\:pt-2\.5:focus{
    padding-top: 0.625rem;
  }

  .mobile\:focus\:pt-3\.5:focus{
    padding-top: 0.875rem;
  }

  .mobile\:focus\:pr-0:focus{
    padding-right: 0px;
  }

  .mobile\:focus\:pr-1:focus{
    padding-right: 0.25rem;
  }

  .mobile\:focus\:pr-2:focus{
    padding-right: 0.5rem;
  }

  .mobile\:focus\:pr-3:focus{
    padding-right: 0.75rem;
  }

  .mobile\:focus\:pr-4:focus{
    padding-right: 1rem;
  }

  .mobile\:focus\:pr-5:focus{
    padding-right: 1.25rem;
  }

  .mobile\:focus\:pr-6:focus{
    padding-right: 1.5rem;
  }

  .mobile\:focus\:pr-7:focus{
    padding-right: 1.75rem;
  }

  .mobile\:focus\:pr-8:focus{
    padding-right: 2rem;
  }

  .mobile\:focus\:pr-9:focus{
    padding-right: 2.25rem;
  }

  .mobile\:focus\:pr-10:focus{
    padding-right: 2.5rem;
  }

  .mobile\:focus\:pr-11:focus{
    padding-right: 2.75rem;
  }

  .mobile\:focus\:pr-12:focus{
    padding-right: 3rem;
  }

  .mobile\:focus\:pr-14:focus{
    padding-right: 3.5rem;
  }

  .mobile\:focus\:pr-16:focus{
    padding-right: 4rem;
  }

  .mobile\:focus\:pr-20:focus{
    padding-right: 5rem;
  }

  .mobile\:focus\:pr-24:focus{
    padding-right: 6rem;
  }

  .mobile\:focus\:pr-28:focus{
    padding-right: 7rem;
  }

  .mobile\:focus\:pr-32:focus{
    padding-right: 8rem;
  }

  .mobile\:focus\:pr-36:focus{
    padding-right: 9rem;
  }

  .mobile\:focus\:pr-40:focus{
    padding-right: 10rem;
  }

  .mobile\:focus\:pr-44:focus{
    padding-right: 11rem;
  }

  .mobile\:focus\:pr-48:focus{
    padding-right: 12rem;
  }

  .mobile\:focus\:pr-52:focus{
    padding-right: 13rem;
  }

  .mobile\:focus\:pr-56:focus{
    padding-right: 14rem;
  }

  .mobile\:focus\:pr-60:focus{
    padding-right: 15rem;
  }

  .mobile\:focus\:pr-64:focus{
    padding-right: 16rem;
  }

  .mobile\:focus\:pr-72:focus{
    padding-right: 18rem;
  }

  .mobile\:focus\:pr-80:focus{
    padding-right: 20rem;
  }

  .mobile\:focus\:pr-96:focus{
    padding-right: 24rem;
  }

  .mobile\:focus\:pr-px:focus{
    padding-right: 1px;
  }

  .mobile\:focus\:pr-0\.5:focus{
    padding-right: 0.125rem;
  }

  .mobile\:focus\:pr-1\.5:focus{
    padding-right: 0.375rem;
  }

  .mobile\:focus\:pr-2\.5:focus{
    padding-right: 0.625rem;
  }

  .mobile\:focus\:pr-3\.5:focus{
    padding-right: 0.875rem;
  }

  .mobile\:focus\:pb-0:focus{
    padding-bottom: 0px;
  }

  .mobile\:focus\:pb-1:focus{
    padding-bottom: 0.25rem;
  }

  .mobile\:focus\:pb-2:focus{
    padding-bottom: 0.5rem;
  }

  .mobile\:focus\:pb-3:focus{
    padding-bottom: 0.75rem;
  }

  .mobile\:focus\:pb-4:focus{
    padding-bottom: 1rem;
  }

  .mobile\:focus\:pb-5:focus{
    padding-bottom: 1.25rem;
  }

  .mobile\:focus\:pb-6:focus{
    padding-bottom: 1.5rem;
  }

  .mobile\:focus\:pb-7:focus{
    padding-bottom: 1.75rem;
  }

  .mobile\:focus\:pb-8:focus{
    padding-bottom: 2rem;
  }

  .mobile\:focus\:pb-9:focus{
    padding-bottom: 2.25rem;
  }

  .mobile\:focus\:pb-10:focus{
    padding-bottom: 2.5rem;
  }

  .mobile\:focus\:pb-11:focus{
    padding-bottom: 2.75rem;
  }

  .mobile\:focus\:pb-12:focus{
    padding-bottom: 3rem;
  }

  .mobile\:focus\:pb-14:focus{
    padding-bottom: 3.5rem;
  }

  .mobile\:focus\:pb-16:focus{
    padding-bottom: 4rem;
  }

  .mobile\:focus\:pb-20:focus{
    padding-bottom: 5rem;
  }

  .mobile\:focus\:pb-24:focus{
    padding-bottom: 6rem;
  }

  .mobile\:focus\:pb-28:focus{
    padding-bottom: 7rem;
  }

  .mobile\:focus\:pb-32:focus{
    padding-bottom: 8rem;
  }

  .mobile\:focus\:pb-36:focus{
    padding-bottom: 9rem;
  }

  .mobile\:focus\:pb-40:focus{
    padding-bottom: 10rem;
  }

  .mobile\:focus\:pb-44:focus{
    padding-bottom: 11rem;
  }

  .mobile\:focus\:pb-48:focus{
    padding-bottom: 12rem;
  }

  .mobile\:focus\:pb-52:focus{
    padding-bottom: 13rem;
  }

  .mobile\:focus\:pb-56:focus{
    padding-bottom: 14rem;
  }

  .mobile\:focus\:pb-60:focus{
    padding-bottom: 15rem;
  }

  .mobile\:focus\:pb-64:focus{
    padding-bottom: 16rem;
  }

  .mobile\:focus\:pb-72:focus{
    padding-bottom: 18rem;
  }

  .mobile\:focus\:pb-80:focus{
    padding-bottom: 20rem;
  }

  .mobile\:focus\:pb-96:focus{
    padding-bottom: 24rem;
  }

  .mobile\:focus\:pb-px:focus{
    padding-bottom: 1px;
  }

  .mobile\:focus\:pb-0\.5:focus{
    padding-bottom: 0.125rem;
  }

  .mobile\:focus\:pb-1\.5:focus{
    padding-bottom: 0.375rem;
  }

  .mobile\:focus\:pb-2\.5:focus{
    padding-bottom: 0.625rem;
  }

  .mobile\:focus\:pb-3\.5:focus{
    padding-bottom: 0.875rem;
  }

  .mobile\:focus\:pl-0:focus{
    padding-left: 0px;
  }

  .mobile\:focus\:pl-1:focus{
    padding-left: 0.25rem;
  }

  .mobile\:focus\:pl-2:focus{
    padding-left: 0.5rem;
  }

  .mobile\:focus\:pl-3:focus{
    padding-left: 0.75rem;
  }

  .mobile\:focus\:pl-4:focus{
    padding-left: 1rem;
  }

  .mobile\:focus\:pl-5:focus{
    padding-left: 1.25rem;
  }

  .mobile\:focus\:pl-6:focus{
    padding-left: 1.5rem;
  }

  .mobile\:focus\:pl-7:focus{
    padding-left: 1.75rem;
  }

  .mobile\:focus\:pl-8:focus{
    padding-left: 2rem;
  }

  .mobile\:focus\:pl-9:focus{
    padding-left: 2.25rem;
  }

  .mobile\:focus\:pl-10:focus{
    padding-left: 2.5rem;
  }

  .mobile\:focus\:pl-11:focus{
    padding-left: 2.75rem;
  }

  .mobile\:focus\:pl-12:focus{
    padding-left: 3rem;
  }

  .mobile\:focus\:pl-14:focus{
    padding-left: 3.5rem;
  }

  .mobile\:focus\:pl-16:focus{
    padding-left: 4rem;
  }

  .mobile\:focus\:pl-20:focus{
    padding-left: 5rem;
  }

  .mobile\:focus\:pl-24:focus{
    padding-left: 6rem;
  }

  .mobile\:focus\:pl-28:focus{
    padding-left: 7rem;
  }

  .mobile\:focus\:pl-32:focus{
    padding-left: 8rem;
  }

  .mobile\:focus\:pl-36:focus{
    padding-left: 9rem;
  }

  .mobile\:focus\:pl-40:focus{
    padding-left: 10rem;
  }

  .mobile\:focus\:pl-44:focus{
    padding-left: 11rem;
  }

  .mobile\:focus\:pl-48:focus{
    padding-left: 12rem;
  }

  .mobile\:focus\:pl-52:focus{
    padding-left: 13rem;
  }

  .mobile\:focus\:pl-56:focus{
    padding-left: 14rem;
  }

  .mobile\:focus\:pl-60:focus{
    padding-left: 15rem;
  }

  .mobile\:focus\:pl-64:focus{
    padding-left: 16rem;
  }

  .mobile\:focus\:pl-72:focus{
    padding-left: 18rem;
  }

  .mobile\:focus\:pl-80:focus{
    padding-left: 20rem;
  }

  .mobile\:focus\:pl-96:focus{
    padding-left: 24rem;
  }

  .mobile\:focus\:pl-px:focus{
    padding-left: 1px;
  }

  .mobile\:focus\:pl-0\.5:focus{
    padding-left: 0.125rem;
  }

  .mobile\:focus\:pl-1\.5:focus{
    padding-left: 0.375rem;
  }

  .mobile\:focus\:pl-2\.5:focus{
    padding-left: 0.625rem;
  }

  .mobile\:focus\:pl-3\.5:focus{
    padding-left: 0.875rem;
  }

  .mobile\:first\:pt-0:first-child{
    padding-top: 0px;
  }

  .mobile\:first\:pt-1:first-child{
    padding-top: 0.25rem;
  }

  .mobile\:first\:pt-2:first-child{
    padding-top: 0.5rem;
  }

  .mobile\:first\:pt-3:first-child{
    padding-top: 0.75rem;
  }

  .mobile\:first\:pt-4:first-child{
    padding-top: 1rem;
  }

  .mobile\:first\:pt-5:first-child{
    padding-top: 1.25rem;
  }

  .mobile\:first\:pt-6:first-child{
    padding-top: 1.5rem;
  }

  .mobile\:first\:pt-7:first-child{
    padding-top: 1.75rem;
  }

  .mobile\:first\:pt-8:first-child{
    padding-top: 2rem;
  }

  .mobile\:first\:pt-9:first-child{
    padding-top: 2.25rem;
  }

  .mobile\:first\:pt-10:first-child{
    padding-top: 2.5rem;
  }

  .mobile\:first\:pt-11:first-child{
    padding-top: 2.75rem;
  }

  .mobile\:first\:pt-12:first-child{
    padding-top: 3rem;
  }

  .mobile\:first\:pt-14:first-child{
    padding-top: 3.5rem;
  }

  .mobile\:first\:pt-16:first-child{
    padding-top: 4rem;
  }

  .mobile\:first\:pt-20:first-child{
    padding-top: 5rem;
  }

  .mobile\:first\:pt-24:first-child{
    padding-top: 6rem;
  }

  .mobile\:first\:pt-28:first-child{
    padding-top: 7rem;
  }

  .mobile\:first\:pt-32:first-child{
    padding-top: 8rem;
  }

  .mobile\:first\:pt-36:first-child{
    padding-top: 9rem;
  }

  .mobile\:first\:pt-40:first-child{
    padding-top: 10rem;
  }

  .mobile\:first\:pt-44:first-child{
    padding-top: 11rem;
  }

  .mobile\:first\:pt-48:first-child{
    padding-top: 12rem;
  }

  .mobile\:first\:pt-52:first-child{
    padding-top: 13rem;
  }

  .mobile\:first\:pt-56:first-child{
    padding-top: 14rem;
  }

  .mobile\:first\:pt-60:first-child{
    padding-top: 15rem;
  }

  .mobile\:first\:pt-64:first-child{
    padding-top: 16rem;
  }

  .mobile\:first\:pt-72:first-child{
    padding-top: 18rem;
  }

  .mobile\:first\:pt-80:first-child{
    padding-top: 20rem;
  }

  .mobile\:first\:pt-96:first-child{
    padding-top: 24rem;
  }

  .mobile\:first\:pt-px:first-child{
    padding-top: 1px;
  }

  .mobile\:first\:pt-0\.5:first-child{
    padding-top: 0.125rem;
  }

  .mobile\:first\:pt-1\.5:first-child{
    padding-top: 0.375rem;
  }

  .mobile\:first\:pt-2\.5:first-child{
    padding-top: 0.625rem;
  }

  .mobile\:first\:pt-3\.5:first-child{
    padding-top: 0.875rem;
  }

  .mobile\:first\:pr-0:first-child{
    padding-right: 0px;
  }

  .mobile\:first\:pr-1:first-child{
    padding-right: 0.25rem;
  }

  .mobile\:first\:pr-2:first-child{
    padding-right: 0.5rem;
  }

  .mobile\:first\:pr-3:first-child{
    padding-right: 0.75rem;
  }

  .mobile\:first\:pr-4:first-child{
    padding-right: 1rem;
  }

  .mobile\:first\:pr-5:first-child{
    padding-right: 1.25rem;
  }

  .mobile\:first\:pr-6:first-child{
    padding-right: 1.5rem;
  }

  .mobile\:first\:pr-7:first-child{
    padding-right: 1.75rem;
  }

  .mobile\:first\:pr-8:first-child{
    padding-right: 2rem;
  }

  .mobile\:first\:pr-9:first-child{
    padding-right: 2.25rem;
  }

  .mobile\:first\:pr-10:first-child{
    padding-right: 2.5rem;
  }

  .mobile\:first\:pr-11:first-child{
    padding-right: 2.75rem;
  }

  .mobile\:first\:pr-12:first-child{
    padding-right: 3rem;
  }

  .mobile\:first\:pr-14:first-child{
    padding-right: 3.5rem;
  }

  .mobile\:first\:pr-16:first-child{
    padding-right: 4rem;
  }

  .mobile\:first\:pr-20:first-child{
    padding-right: 5rem;
  }

  .mobile\:first\:pr-24:first-child{
    padding-right: 6rem;
  }

  .mobile\:first\:pr-28:first-child{
    padding-right: 7rem;
  }

  .mobile\:first\:pr-32:first-child{
    padding-right: 8rem;
  }

  .mobile\:first\:pr-36:first-child{
    padding-right: 9rem;
  }

  .mobile\:first\:pr-40:first-child{
    padding-right: 10rem;
  }

  .mobile\:first\:pr-44:first-child{
    padding-right: 11rem;
  }

  .mobile\:first\:pr-48:first-child{
    padding-right: 12rem;
  }

  .mobile\:first\:pr-52:first-child{
    padding-right: 13rem;
  }

  .mobile\:first\:pr-56:first-child{
    padding-right: 14rem;
  }

  .mobile\:first\:pr-60:first-child{
    padding-right: 15rem;
  }

  .mobile\:first\:pr-64:first-child{
    padding-right: 16rem;
  }

  .mobile\:first\:pr-72:first-child{
    padding-right: 18rem;
  }

  .mobile\:first\:pr-80:first-child{
    padding-right: 20rem;
  }

  .mobile\:first\:pr-96:first-child{
    padding-right: 24rem;
  }

  .mobile\:first\:pr-px:first-child{
    padding-right: 1px;
  }

  .mobile\:first\:pr-0\.5:first-child{
    padding-right: 0.125rem;
  }

  .mobile\:first\:pr-1\.5:first-child{
    padding-right: 0.375rem;
  }

  .mobile\:first\:pr-2\.5:first-child{
    padding-right: 0.625rem;
  }

  .mobile\:first\:pr-3\.5:first-child{
    padding-right: 0.875rem;
  }

  .mobile\:first\:pb-0:first-child{
    padding-bottom: 0px;
  }

  .mobile\:first\:pb-1:first-child{
    padding-bottom: 0.25rem;
  }

  .mobile\:first\:pb-2:first-child{
    padding-bottom: 0.5rem;
  }

  .mobile\:first\:pb-3:first-child{
    padding-bottom: 0.75rem;
  }

  .mobile\:first\:pb-4:first-child{
    padding-bottom: 1rem;
  }

  .mobile\:first\:pb-5:first-child{
    padding-bottom: 1.25rem;
  }

  .mobile\:first\:pb-6:first-child{
    padding-bottom: 1.5rem;
  }

  .mobile\:first\:pb-7:first-child{
    padding-bottom: 1.75rem;
  }

  .mobile\:first\:pb-8:first-child{
    padding-bottom: 2rem;
  }

  .mobile\:first\:pb-9:first-child{
    padding-bottom: 2.25rem;
  }

  .mobile\:first\:pb-10:first-child{
    padding-bottom: 2.5rem;
  }

  .mobile\:first\:pb-11:first-child{
    padding-bottom: 2.75rem;
  }

  .mobile\:first\:pb-12:first-child{
    padding-bottom: 3rem;
  }

  .mobile\:first\:pb-14:first-child{
    padding-bottom: 3.5rem;
  }

  .mobile\:first\:pb-16:first-child{
    padding-bottom: 4rem;
  }

  .mobile\:first\:pb-20:first-child{
    padding-bottom: 5rem;
  }

  .mobile\:first\:pb-24:first-child{
    padding-bottom: 6rem;
  }

  .mobile\:first\:pb-28:first-child{
    padding-bottom: 7rem;
  }

  .mobile\:first\:pb-32:first-child{
    padding-bottom: 8rem;
  }

  .mobile\:first\:pb-36:first-child{
    padding-bottom: 9rem;
  }

  .mobile\:first\:pb-40:first-child{
    padding-bottom: 10rem;
  }

  .mobile\:first\:pb-44:first-child{
    padding-bottom: 11rem;
  }

  .mobile\:first\:pb-48:first-child{
    padding-bottom: 12rem;
  }

  .mobile\:first\:pb-52:first-child{
    padding-bottom: 13rem;
  }

  .mobile\:first\:pb-56:first-child{
    padding-bottom: 14rem;
  }

  .mobile\:first\:pb-60:first-child{
    padding-bottom: 15rem;
  }

  .mobile\:first\:pb-64:first-child{
    padding-bottom: 16rem;
  }

  .mobile\:first\:pb-72:first-child{
    padding-bottom: 18rem;
  }

  .mobile\:first\:pb-80:first-child{
    padding-bottom: 20rem;
  }

  .mobile\:first\:pb-96:first-child{
    padding-bottom: 24rem;
  }

  .mobile\:first\:pb-px:first-child{
    padding-bottom: 1px;
  }

  .mobile\:first\:pb-0\.5:first-child{
    padding-bottom: 0.125rem;
  }

  .mobile\:first\:pb-1\.5:first-child{
    padding-bottom: 0.375rem;
  }

  .mobile\:first\:pb-2\.5:first-child{
    padding-bottom: 0.625rem;
  }

  .mobile\:first\:pb-3\.5:first-child{
    padding-bottom: 0.875rem;
  }

  .mobile\:first\:pl-0:first-child{
    padding-left: 0px;
  }

  .mobile\:first\:pl-1:first-child{
    padding-left: 0.25rem;
  }

  .mobile\:first\:pl-2:first-child{
    padding-left: 0.5rem;
  }

  .mobile\:first\:pl-3:first-child{
    padding-left: 0.75rem;
  }

  .mobile\:first\:pl-4:first-child{
    padding-left: 1rem;
  }

  .mobile\:first\:pl-5:first-child{
    padding-left: 1.25rem;
  }

  .mobile\:first\:pl-6:first-child{
    padding-left: 1.5rem;
  }

  .mobile\:first\:pl-7:first-child{
    padding-left: 1.75rem;
  }

  .mobile\:first\:pl-8:first-child{
    padding-left: 2rem;
  }

  .mobile\:first\:pl-9:first-child{
    padding-left: 2.25rem;
  }

  .mobile\:first\:pl-10:first-child{
    padding-left: 2.5rem;
  }

  .mobile\:first\:pl-11:first-child{
    padding-left: 2.75rem;
  }

  .mobile\:first\:pl-12:first-child{
    padding-left: 3rem;
  }

  .mobile\:first\:pl-14:first-child{
    padding-left: 3.5rem;
  }

  .mobile\:first\:pl-16:first-child{
    padding-left: 4rem;
  }

  .mobile\:first\:pl-20:first-child{
    padding-left: 5rem;
  }

  .mobile\:first\:pl-24:first-child{
    padding-left: 6rem;
  }

  .mobile\:first\:pl-28:first-child{
    padding-left: 7rem;
  }

  .mobile\:first\:pl-32:first-child{
    padding-left: 8rem;
  }

  .mobile\:first\:pl-36:first-child{
    padding-left: 9rem;
  }

  .mobile\:first\:pl-40:first-child{
    padding-left: 10rem;
  }

  .mobile\:first\:pl-44:first-child{
    padding-left: 11rem;
  }

  .mobile\:first\:pl-48:first-child{
    padding-left: 12rem;
  }

  .mobile\:first\:pl-52:first-child{
    padding-left: 13rem;
  }

  .mobile\:first\:pl-56:first-child{
    padding-left: 14rem;
  }

  .mobile\:first\:pl-60:first-child{
    padding-left: 15rem;
  }

  .mobile\:first\:pl-64:first-child{
    padding-left: 16rem;
  }

  .mobile\:first\:pl-72:first-child{
    padding-left: 18rem;
  }

  .mobile\:first\:pl-80:first-child{
    padding-left: 20rem;
  }

  .mobile\:first\:pl-96:first-child{
    padding-left: 24rem;
  }

  .mobile\:first\:pl-px:first-child{
    padding-left: 1px;
  }

  .mobile\:first\:pl-0\.5:first-child{
    padding-left: 0.125rem;
  }

  .mobile\:first\:pl-1\.5:first-child{
    padding-left: 0.375rem;
  }

  .mobile\:first\:pl-2\.5:first-child{
    padding-left: 0.625rem;
  }

  .mobile\:first\:pl-3\.5:first-child{
    padding-left: 0.875rem;
  }

  .mobile\:last\:pt-0:last-child{
    padding-top: 0px;
  }

  .mobile\:last\:pt-1:last-child{
    padding-top: 0.25rem;
  }

  .mobile\:last\:pt-2:last-child{
    padding-top: 0.5rem;
  }

  .mobile\:last\:pt-3:last-child{
    padding-top: 0.75rem;
  }

  .mobile\:last\:pt-4:last-child{
    padding-top: 1rem;
  }

  .mobile\:last\:pt-5:last-child{
    padding-top: 1.25rem;
  }

  .mobile\:last\:pt-6:last-child{
    padding-top: 1.5rem;
  }

  .mobile\:last\:pt-7:last-child{
    padding-top: 1.75rem;
  }

  .mobile\:last\:pt-8:last-child{
    padding-top: 2rem;
  }

  .mobile\:last\:pt-9:last-child{
    padding-top: 2.25rem;
  }

  .mobile\:last\:pt-10:last-child{
    padding-top: 2.5rem;
  }

  .mobile\:last\:pt-11:last-child{
    padding-top: 2.75rem;
  }

  .mobile\:last\:pt-12:last-child{
    padding-top: 3rem;
  }

  .mobile\:last\:pt-14:last-child{
    padding-top: 3.5rem;
  }

  .mobile\:last\:pt-16:last-child{
    padding-top: 4rem;
  }

  .mobile\:last\:pt-20:last-child{
    padding-top: 5rem;
  }

  .mobile\:last\:pt-24:last-child{
    padding-top: 6rem;
  }

  .mobile\:last\:pt-28:last-child{
    padding-top: 7rem;
  }

  .mobile\:last\:pt-32:last-child{
    padding-top: 8rem;
  }

  .mobile\:last\:pt-36:last-child{
    padding-top: 9rem;
  }

  .mobile\:last\:pt-40:last-child{
    padding-top: 10rem;
  }

  .mobile\:last\:pt-44:last-child{
    padding-top: 11rem;
  }

  .mobile\:last\:pt-48:last-child{
    padding-top: 12rem;
  }

  .mobile\:last\:pt-52:last-child{
    padding-top: 13rem;
  }

  .mobile\:last\:pt-56:last-child{
    padding-top: 14rem;
  }

  .mobile\:last\:pt-60:last-child{
    padding-top: 15rem;
  }

  .mobile\:last\:pt-64:last-child{
    padding-top: 16rem;
  }

  .mobile\:last\:pt-72:last-child{
    padding-top: 18rem;
  }

  .mobile\:last\:pt-80:last-child{
    padding-top: 20rem;
  }

  .mobile\:last\:pt-96:last-child{
    padding-top: 24rem;
  }

  .mobile\:last\:pt-px:last-child{
    padding-top: 1px;
  }

  .mobile\:last\:pt-0\.5:last-child{
    padding-top: 0.125rem;
  }

  .mobile\:last\:pt-1\.5:last-child{
    padding-top: 0.375rem;
  }

  .mobile\:last\:pt-2\.5:last-child{
    padding-top: 0.625rem;
  }

  .mobile\:last\:pt-3\.5:last-child{
    padding-top: 0.875rem;
  }

  .mobile\:last\:pr-0:last-child{
    padding-right: 0px;
  }

  .mobile\:last\:pr-1:last-child{
    padding-right: 0.25rem;
  }

  .mobile\:last\:pr-2:last-child{
    padding-right: 0.5rem;
  }

  .mobile\:last\:pr-3:last-child{
    padding-right: 0.75rem;
  }

  .mobile\:last\:pr-4:last-child{
    padding-right: 1rem;
  }

  .mobile\:last\:pr-5:last-child{
    padding-right: 1.25rem;
  }

  .mobile\:last\:pr-6:last-child{
    padding-right: 1.5rem;
  }

  .mobile\:last\:pr-7:last-child{
    padding-right: 1.75rem;
  }

  .mobile\:last\:pr-8:last-child{
    padding-right: 2rem;
  }

  .mobile\:last\:pr-9:last-child{
    padding-right: 2.25rem;
  }

  .mobile\:last\:pr-10:last-child{
    padding-right: 2.5rem;
  }

  .mobile\:last\:pr-11:last-child{
    padding-right: 2.75rem;
  }

  .mobile\:last\:pr-12:last-child{
    padding-right: 3rem;
  }

  .mobile\:last\:pr-14:last-child{
    padding-right: 3.5rem;
  }

  .mobile\:last\:pr-16:last-child{
    padding-right: 4rem;
  }

  .mobile\:last\:pr-20:last-child{
    padding-right: 5rem;
  }

  .mobile\:last\:pr-24:last-child{
    padding-right: 6rem;
  }

  .mobile\:last\:pr-28:last-child{
    padding-right: 7rem;
  }

  .mobile\:last\:pr-32:last-child{
    padding-right: 8rem;
  }

  .mobile\:last\:pr-36:last-child{
    padding-right: 9rem;
  }

  .mobile\:last\:pr-40:last-child{
    padding-right: 10rem;
  }

  .mobile\:last\:pr-44:last-child{
    padding-right: 11rem;
  }

  .mobile\:last\:pr-48:last-child{
    padding-right: 12rem;
  }

  .mobile\:last\:pr-52:last-child{
    padding-right: 13rem;
  }

  .mobile\:last\:pr-56:last-child{
    padding-right: 14rem;
  }

  .mobile\:last\:pr-60:last-child{
    padding-right: 15rem;
  }

  .mobile\:last\:pr-64:last-child{
    padding-right: 16rem;
  }

  .mobile\:last\:pr-72:last-child{
    padding-right: 18rem;
  }

  .mobile\:last\:pr-80:last-child{
    padding-right: 20rem;
  }

  .mobile\:last\:pr-96:last-child{
    padding-right: 24rem;
  }

  .mobile\:last\:pr-px:last-child{
    padding-right: 1px;
  }

  .mobile\:last\:pr-0\.5:last-child{
    padding-right: 0.125rem;
  }

  .mobile\:last\:pr-1\.5:last-child{
    padding-right: 0.375rem;
  }

  .mobile\:last\:pr-2\.5:last-child{
    padding-right: 0.625rem;
  }

  .mobile\:last\:pr-3\.5:last-child{
    padding-right: 0.875rem;
  }

  .mobile\:last\:pb-0:last-child{
    padding-bottom: 0px;
  }

  .mobile\:last\:pb-1:last-child{
    padding-bottom: 0.25rem;
  }

  .mobile\:last\:pb-2:last-child{
    padding-bottom: 0.5rem;
  }

  .mobile\:last\:pb-3:last-child{
    padding-bottom: 0.75rem;
  }

  .mobile\:last\:pb-4:last-child{
    padding-bottom: 1rem;
  }

  .mobile\:last\:pb-5:last-child{
    padding-bottom: 1.25rem;
  }

  .mobile\:last\:pb-6:last-child{
    padding-bottom: 1.5rem;
  }

  .mobile\:last\:pb-7:last-child{
    padding-bottom: 1.75rem;
  }

  .mobile\:last\:pb-8:last-child{
    padding-bottom: 2rem;
  }

  .mobile\:last\:pb-9:last-child{
    padding-bottom: 2.25rem;
  }

  .mobile\:last\:pb-10:last-child{
    padding-bottom: 2.5rem;
  }

  .mobile\:last\:pb-11:last-child{
    padding-bottom: 2.75rem;
  }

  .mobile\:last\:pb-12:last-child{
    padding-bottom: 3rem;
  }

  .mobile\:last\:pb-14:last-child{
    padding-bottom: 3.5rem;
  }

  .mobile\:last\:pb-16:last-child{
    padding-bottom: 4rem;
  }

  .mobile\:last\:pb-20:last-child{
    padding-bottom: 5rem;
  }

  .mobile\:last\:pb-24:last-child{
    padding-bottom: 6rem;
  }

  .mobile\:last\:pb-28:last-child{
    padding-bottom: 7rem;
  }

  .mobile\:last\:pb-32:last-child{
    padding-bottom: 8rem;
  }

  .mobile\:last\:pb-36:last-child{
    padding-bottom: 9rem;
  }

  .mobile\:last\:pb-40:last-child{
    padding-bottom: 10rem;
  }

  .mobile\:last\:pb-44:last-child{
    padding-bottom: 11rem;
  }

  .mobile\:last\:pb-48:last-child{
    padding-bottom: 12rem;
  }

  .mobile\:last\:pb-52:last-child{
    padding-bottom: 13rem;
  }

  .mobile\:last\:pb-56:last-child{
    padding-bottom: 14rem;
  }

  .mobile\:last\:pb-60:last-child{
    padding-bottom: 15rem;
  }

  .mobile\:last\:pb-64:last-child{
    padding-bottom: 16rem;
  }

  .mobile\:last\:pb-72:last-child{
    padding-bottom: 18rem;
  }

  .mobile\:last\:pb-80:last-child{
    padding-bottom: 20rem;
  }

  .mobile\:last\:pb-96:last-child{
    padding-bottom: 24rem;
  }

  .mobile\:last\:pb-px:last-child{
    padding-bottom: 1px;
  }

  .mobile\:last\:pb-0\.5:last-child{
    padding-bottom: 0.125rem;
  }

  .mobile\:last\:pb-1\.5:last-child{
    padding-bottom: 0.375rem;
  }

  .mobile\:last\:pb-2\.5:last-child{
    padding-bottom: 0.625rem;
  }

  .mobile\:last\:pb-3\.5:last-child{
    padding-bottom: 0.875rem;
  }

  .mobile\:last\:pl-0:last-child{
    padding-left: 0px;
  }

  .mobile\:last\:pl-1:last-child{
    padding-left: 0.25rem;
  }

  .mobile\:last\:pl-2:last-child{
    padding-left: 0.5rem;
  }

  .mobile\:last\:pl-3:last-child{
    padding-left: 0.75rem;
  }

  .mobile\:last\:pl-4:last-child{
    padding-left: 1rem;
  }

  .mobile\:last\:pl-5:last-child{
    padding-left: 1.25rem;
  }

  .mobile\:last\:pl-6:last-child{
    padding-left: 1.5rem;
  }

  .mobile\:last\:pl-7:last-child{
    padding-left: 1.75rem;
  }

  .mobile\:last\:pl-8:last-child{
    padding-left: 2rem;
  }

  .mobile\:last\:pl-9:last-child{
    padding-left: 2.25rem;
  }

  .mobile\:last\:pl-10:last-child{
    padding-left: 2.5rem;
  }

  .mobile\:last\:pl-11:last-child{
    padding-left: 2.75rem;
  }

  .mobile\:last\:pl-12:last-child{
    padding-left: 3rem;
  }

  .mobile\:last\:pl-14:last-child{
    padding-left: 3.5rem;
  }

  .mobile\:last\:pl-16:last-child{
    padding-left: 4rem;
  }

  .mobile\:last\:pl-20:last-child{
    padding-left: 5rem;
  }

  .mobile\:last\:pl-24:last-child{
    padding-left: 6rem;
  }

  .mobile\:last\:pl-28:last-child{
    padding-left: 7rem;
  }

  .mobile\:last\:pl-32:last-child{
    padding-left: 8rem;
  }

  .mobile\:last\:pl-36:last-child{
    padding-left: 9rem;
  }

  .mobile\:last\:pl-40:last-child{
    padding-left: 10rem;
  }

  .mobile\:last\:pl-44:last-child{
    padding-left: 11rem;
  }

  .mobile\:last\:pl-48:last-child{
    padding-left: 12rem;
  }

  .mobile\:last\:pl-52:last-child{
    padding-left: 13rem;
  }

  .mobile\:last\:pl-56:last-child{
    padding-left: 14rem;
  }

  .mobile\:last\:pl-60:last-child{
    padding-left: 15rem;
  }

  .mobile\:last\:pl-64:last-child{
    padding-left: 16rem;
  }

  .mobile\:last\:pl-72:last-child{
    padding-left: 18rem;
  }

  .mobile\:last\:pl-80:last-child{
    padding-left: 20rem;
  }

  .mobile\:last\:pl-96:last-child{
    padding-left: 24rem;
  }

  .mobile\:last\:pl-px:last-child{
    padding-left: 1px;
  }

  .mobile\:last\:pl-0\.5:last-child{
    padding-left: 0.125rem;
  }

  .mobile\:last\:pl-1\.5:last-child{
    padding-left: 0.375rem;
  }

  .mobile\:last\:pl-2\.5:last-child{
    padding-left: 0.625rem;
  }

  .mobile\:last\:pl-3\.5:last-child{
    padding-left: 0.875rem;
  }

  .mobile\:text-left{
    text-align: left;
  }

  .mobile\:text-center{
    text-align: center;
  }

  .mobile\:text-right{
    text-align: right;
  }

  .mobile\:text-justify{
    text-align: justify;
  }

  .mobile\:align-baseline{
    vertical-align: baseline;
  }

  .mobile\:align-top{
    vertical-align: top;
  }

  .mobile\:align-middle{
    vertical-align: middle;
  }

  .mobile\:align-bottom{
    vertical-align: bottom;
  }

  .mobile\:align-text-top{
    vertical-align: text-top;
  }

  .mobile\:align-text-bottom{
    vertical-align: text-bottom;
  }

  .mobile\:font-klint-bold{
    font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
  }

  .mobile\:font-klint-regular{
    font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
  }

  .mobile\:text-xs{
    font-size: 0.75rem;
    line-height: 1rem;
  }

  .mobile\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .mobile\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .mobile\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .mobile\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .mobile\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .mobile\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .mobile\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .mobile\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }

  .mobile\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }

  .mobile\:text-7xl{
    font-size: 5rem;
  }

  .mobile\:text-8xl{
    font-size: 6rem;
  }

  .mobile\:text-9xl{
    font-size: 7rem;
  }

  .mobile\:font-thin{
    font-weight: 100;
  }

  .mobile\:font-extralight{
    font-weight: 200;
  }

  .mobile\:font-light{
    font-weight: 300;
  }

  .mobile\:font-normal{
    font-weight: 400;
  }

  .mobile\:font-medium{
    font-weight: 500;
  }

  .mobile\:font-semibold{
    font-weight: 600;
  }

  .mobile\:font-bold{
    font-weight: 700;
  }

  .mobile\:font-extrabold{
    font-weight: 800;
  }

  .mobile\:font-black{
    font-weight: 900;
  }

  .mobile\:uppercase{
    text-transform: uppercase;
  }

  .mobile\:lowercase{
    text-transform: lowercase;
  }

  .mobile\:capitalize{
    text-transform: capitalize;
  }

  .mobile\:normal-case{
    text-transform: none;
  }

  .mobile\:italic{
    font-style: italic;
  }

  .mobile\:not-italic{
    font-style: normal;
  }

  .mobile\:ordinal, .mobile\:slashed-zero, .mobile\:lining-nums, .mobile\:oldstyle-nums, .mobile\:proportional-nums, .mobile\:tabular-nums, .mobile\:diagonal-fractions, .mobile\:stacked-fractions{
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/);
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  }

  .mobile\:normal-nums{
    font-variant-numeric: normal;
  }

  .mobile\:ordinal{
    --tw-ordinal: ordinal;
  }

  .mobile\:slashed-zero{
    --tw-slashed-zero: slashed-zero;
  }

  .mobile\:lining-nums{
    --tw-numeric-figure: lining-nums;
  }

  .mobile\:oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums;
  }

  .mobile\:proportional-nums{
    --tw-numeric-spacing: proportional-nums;
  }

  .mobile\:tabular-nums{
    --tw-numeric-spacing: tabular-nums;
  }

  .mobile\:diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions;
  }

  .mobile\:stacked-fractions{
    --tw-numeric-fraction: stacked-fractions;
  }

  .mobile\:leading-3{
    line-height: .75rem;
  }

  .mobile\:leading-4{
    line-height: 1rem;
  }

  .mobile\:leading-5{
    line-height: 1.25rem;
  }

  .mobile\:leading-6{
    line-height: 1.5rem;
  }

  .mobile\:leading-7{
    line-height: 1.75rem;
  }

  .mobile\:leading-8{
    line-height: 2rem;
  }

  .mobile\:leading-9{
    line-height: 2.25rem;
  }

  .mobile\:leading-10{
    line-height: 2.5rem;
  }

  .mobile\:leading-none{
    line-height: 1;
  }

  .mobile\:leading-tight{
    line-height: 1.25;
  }

  .mobile\:leading-snug{
    line-height: 1.375;
  }

  .mobile\:leading-normal{
    line-height: 1.5;
  }

  .mobile\:leading-relaxed{
    line-height: 1.625;
  }

  .mobile\:leading-loose{
    line-height: 2;
  }

  .mobile\:tracking-tighter{
    letter-spacing: -0.05em;
  }

  .mobile\:tracking-tight{
    letter-spacing: -0.025em;
  }

  .mobile\:tracking-normal{
    letter-spacing: 0em;
  }

  .mobile\:tracking-wide{
    letter-spacing: 0.025em;
  }

  .mobile\:tracking-wider{
    letter-spacing: 0.05em;
  }

  .mobile\:tracking-widest{
    letter-spacing: 0.1em;
  }

  .mobile\:text-transparent{
    color: transparent;
  }

  .mobile\:text-current{
    color: currentColor;
  }

  .mobile\:text-black{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:text-white{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .mobile\:text-gray-50{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .mobile\:text-gray-100{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .mobile\:text-gray-200{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .mobile\:text-gray-300{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .mobile\:text-gray-400{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .mobile\:text-gray-500{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .mobile\:text-gray-600{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .mobile\:text-gray-700{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .mobile\:text-gray-800{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .mobile\:text-gray-900{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .mobile\:text-red-50{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .mobile\:text-red-100{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .mobile\:text-red-200{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .mobile\:text-red-300{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .mobile\:text-red-400{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .mobile\:text-red-500{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .mobile\:text-red-600{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .mobile\:text-red-700{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .mobile\:text-red-800{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .mobile\:text-red-900{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .mobile\:text-red-light{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .mobile\:text-red-default{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:text-red-dark{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:text-yellow-50{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .mobile\:text-yellow-100{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .mobile\:text-yellow-200{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .mobile\:text-yellow-300{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .mobile\:text-yellow-400{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .mobile\:text-yellow-500{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .mobile\:text-yellow-600{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .mobile\:text-yellow-700{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .mobile\:text-yellow-800{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .mobile\:text-yellow-900{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .mobile\:text-green-50{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .mobile\:text-green-100{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .mobile\:text-green-200{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .mobile\:text-green-300{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .mobile\:text-green-400{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .mobile\:text-green-500{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .mobile\:text-green-600{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .mobile\:text-green-700{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .mobile\:text-green-800{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .mobile\:text-green-900{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .mobile\:text-green-light{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .mobile\:text-green-default{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .mobile\:text-green-dark{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .mobile\:text-blue-50{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .mobile\:text-blue-100{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .mobile\:text-blue-200{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .mobile\:text-blue-300{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .mobile\:text-blue-400{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .mobile\:text-blue-500{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .mobile\:text-blue-600{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .mobile\:text-blue-700{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .mobile\:text-blue-800{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .mobile\:text-blue-900{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .mobile\:text-indigo-50{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .mobile\:text-indigo-100{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .mobile\:text-indigo-200{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .mobile\:text-indigo-300{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .mobile\:text-indigo-400{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .mobile\:text-indigo-500{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .mobile\:text-indigo-600{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .mobile\:text-indigo-700{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .mobile\:text-indigo-800{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .mobile\:text-indigo-900{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .mobile\:text-purple-50{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .mobile\:text-purple-100{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .mobile\:text-purple-200{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .mobile\:text-purple-300{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .mobile\:text-purple-400{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .mobile\:text-purple-500{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .mobile\:text-purple-600{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .mobile\:text-purple-700{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .mobile\:text-purple-800{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .mobile\:text-purple-900{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .mobile\:text-pink-50{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .mobile\:text-pink-100{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .mobile\:text-pink-200{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .mobile\:text-pink-300{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .mobile\:text-pink-400{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .mobile\:text-pink-500{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .mobile\:text-pink-600{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .mobile\:text-pink-700{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .mobile\:text-pink-800{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .mobile\:text-pink-900{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .mobile\:text-brown-light{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .mobile\:text-brown-semi{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .mobile\:text-brown-default{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .mobile\:text-brown-dark{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .mobile\:text-success-light{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .mobile\:text-success-default{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .mobile\:text-success-dark{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .mobile\:text-error-light{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .mobile\:text-error-default{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .mobile\:text-error-dark{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:text-navigation-dark{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-transparent{
    color: transparent;
  }

  .group:hover .mobile\:group-hover\:text-current{
    color: currentColor;
  }

  .group:hover .mobile\:group-hover\:text-black{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-white{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-gray-50{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-gray-100{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-gray-200{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-gray-300{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-gray-400{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-gray-500{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-gray-600{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-gray-700{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-gray-800{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-gray-900{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-50{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-100{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-200{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-300{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-400{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-500{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-600{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-700{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-800{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-900{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-light{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-default{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-red-dark{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-yellow-50{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-yellow-100{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-yellow-200{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-yellow-300{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-yellow-400{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-yellow-500{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-yellow-600{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-yellow-700{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-yellow-800{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-yellow-900{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-50{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-100{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-200{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-300{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-400{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-500{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-600{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-700{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-800{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-900{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-light{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-default{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-green-dark{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-blue-50{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-blue-100{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-blue-200{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-blue-300{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-blue-400{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-blue-500{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-blue-600{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-blue-700{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-blue-800{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-blue-900{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-indigo-50{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-indigo-100{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-indigo-200{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-indigo-300{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-indigo-400{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-indigo-500{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-indigo-600{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-indigo-700{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-indigo-800{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-indigo-900{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-purple-50{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-purple-100{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-purple-200{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-purple-300{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-purple-400{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-purple-500{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-purple-600{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-purple-700{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-purple-800{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-purple-900{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-pink-50{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-pink-100{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-pink-200{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-pink-300{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-pink-400{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-pink-500{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-pink-600{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-pink-700{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-pink-800{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-pink-900{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-brown-light{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-brown-semi{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-brown-default{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-brown-dark{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-success-light{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-success-default{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-success-dark{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-error-light{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-error-default{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-error-dark{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .group:hover .mobile\:group-hover\:text-navigation-dark{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-transparent:focus-within{
    color: transparent;
  }

  .mobile\:focus-within\:text-current:focus-within{
    color: currentColor;
  }

  .mobile\:focus-within\:text-black:focus-within{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-white:focus-within{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-gray-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-gray-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-gray-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-gray-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-gray-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-gray-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-gray-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-gray-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-gray-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-gray-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-red-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-yellow-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-yellow-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-yellow-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-yellow-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-yellow-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-yellow-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-yellow-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-yellow-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-yellow-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-yellow-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-green-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-blue-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-blue-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-blue-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-blue-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-blue-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-blue-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-blue-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-blue-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-blue-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-blue-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-indigo-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-indigo-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-indigo-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-indigo-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-indigo-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-indigo-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-indigo-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-indigo-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-indigo-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-indigo-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-purple-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-purple-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-purple-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-purple-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-purple-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-purple-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-purple-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-purple-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-purple-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-purple-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-pink-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-pink-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-pink-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-pink-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-pink-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-pink-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-pink-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-pink-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-pink-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-pink-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-brown-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-brown-semi:focus-within{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-brown-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-brown-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-success-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-success-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-success-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-error-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-error-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-error-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:focus-within\:text-navigation-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-transparent:hover{
    color: transparent;
  }

  .mobile\:hover\:text-current:hover{
    color: currentColor;
  }

  .mobile\:hover\:text-black:hover{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-white:hover{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-gray-50:hover{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-gray-100:hover{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-gray-200:hover{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-gray-300:hover{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-gray-400:hover{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-gray-500:hover{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-gray-600:hover{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-gray-700:hover{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-gray-800:hover{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-gray-900:hover{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-50:hover{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-100:hover{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-200:hover{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-300:hover{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-400:hover{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-500:hover{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-600:hover{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-700:hover{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-800:hover{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-900:hover{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-light:hover{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-default:hover{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-red-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-yellow-50:hover{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-yellow-100:hover{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-yellow-200:hover{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-yellow-300:hover{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-yellow-400:hover{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-yellow-500:hover{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-yellow-600:hover{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-yellow-700:hover{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-yellow-800:hover{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-yellow-900:hover{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-50:hover{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-100:hover{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-200:hover{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-300:hover{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-400:hover{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-500:hover{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-600:hover{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-700:hover{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-800:hover{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-900:hover{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-light:hover{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-default:hover{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-green-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-blue-50:hover{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-blue-100:hover{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-blue-200:hover{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-blue-300:hover{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-blue-400:hover{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-blue-500:hover{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-blue-600:hover{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-blue-700:hover{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-blue-800:hover{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-blue-900:hover{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-indigo-50:hover{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-indigo-100:hover{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-indigo-200:hover{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-indigo-300:hover{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-indigo-400:hover{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-indigo-500:hover{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-indigo-600:hover{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-indigo-700:hover{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-indigo-800:hover{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-indigo-900:hover{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-purple-50:hover{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-purple-100:hover{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-purple-200:hover{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-purple-300:hover{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-purple-400:hover{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-purple-500:hover{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-purple-600:hover{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-purple-700:hover{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-purple-800:hover{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-purple-900:hover{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-pink-50:hover{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-pink-100:hover{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-pink-200:hover{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-pink-300:hover{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-pink-400:hover{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-pink-500:hover{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-pink-600:hover{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-pink-700:hover{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-pink-800:hover{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-pink-900:hover{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-brown-light:hover{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-brown-semi:hover{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-brown-default:hover{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-brown-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-success-light:hover{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-success-default:hover{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-success-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-error-light:hover{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-error-default:hover{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-error-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:hover\:text-navigation-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-transparent:focus{
    color: transparent;
  }

  .mobile\:focus\:text-current:focus{
    color: currentColor;
  }

  .mobile\:focus\:text-black:focus{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-white:focus{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-gray-50:focus{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-gray-100:focus{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-gray-200:focus{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-gray-300:focus{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-gray-400:focus{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-gray-500:focus{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-gray-600:focus{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-gray-700:focus{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-gray-800:focus{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-gray-900:focus{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-50:focus{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-100:focus{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-200:focus{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-300:focus{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-400:focus{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-500:focus{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-600:focus{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-700:focus{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-800:focus{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-900:focus{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-light:focus{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-default:focus{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-red-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-yellow-50:focus{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-yellow-100:focus{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-yellow-200:focus{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-yellow-300:focus{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-yellow-400:focus{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-yellow-500:focus{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-yellow-600:focus{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-yellow-700:focus{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-yellow-800:focus{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-yellow-900:focus{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-50:focus{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-100:focus{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-200:focus{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-300:focus{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-400:focus{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-500:focus{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-600:focus{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-700:focus{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-800:focus{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-900:focus{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-light:focus{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-default:focus{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-green-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-blue-50:focus{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-blue-100:focus{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-blue-200:focus{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-blue-300:focus{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-blue-400:focus{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-blue-500:focus{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-blue-600:focus{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-blue-700:focus{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-blue-800:focus{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-blue-900:focus{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-indigo-50:focus{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-indigo-100:focus{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-indigo-200:focus{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-indigo-300:focus{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-indigo-400:focus{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-indigo-500:focus{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-indigo-600:focus{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-indigo-700:focus{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-indigo-800:focus{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-indigo-900:focus{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-purple-50:focus{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-purple-100:focus{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-purple-200:focus{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-purple-300:focus{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-purple-400:focus{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-purple-500:focus{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-purple-600:focus{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-purple-700:focus{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-purple-800:focus{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-purple-900:focus{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-pink-50:focus{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-pink-100:focus{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-pink-200:focus{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-pink-300:focus{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-pink-400:focus{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-pink-500:focus{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-pink-600:focus{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-pink-700:focus{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-pink-800:focus{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-pink-900:focus{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-brown-light:focus{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-brown-semi:focus{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-brown-default:focus{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-brown-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-success-light:focus{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-success-default:focus{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-success-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-error-light:focus{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-error-default:focus{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-error-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .mobile\:focus\:text-navigation-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .mobile\:text-opacity-0{
    --tw-text-opacity: 0;
  }

  .mobile\:text-opacity-5{
    --tw-text-opacity: 0.05;
  }

  .mobile\:text-opacity-10{
    --tw-text-opacity: 0.1;
  }

  .mobile\:text-opacity-20{
    --tw-text-opacity: 0.2;
  }

  .mobile\:text-opacity-25{
    --tw-text-opacity: 0.25;
  }

  .mobile\:text-opacity-30{
    --tw-text-opacity: 0.3;
  }

  .mobile\:text-opacity-40{
    --tw-text-opacity: 0.4;
  }

  .mobile\:text-opacity-50{
    --tw-text-opacity: 0.5;
  }

  .mobile\:text-opacity-60{
    --tw-text-opacity: 0.6;
  }

  .mobile\:text-opacity-70{
    --tw-text-opacity: 0.7;
  }

  .mobile\:text-opacity-75{
    --tw-text-opacity: 0.75;
  }

  .mobile\:text-opacity-80{
    --tw-text-opacity: 0.8;
  }

  .mobile\:text-opacity-90{
    --tw-text-opacity: 0.9;
  }

  .mobile\:text-opacity-95{
    --tw-text-opacity: 0.95;
  }

  .mobile\:text-opacity-100{
    --tw-text-opacity: 1;
  }

  .group:hover .mobile\:group-hover\:text-opacity-0{
    --tw-text-opacity: 0;
  }

  .group:hover .mobile\:group-hover\:text-opacity-5{
    --tw-text-opacity: 0.05;
  }

  .group:hover .mobile\:group-hover\:text-opacity-10{
    --tw-text-opacity: 0.1;
  }

  .group:hover .mobile\:group-hover\:text-opacity-20{
    --tw-text-opacity: 0.2;
  }

  .group:hover .mobile\:group-hover\:text-opacity-25{
    --tw-text-opacity: 0.25;
  }

  .group:hover .mobile\:group-hover\:text-opacity-30{
    --tw-text-opacity: 0.3;
  }

  .group:hover .mobile\:group-hover\:text-opacity-40{
    --tw-text-opacity: 0.4;
  }

  .group:hover .mobile\:group-hover\:text-opacity-50{
    --tw-text-opacity: 0.5;
  }

  .group:hover .mobile\:group-hover\:text-opacity-60{
    --tw-text-opacity: 0.6;
  }

  .group:hover .mobile\:group-hover\:text-opacity-70{
    --tw-text-opacity: 0.7;
  }

  .group:hover .mobile\:group-hover\:text-opacity-75{
    --tw-text-opacity: 0.75;
  }

  .group:hover .mobile\:group-hover\:text-opacity-80{
    --tw-text-opacity: 0.8;
  }

  .group:hover .mobile\:group-hover\:text-opacity-90{
    --tw-text-opacity: 0.9;
  }

  .group:hover .mobile\:group-hover\:text-opacity-95{
    --tw-text-opacity: 0.95;
  }

  .group:hover .mobile\:group-hover\:text-opacity-100{
    --tw-text-opacity: 1;
  }

  .mobile\:focus-within\:text-opacity-0:focus-within{
    --tw-text-opacity: 0;
  }

  .mobile\:focus-within\:text-opacity-5:focus-within{
    --tw-text-opacity: 0.05;
  }

  .mobile\:focus-within\:text-opacity-10:focus-within{
    --tw-text-opacity: 0.1;
  }

  .mobile\:focus-within\:text-opacity-20:focus-within{
    --tw-text-opacity: 0.2;
  }

  .mobile\:focus-within\:text-opacity-25:focus-within{
    --tw-text-opacity: 0.25;
  }

  .mobile\:focus-within\:text-opacity-30:focus-within{
    --tw-text-opacity: 0.3;
  }

  .mobile\:focus-within\:text-opacity-40:focus-within{
    --tw-text-opacity: 0.4;
  }

  .mobile\:focus-within\:text-opacity-50:focus-within{
    --tw-text-opacity: 0.5;
  }

  .mobile\:focus-within\:text-opacity-60:focus-within{
    --tw-text-opacity: 0.6;
  }

  .mobile\:focus-within\:text-opacity-70:focus-within{
    --tw-text-opacity: 0.7;
  }

  .mobile\:focus-within\:text-opacity-75:focus-within{
    --tw-text-opacity: 0.75;
  }

  .mobile\:focus-within\:text-opacity-80:focus-within{
    --tw-text-opacity: 0.8;
  }

  .mobile\:focus-within\:text-opacity-90:focus-within{
    --tw-text-opacity: 0.9;
  }

  .mobile\:focus-within\:text-opacity-95:focus-within{
    --tw-text-opacity: 0.95;
  }

  .mobile\:focus-within\:text-opacity-100:focus-within{
    --tw-text-opacity: 1;
  }

  .mobile\:hover\:text-opacity-0:hover{
    --tw-text-opacity: 0;
  }

  .mobile\:hover\:text-opacity-5:hover{
    --tw-text-opacity: 0.05;
  }

  .mobile\:hover\:text-opacity-10:hover{
    --tw-text-opacity: 0.1;
  }

  .mobile\:hover\:text-opacity-20:hover{
    --tw-text-opacity: 0.2;
  }

  .mobile\:hover\:text-opacity-25:hover{
    --tw-text-opacity: 0.25;
  }

  .mobile\:hover\:text-opacity-30:hover{
    --tw-text-opacity: 0.3;
  }

  .mobile\:hover\:text-opacity-40:hover{
    --tw-text-opacity: 0.4;
  }

  .mobile\:hover\:text-opacity-50:hover{
    --tw-text-opacity: 0.5;
  }

  .mobile\:hover\:text-opacity-60:hover{
    --tw-text-opacity: 0.6;
  }

  .mobile\:hover\:text-opacity-70:hover{
    --tw-text-opacity: 0.7;
  }

  .mobile\:hover\:text-opacity-75:hover{
    --tw-text-opacity: 0.75;
  }

  .mobile\:hover\:text-opacity-80:hover{
    --tw-text-opacity: 0.8;
  }

  .mobile\:hover\:text-opacity-90:hover{
    --tw-text-opacity: 0.9;
  }

  .mobile\:hover\:text-opacity-95:hover{
    --tw-text-opacity: 0.95;
  }

  .mobile\:hover\:text-opacity-100:hover{
    --tw-text-opacity: 1;
  }

  .mobile\:focus\:text-opacity-0:focus{
    --tw-text-opacity: 0;
  }

  .mobile\:focus\:text-opacity-5:focus{
    --tw-text-opacity: 0.05;
  }

  .mobile\:focus\:text-opacity-10:focus{
    --tw-text-opacity: 0.1;
  }

  .mobile\:focus\:text-opacity-20:focus{
    --tw-text-opacity: 0.2;
  }

  .mobile\:focus\:text-opacity-25:focus{
    --tw-text-opacity: 0.25;
  }

  .mobile\:focus\:text-opacity-30:focus{
    --tw-text-opacity: 0.3;
  }

  .mobile\:focus\:text-opacity-40:focus{
    --tw-text-opacity: 0.4;
  }

  .mobile\:focus\:text-opacity-50:focus{
    --tw-text-opacity: 0.5;
  }

  .mobile\:focus\:text-opacity-60:focus{
    --tw-text-opacity: 0.6;
  }

  .mobile\:focus\:text-opacity-70:focus{
    --tw-text-opacity: 0.7;
  }

  .mobile\:focus\:text-opacity-75:focus{
    --tw-text-opacity: 0.75;
  }

  .mobile\:focus\:text-opacity-80:focus{
    --tw-text-opacity: 0.8;
  }

  .mobile\:focus\:text-opacity-90:focus{
    --tw-text-opacity: 0.9;
  }

  .mobile\:focus\:text-opacity-95:focus{
    --tw-text-opacity: 0.95;
  }

  .mobile\:focus\:text-opacity-100:focus{
    --tw-text-opacity: 1;
  }

  .mobile\:underline{
    text-decoration: underline;
  }

  .mobile\:line-through{
    text-decoration: line-through;
  }

  .mobile\:no-underline{
    text-decoration: none;
  }

  .group:hover .mobile\:group-hover\:underline{
    text-decoration: underline;
  }

  .group:hover .mobile\:group-hover\:line-through{
    text-decoration: line-through;
  }

  .group:hover .mobile\:group-hover\:no-underline{
    text-decoration: none;
  }

  .mobile\:focus-within\:underline:focus-within{
    text-decoration: underline;
  }

  .mobile\:focus-within\:line-through:focus-within{
    text-decoration: line-through;
  }

  .mobile\:focus-within\:no-underline:focus-within{
    text-decoration: none;
  }

  .mobile\:hover\:underline:hover{
    text-decoration: underline;
  }

  .mobile\:hover\:line-through:hover{
    text-decoration: line-through;
  }

  .mobile\:hover\:no-underline:hover{
    text-decoration: none;
  }

  .mobile\:focus\:underline:focus{
    text-decoration: underline;
  }

  .mobile\:focus\:line-through:focus{
    text-decoration: line-through;
  }

  .mobile\:focus\:no-underline:focus{
    text-decoration: none;
  }

  .mobile\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .mobile\:subpixel-antialiased{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .mobile\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .mobile\:placeholder-transparent:-ms-input-placeholder{
    color: transparent;
  }

  .mobile\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .mobile\:placeholder-current::-moz-placeholder{
    color: currentColor;
  }

  .mobile\:placeholder-current:-ms-input-placeholder{
    color: currentColor;
  }

  .mobile\:placeholder-current::placeholder{
    color: currentColor;
  }

  .mobile\:placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-black:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-black::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-white:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-white::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-gray-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-red-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-yellow-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-green-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-blue-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-indigo-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-purple-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-pink-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-brown-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-brown-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-brown-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-brown-semi::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-brown-semi:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-brown-semi::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-brown-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-brown-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-brown-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-brown-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-brown-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-brown-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-success-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-success-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-success-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-success-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-success-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-success-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-success-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-success-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-success-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-error-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-error-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-error-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-error-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-error-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-error-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-error-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-error-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-error-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-navigation-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-navigation-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-navigation-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color: transparent;
  }

  .mobile\:focus\:placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent;
  }

  .mobile\:focus\:placeholder-transparent:focus::placeholder{
    color: transparent;
  }

  .mobile\:focus\:placeholder-current:focus::-moz-placeholder{
    color: currentColor;
  }

  .mobile\:focus\:placeholder-current:focus:-ms-input-placeholder{
    color: currentColor;
  }

  .mobile\:focus\:placeholder-current:focus::placeholder{
    color: currentColor;
  }

  .mobile\:focus\:placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-black:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-white:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-gray-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-red-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-yellow-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-green-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-blue-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-indigo-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-purple-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-pink-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-brown-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-brown-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-brown-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-brown-semi:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-brown-semi:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-brown-semi:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-brown-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-brown-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-brown-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-brown-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-brown-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-brown-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-success-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-success-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-success-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-success-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-success-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-success-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-success-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-success-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-success-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-error-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-error-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-error-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-error-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-error-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-error-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-error-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-error-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-error-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-navigation-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-navigation-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:focus\:placeholder-navigation-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .mobile\:placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0;
  }

  .mobile\:placeholder-opacity-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 0;
  }

  .mobile\:placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0;
  }

  .mobile\:placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .mobile\:placeholder-opacity-5:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .mobile\:placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .mobile\:placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .mobile\:placeholder-opacity-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .mobile\:placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .mobile\:placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .mobile\:placeholder-opacity-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .mobile\:placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .mobile\:placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .mobile\:placeholder-opacity-25:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .mobile\:placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .mobile\:placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .mobile\:placeholder-opacity-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .mobile\:placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .mobile\:placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .mobile\:placeholder-opacity-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .mobile\:placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .mobile\:placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .mobile\:placeholder-opacity-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .mobile\:placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .mobile\:placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .mobile\:placeholder-opacity-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .mobile\:placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .mobile\:placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .mobile\:placeholder-opacity-70:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .mobile\:placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .mobile\:placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .mobile\:placeholder-opacity-75:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .mobile\:placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .mobile\:placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .mobile\:placeholder-opacity-80:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .mobile\:placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .mobile\:placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .mobile\:placeholder-opacity-90:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .mobile\:placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .mobile\:placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .mobile\:placeholder-opacity-95:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .mobile\:placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .mobile\:placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
  }

  .mobile\:placeholder-opacity-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
  }

  .mobile\:placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1;
  }

  .mobile\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0;
  }

  .mobile\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0;
  }

  .mobile\:focus\:placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0;
  }

  .mobile\:focus\:placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .mobile\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .mobile\:focus\:placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .mobile\:focus\:placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .mobile\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .mobile\:focus\:placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .mobile\:focus\:placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .mobile\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .mobile\:focus\:placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .mobile\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .mobile\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .mobile\:focus\:placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .mobile\:focus\:placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .mobile\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .mobile\:focus\:placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .mobile\:focus\:placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .mobile\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .mobile\:focus\:placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .mobile\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .mobile\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .mobile\:focus\:placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .mobile\:focus\:placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .mobile\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .mobile\:focus\:placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .mobile\:focus\:placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .mobile\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .mobile\:focus\:placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .mobile\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .mobile\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .mobile\:focus\:placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .mobile\:focus\:placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .mobile\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .mobile\:focus\:placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .mobile\:focus\:placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .mobile\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .mobile\:focus\:placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .mobile\:focus\:placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .mobile\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .mobile\:focus\:placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .mobile\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
  }

  .mobile\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
  }

  .mobile\:focus\:placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
  }

  .mobile\:opacity-0{
    opacity: 0;
  }

  .mobile\:opacity-5{
    opacity: 0.05;
  }

  .mobile\:opacity-10{
    opacity: 0.1;
  }

  .mobile\:opacity-20{
    opacity: 0.2;
  }

  .mobile\:opacity-25{
    opacity: 0.25;
  }

  .mobile\:opacity-30{
    opacity: 0.3;
  }

  .mobile\:opacity-40{
    opacity: 0.4;
  }

  .mobile\:opacity-50{
    opacity: 0.5;
  }

  .mobile\:opacity-60{
    opacity: 0.6;
  }

  .mobile\:opacity-70{
    opacity: 0.7;
  }

  .mobile\:opacity-75{
    opacity: 0.75;
  }

  .mobile\:opacity-80{
    opacity: 0.8;
  }

  .mobile\:opacity-90{
    opacity: 0.9;
  }

  .mobile\:opacity-95{
    opacity: 0.95;
  }

  .mobile\:opacity-100{
    opacity: 1;
  }

  .group:hover .mobile\:group-hover\:opacity-0{
    opacity: 0;
  }

  .group:hover .mobile\:group-hover\:opacity-5{
    opacity: 0.05;
  }

  .group:hover .mobile\:group-hover\:opacity-10{
    opacity: 0.1;
  }

  .group:hover .mobile\:group-hover\:opacity-20{
    opacity: 0.2;
  }

  .group:hover .mobile\:group-hover\:opacity-25{
    opacity: 0.25;
  }

  .group:hover .mobile\:group-hover\:opacity-30{
    opacity: 0.3;
  }

  .group:hover .mobile\:group-hover\:opacity-40{
    opacity: 0.4;
  }

  .group:hover .mobile\:group-hover\:opacity-50{
    opacity: 0.5;
  }

  .group:hover .mobile\:group-hover\:opacity-60{
    opacity: 0.6;
  }

  .group:hover .mobile\:group-hover\:opacity-70{
    opacity: 0.7;
  }

  .group:hover .mobile\:group-hover\:opacity-75{
    opacity: 0.75;
  }

  .group:hover .mobile\:group-hover\:opacity-80{
    opacity: 0.8;
  }

  .group:hover .mobile\:group-hover\:opacity-90{
    opacity: 0.9;
  }

  .group:hover .mobile\:group-hover\:opacity-95{
    opacity: 0.95;
  }

  .group:hover .mobile\:group-hover\:opacity-100{
    opacity: 1;
  }

  .mobile\:focus-within\:opacity-0:focus-within{
    opacity: 0;
  }

  .mobile\:focus-within\:opacity-5:focus-within{
    opacity: 0.05;
  }

  .mobile\:focus-within\:opacity-10:focus-within{
    opacity: 0.1;
  }

  .mobile\:focus-within\:opacity-20:focus-within{
    opacity: 0.2;
  }

  .mobile\:focus-within\:opacity-25:focus-within{
    opacity: 0.25;
  }

  .mobile\:focus-within\:opacity-30:focus-within{
    opacity: 0.3;
  }

  .mobile\:focus-within\:opacity-40:focus-within{
    opacity: 0.4;
  }

  .mobile\:focus-within\:opacity-50:focus-within{
    opacity: 0.5;
  }

  .mobile\:focus-within\:opacity-60:focus-within{
    opacity: 0.6;
  }

  .mobile\:focus-within\:opacity-70:focus-within{
    opacity: 0.7;
  }

  .mobile\:focus-within\:opacity-75:focus-within{
    opacity: 0.75;
  }

  .mobile\:focus-within\:opacity-80:focus-within{
    opacity: 0.8;
  }

  .mobile\:focus-within\:opacity-90:focus-within{
    opacity: 0.9;
  }

  .mobile\:focus-within\:opacity-95:focus-within{
    opacity: 0.95;
  }

  .mobile\:focus-within\:opacity-100:focus-within{
    opacity: 1;
  }

  .mobile\:hover\:opacity-0:hover{
    opacity: 0;
  }

  .mobile\:hover\:opacity-5:hover{
    opacity: 0.05;
  }

  .mobile\:hover\:opacity-10:hover{
    opacity: 0.1;
  }

  .mobile\:hover\:opacity-20:hover{
    opacity: 0.2;
  }

  .mobile\:hover\:opacity-25:hover{
    opacity: 0.25;
  }

  .mobile\:hover\:opacity-30:hover{
    opacity: 0.3;
  }

  .mobile\:hover\:opacity-40:hover{
    opacity: 0.4;
  }

  .mobile\:hover\:opacity-50:hover{
    opacity: 0.5;
  }

  .mobile\:hover\:opacity-60:hover{
    opacity: 0.6;
  }

  .mobile\:hover\:opacity-70:hover{
    opacity: 0.7;
  }

  .mobile\:hover\:opacity-75:hover{
    opacity: 0.75;
  }

  .mobile\:hover\:opacity-80:hover{
    opacity: 0.8;
  }

  .mobile\:hover\:opacity-90:hover{
    opacity: 0.9;
  }

  .mobile\:hover\:opacity-95:hover{
    opacity: 0.95;
  }

  .mobile\:hover\:opacity-100:hover{
    opacity: 1;
  }

  .mobile\:focus\:opacity-0:focus{
    opacity: 0;
  }

  .mobile\:focus\:opacity-5:focus{
    opacity: 0.05;
  }

  .mobile\:focus\:opacity-10:focus{
    opacity: 0.1;
  }

  .mobile\:focus\:opacity-20:focus{
    opacity: 0.2;
  }

  .mobile\:focus\:opacity-25:focus{
    opacity: 0.25;
  }

  .mobile\:focus\:opacity-30:focus{
    opacity: 0.3;
  }

  .mobile\:focus\:opacity-40:focus{
    opacity: 0.4;
  }

  .mobile\:focus\:opacity-50:focus{
    opacity: 0.5;
  }

  .mobile\:focus\:opacity-60:focus{
    opacity: 0.6;
  }

  .mobile\:focus\:opacity-70:focus{
    opacity: 0.7;
  }

  .mobile\:focus\:opacity-75:focus{
    opacity: 0.75;
  }

  .mobile\:focus\:opacity-80:focus{
    opacity: 0.8;
  }

  .mobile\:focus\:opacity-90:focus{
    opacity: 0.9;
  }

  .mobile\:focus\:opacity-95:focus{
    opacity: 0.95;
  }

  .mobile\:focus\:opacity-100:focus{
    opacity: 1;
  }

  .mobile\:bg-blend-normal{
    background-blend-mode: normal;
  }

  .mobile\:bg-blend-multiply{
    background-blend-mode: multiply;
  }

  .mobile\:bg-blend-screen{
    background-blend-mode: screen;
  }

  .mobile\:bg-blend-overlay{
    background-blend-mode: overlay;
  }

  .mobile\:bg-blend-darken{
    background-blend-mode: darken;
  }

  .mobile\:bg-blend-lighten{
    background-blend-mode: lighten;
  }

  .mobile\:bg-blend-color-dodge{
    background-blend-mode: color-dodge;
  }

  .mobile\:bg-blend-color-burn{
    background-blend-mode: color-burn;
  }

  .mobile\:bg-blend-hard-light{
    background-blend-mode: hard-light;
  }

  .mobile\:bg-blend-soft-light{
    background-blend-mode: soft-light;
  }

  .mobile\:bg-blend-difference{
    background-blend-mode: difference;
  }

  .mobile\:bg-blend-exclusion{
    background-blend-mode: exclusion;
  }

  .mobile\:bg-blend-hue{
    background-blend-mode: hue;
  }

  .mobile\:bg-blend-saturation{
    background-blend-mode: saturation;
  }

  .mobile\:bg-blend-color{
    background-blend-mode: color;
  }

  .mobile\:bg-blend-luminosity{
    background-blend-mode: luminosity;
  }

  .mobile\:mix-blend-normal{
    mix-blend-mode: normal;
  }

  .mobile\:mix-blend-multiply{
    mix-blend-mode: multiply;
  }

  .mobile\:mix-blend-screen{
    mix-blend-mode: screen;
  }

  .mobile\:mix-blend-overlay{
    mix-blend-mode: overlay;
  }

  .mobile\:mix-blend-darken{
    mix-blend-mode: darken;
  }

  .mobile\:mix-blend-lighten{
    mix-blend-mode: lighten;
  }

  .mobile\:mix-blend-color-dodge{
    mix-blend-mode: color-dodge;
  }

  .mobile\:mix-blend-color-burn{
    mix-blend-mode: color-burn;
  }

  .mobile\:mix-blend-hard-light{
    mix-blend-mode: hard-light;
  }

  .mobile\:mix-blend-soft-light{
    mix-blend-mode: soft-light;
  }

  .mobile\:mix-blend-difference{
    mix-blend-mode: difference;
  }

  .mobile\:mix-blend-exclusion{
    mix-blend-mode: exclusion;
  }

  .mobile\:mix-blend-hue{
    mix-blend-mode: hue;
  }

  .mobile\:mix-blend-saturation{
    mix-blend-mode: saturation;
  }

  .mobile\:mix-blend-color{
    mix-blend-mode: color;
  }

  .mobile\:mix-blend-luminosity{
    mix-blend-mode: luminosity;
  }

  .mobile\:shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:shadow-none{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .mobile\:group-hover\:shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .mobile\:group-hover\:shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .mobile\:group-hover\:shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .mobile\:group-hover\:shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .mobile\:group-hover\:shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .mobile\:group-hover\:shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .mobile\:group-hover\:shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .mobile\:group-hover\:shadow-none{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus-within\:shadow-sm:focus-within{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus-within\:shadow:focus-within{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus-within\:shadow-md:focus-within{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus-within\:shadow-lg:focus-within{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus-within\:shadow-xl:focus-within{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus-within\:shadow-2xl:focus-within{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus-within\:shadow-inner:focus-within{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus-within\:shadow-none:focus-within{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:hover\:shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:hover\:shadow:hover{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:hover\:shadow-md:hover{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:hover\:shadow-lg:hover{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:hover\:shadow-xl:hover{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:hover\:shadow-2xl:hover{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:hover\:shadow-inner:hover{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:hover\:shadow-none:hover{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus\:shadow-sm:focus{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus\:shadow:focus{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus\:shadow-md:focus{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus\:shadow-lg:focus{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus\:shadow-xl:focus{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus\:shadow-2xl:focus{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus\:shadow-inner:focus{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:focus\:shadow-none:focus{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .mobile\:outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .mobile\:outline-white{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .mobile\:outline-black{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .mobile\:focus-within\:outline-none:focus-within{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .mobile\:focus-within\:outline-white:focus-within{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .mobile\:focus-within\:outline-black:focus-within{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .mobile\:focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .mobile\:focus\:outline-white:focus{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .mobile\:focus\:outline-black:focus{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .mobile\:ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:ring-2{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:ring-4{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:ring-8{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:focus-within\:ring-0:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:focus-within\:ring-1:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:focus-within\:ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:focus-within\:ring-4:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:focus-within\:ring-8:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:focus-within\:ring:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:focus\:ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:focus\:ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:focus\:ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:focus\:ring-4:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:focus\:ring-8:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:focus\:ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .mobile\:ring-inset{
    --tw-ring-inset: inset;
  }

  .mobile\:focus-within\:ring-inset:focus-within{
    --tw-ring-inset: inset;
  }

  .mobile\:focus\:ring-inset:focus{
    --tw-ring-inset: inset;
  }

  .mobile\:ring-transparent{
    --tw-ring-color: transparent;
  }

  .mobile\:ring-current{
    --tw-ring-color: currentColor;
  }

  .mobile\:ring-black{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
  }

  .mobile\:ring-white{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
  }

  .mobile\:ring-gray-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
  }

  .mobile\:ring-gray-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
  }

  .mobile\:ring-gray-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
  }

  .mobile\:ring-gray-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
  }

  .mobile\:ring-gray-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
  }

  .mobile\:ring-gray-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
  }

  .mobile\:ring-gray-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
  }

  .mobile\:ring-gray-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
  }

  .mobile\:ring-gray-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
  }

  .mobile\:ring-gray-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(234, 122, 122, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 0, 0, var(--tw-ring-opacity));
  }

  .mobile\:ring-red-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .mobile\:ring-yellow-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
  }

  .mobile\:ring-yellow-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
  }

  .mobile\:ring-yellow-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
  }

  .mobile\:ring-yellow-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
  }

  .mobile\:ring-yellow-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
  }

  .mobile\:ring-yellow-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
  }

  .mobile\:ring-yellow-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
  }

  .mobile\:ring-yellow-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
  }

  .mobile\:ring-yellow-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
  }

  .mobile\:ring-yellow-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(181, 209, 185, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .mobile\:ring-green-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(28, 37, 30, var(--tw-ring-opacity));
  }

  .mobile\:ring-blue-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
  }

  .mobile\:ring-blue-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
  }

  .mobile\:ring-blue-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
  }

  .mobile\:ring-blue-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
  }

  .mobile\:ring-blue-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
  }

  .mobile\:ring-blue-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
  }

  .mobile\:ring-blue-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
  }

  .mobile\:ring-blue-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
  }

  .mobile\:ring-blue-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
  }

  .mobile\:ring-blue-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
  }

  .mobile\:ring-indigo-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
  }

  .mobile\:ring-indigo-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
  }

  .mobile\:ring-indigo-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
  }

  .mobile\:ring-indigo-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
  }

  .mobile\:ring-indigo-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
  }

  .mobile\:ring-indigo-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
  }

  .mobile\:ring-indigo-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
  }

  .mobile\:ring-indigo-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
  }

  .mobile\:ring-indigo-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
  }

  .mobile\:ring-indigo-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
  }

  .mobile\:ring-purple-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
  }

  .mobile\:ring-purple-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
  }

  .mobile\:ring-purple-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
  }

  .mobile\:ring-purple-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
  }

  .mobile\:ring-purple-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
  }

  .mobile\:ring-purple-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
  }

  .mobile\:ring-purple-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
  }

  .mobile\:ring-purple-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
  }

  .mobile\:ring-purple-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
  }

  .mobile\:ring-purple-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
  }

  .mobile\:ring-pink-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
  }

  .mobile\:ring-pink-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
  }

  .mobile\:ring-pink-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
  }

  .mobile\:ring-pink-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
  }

  .mobile\:ring-pink-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
  }

  .mobile\:ring-pink-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
  }

  .mobile\:ring-pink-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
  }

  .mobile\:ring-pink-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
  }

  .mobile\:ring-pink-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
  }

  .mobile\:ring-pink-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
  }

  .mobile\:ring-brown-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(240, 233, 222, var(--tw-ring-opacity));
  }

  .mobile\:ring-brown-semi{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(222, 214, 202, var(--tw-ring-opacity));
  }

  .mobile\:ring-brown-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(123, 108, 92, var(--tw-ring-opacity));
  }

  .mobile\:ring-brown-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(61, 39, 6, var(--tw-ring-opacity));
  }

  .mobile\:ring-success-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(145, 224, 156, var(--tw-ring-opacity));
  }

  .mobile\:ring-success-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(45, 153, 60, var(--tw-ring-opacity));
  }

  .mobile\:ring-success-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .mobile\:ring-error-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 134, 134, var(--tw-ring-opacity));
  }

  .mobile\:ring-error-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(203, 7, 7, var(--tw-ring-opacity));
  }

  .mobile\:ring-error-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .mobile\:ring-navigation-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 205, 0, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-transparent:focus-within{
    --tw-ring-color: transparent;
  }

  .mobile\:focus-within\:ring-current:focus-within{
    --tw-ring-color: currentColor;
  }

  .mobile\:focus-within\:ring-black:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-white:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-gray-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-gray-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-gray-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-gray-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-gray-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-gray-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-gray-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-gray-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-gray-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-gray-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(234, 122, 122, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 0, 0, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-red-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-yellow-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-yellow-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-yellow-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-yellow-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-yellow-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-yellow-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-yellow-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-yellow-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-yellow-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-yellow-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(181, 209, 185, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-green-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(28, 37, 30, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-blue-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-blue-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-blue-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-blue-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-blue-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-blue-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-blue-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-blue-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-blue-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-blue-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-indigo-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-indigo-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-indigo-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-indigo-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-indigo-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-indigo-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-indigo-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-indigo-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-indigo-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-indigo-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-purple-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-purple-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-purple-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-purple-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-purple-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-purple-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-purple-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-purple-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-purple-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-purple-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-pink-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-pink-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-pink-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-pink-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-pink-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-pink-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-pink-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-pink-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-pink-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-pink-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-brown-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(240, 233, 222, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-brown-semi:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(222, 214, 202, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-brown-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(123, 108, 92, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-brown-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(61, 39, 6, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-success-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(145, 224, 156, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-success-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(45, 153, 60, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-success-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-error-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 134, 134, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-error-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(203, 7, 7, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-error-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .mobile\:focus-within\:ring-navigation-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 205, 0, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-transparent:focus{
    --tw-ring-color: transparent;
  }

  .mobile\:focus\:ring-current:focus{
    --tw-ring-color: currentColor;
  }

  .mobile\:focus\:ring-black:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-white:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-gray-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-gray-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-gray-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-gray-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-gray-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-gray-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-gray-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-gray-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-gray-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-gray-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(234, 122, 122, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 0, 0, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-red-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-yellow-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-yellow-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-yellow-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-yellow-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-yellow-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-yellow-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-yellow-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-yellow-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-yellow-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-yellow-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(181, 209, 185, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-green-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(28, 37, 30, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-blue-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-blue-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-blue-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-blue-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-blue-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-blue-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-blue-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-blue-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-blue-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-blue-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-indigo-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-indigo-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-indigo-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-indigo-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-indigo-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-indigo-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-indigo-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-indigo-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-indigo-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-indigo-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-purple-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-purple-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-purple-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-purple-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-purple-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-purple-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-purple-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-purple-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-purple-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-purple-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-pink-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-pink-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-pink-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-pink-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-pink-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-pink-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-pink-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-pink-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-pink-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-pink-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-brown-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(240, 233, 222, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-brown-semi:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(222, 214, 202, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-brown-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(123, 108, 92, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-brown-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(61, 39, 6, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-success-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(145, 224, 156, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-success-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(45, 153, 60, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-success-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-error-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 134, 134, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-error-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(203, 7, 7, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-error-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .mobile\:focus\:ring-navigation-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 205, 0, var(--tw-ring-opacity));
  }

  .mobile\:ring-opacity-0{
    --tw-ring-opacity: 0;
  }

  .mobile\:ring-opacity-5{
    --tw-ring-opacity: 0.05;
  }

  .mobile\:ring-opacity-10{
    --tw-ring-opacity: 0.1;
  }

  .mobile\:ring-opacity-20{
    --tw-ring-opacity: 0.2;
  }

  .mobile\:ring-opacity-25{
    --tw-ring-opacity: 0.25;
  }

  .mobile\:ring-opacity-30{
    --tw-ring-opacity: 0.3;
  }

  .mobile\:ring-opacity-40{
    --tw-ring-opacity: 0.4;
  }

  .mobile\:ring-opacity-50{
    --tw-ring-opacity: 0.5;
  }

  .mobile\:ring-opacity-60{
    --tw-ring-opacity: 0.6;
  }

  .mobile\:ring-opacity-70{
    --tw-ring-opacity: 0.7;
  }

  .mobile\:ring-opacity-75{
    --tw-ring-opacity: 0.75;
  }

  .mobile\:ring-opacity-80{
    --tw-ring-opacity: 0.8;
  }

  .mobile\:ring-opacity-90{
    --tw-ring-opacity: 0.9;
  }

  .mobile\:ring-opacity-95{
    --tw-ring-opacity: 0.95;
  }

  .mobile\:ring-opacity-100{
    --tw-ring-opacity: 1;
  }

  .mobile\:focus-within\:ring-opacity-0:focus-within{
    --tw-ring-opacity: 0;
  }

  .mobile\:focus-within\:ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05;
  }

  .mobile\:focus-within\:ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1;
  }

  .mobile\:focus-within\:ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2;
  }

  .mobile\:focus-within\:ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25;
  }

  .mobile\:focus-within\:ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3;
  }

  .mobile\:focus-within\:ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4;
  }

  .mobile\:focus-within\:ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5;
  }

  .mobile\:focus-within\:ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6;
  }

  .mobile\:focus-within\:ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7;
  }

  .mobile\:focus-within\:ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75;
  }

  .mobile\:focus-within\:ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8;
  }

  .mobile\:focus-within\:ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9;
  }

  .mobile\:focus-within\:ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95;
  }

  .mobile\:focus-within\:ring-opacity-100:focus-within{
    --tw-ring-opacity: 1;
  }

  .mobile\:focus\:ring-opacity-0:focus{
    --tw-ring-opacity: 0;
  }

  .mobile\:focus\:ring-opacity-5:focus{
    --tw-ring-opacity: 0.05;
  }

  .mobile\:focus\:ring-opacity-10:focus{
    --tw-ring-opacity: 0.1;
  }

  .mobile\:focus\:ring-opacity-20:focus{
    --tw-ring-opacity: 0.2;
  }

  .mobile\:focus\:ring-opacity-25:focus{
    --tw-ring-opacity: 0.25;
  }

  .mobile\:focus\:ring-opacity-30:focus{
    --tw-ring-opacity: 0.3;
  }

  .mobile\:focus\:ring-opacity-40:focus{
    --tw-ring-opacity: 0.4;
  }

  .mobile\:focus\:ring-opacity-50:focus{
    --tw-ring-opacity: 0.5;
  }

  .mobile\:focus\:ring-opacity-60:focus{
    --tw-ring-opacity: 0.6;
  }

  .mobile\:focus\:ring-opacity-70:focus{
    --tw-ring-opacity: 0.7;
  }

  .mobile\:focus\:ring-opacity-75:focus{
    --tw-ring-opacity: 0.75;
  }

  .mobile\:focus\:ring-opacity-80:focus{
    --tw-ring-opacity: 0.8;
  }

  .mobile\:focus\:ring-opacity-90:focus{
    --tw-ring-opacity: 0.9;
  }

  .mobile\:focus\:ring-opacity-95:focus{
    --tw-ring-opacity: 0.95;
  }

  .mobile\:focus\:ring-opacity-100:focus{
    --tw-ring-opacity: 1;
  }

  .mobile\:ring-offset-0{
    --tw-ring-offset-width: 0px;
  }

  .mobile\:ring-offset-1{
    --tw-ring-offset-width: 1px;
  }

  .mobile\:ring-offset-2{
    --tw-ring-offset-width: 2px;
  }

  .mobile\:ring-offset-4{
    --tw-ring-offset-width: 4px;
  }

  .mobile\:ring-offset-8{
    --tw-ring-offset-width: 8px;
  }

  .mobile\:focus-within\:ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px;
  }

  .mobile\:focus-within\:ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px;
  }

  .mobile\:focus-within\:ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px;
  }

  .mobile\:focus-within\:ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px;
  }

  .mobile\:focus-within\:ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px;
  }

  .mobile\:focus\:ring-offset-0:focus{
    --tw-ring-offset-width: 0px;
  }

  .mobile\:focus\:ring-offset-1:focus{
    --tw-ring-offset-width: 1px;
  }

  .mobile\:focus\:ring-offset-2:focus{
    --tw-ring-offset-width: 2px;
  }

  .mobile\:focus\:ring-offset-4:focus{
    --tw-ring-offset-width: 4px;
  }

  .mobile\:focus\:ring-offset-8:focus{
    --tw-ring-offset-width: 8px;
  }

  .mobile\:ring-offset-transparent{
    --tw-ring-offset-color: transparent;
  }

  .mobile\:ring-offset-current{
    --tw-ring-offset-color: currentColor;
  }

  .mobile\:ring-offset-black{
    --tw-ring-offset-color: #000;
  }

  .mobile\:ring-offset-white{
    --tw-ring-offset-color: #fff;
  }

  .mobile\:ring-offset-gray-50{
    --tw-ring-offset-color: #f9fafb;
  }

  .mobile\:ring-offset-gray-100{
    --tw-ring-offset-color: #f3f4f6;
  }

  .mobile\:ring-offset-gray-200{
    --tw-ring-offset-color: #e5e7eb;
  }

  .mobile\:ring-offset-gray-300{
    --tw-ring-offset-color: #d1d5db;
  }

  .mobile\:ring-offset-gray-400{
    --tw-ring-offset-color: #9ca3af;
  }

  .mobile\:ring-offset-gray-500{
    --tw-ring-offset-color: #6b7280;
  }

  .mobile\:ring-offset-gray-600{
    --tw-ring-offset-color: #4b5563;
  }

  .mobile\:ring-offset-gray-700{
    --tw-ring-offset-color: #374151;
  }

  .mobile\:ring-offset-gray-800{
    --tw-ring-offset-color: #1f2937;
  }

  .mobile\:ring-offset-gray-900{
    --tw-ring-offset-color: #111827;
  }

  .mobile\:ring-offset-red-50{
    --tw-ring-offset-color: #fef2f2;
  }

  .mobile\:ring-offset-red-100{
    --tw-ring-offset-color: #fee2e2;
  }

  .mobile\:ring-offset-red-200{
    --tw-ring-offset-color: #fecaca;
  }

  .mobile\:ring-offset-red-300{
    --tw-ring-offset-color: #fca5a5;
  }

  .mobile\:ring-offset-red-400{
    --tw-ring-offset-color: #f87171;
  }

  .mobile\:ring-offset-red-500{
    --tw-ring-offset-color: #ef4444;
  }

  .mobile\:ring-offset-red-600{
    --tw-ring-offset-color: #dc2626;
  }

  .mobile\:ring-offset-red-700{
    --tw-ring-offset-color: #b91c1c;
  }

  .mobile\:ring-offset-red-800{
    --tw-ring-offset-color: #991b1b;
  }

  .mobile\:ring-offset-red-900{
    --tw-ring-offset-color: #7f1d1d;
  }

  .mobile\:ring-offset-red-light{
    --tw-ring-offset-color: #EA7A7A;
  }

  .mobile\:ring-offset-red-default{
    --tw-ring-offset-color: #B90000;
  }

  .mobile\:ring-offset-red-dark{
    --tw-ring-offset-color: #580000;
  }

  .mobile\:ring-offset-yellow-50{
    --tw-ring-offset-color: #fffbeb;
  }

  .mobile\:ring-offset-yellow-100{
    --tw-ring-offset-color: #fef3c7;
  }

  .mobile\:ring-offset-yellow-200{
    --tw-ring-offset-color: #fde68a;
  }

  .mobile\:ring-offset-yellow-300{
    --tw-ring-offset-color: #fcd34d;
  }

  .mobile\:ring-offset-yellow-400{
    --tw-ring-offset-color: #fbbf24;
  }

  .mobile\:ring-offset-yellow-500{
    --tw-ring-offset-color: #f59e0b;
  }

  .mobile\:ring-offset-yellow-600{
    --tw-ring-offset-color: #d97706;
  }

  .mobile\:ring-offset-yellow-700{
    --tw-ring-offset-color: #b45309;
  }

  .mobile\:ring-offset-yellow-800{
    --tw-ring-offset-color: #92400e;
  }

  .mobile\:ring-offset-yellow-900{
    --tw-ring-offset-color: #78350f;
  }

  .mobile\:ring-offset-green-50{
    --tw-ring-offset-color: #ecfdf5;
  }

  .mobile\:ring-offset-green-100{
    --tw-ring-offset-color: #d1fae5;
  }

  .mobile\:ring-offset-green-200{
    --tw-ring-offset-color: #a7f3d0;
  }

  .mobile\:ring-offset-green-300{
    --tw-ring-offset-color: #6ee7b7;
  }

  .mobile\:ring-offset-green-400{
    --tw-ring-offset-color: #34d399;
  }

  .mobile\:ring-offset-green-500{
    --tw-ring-offset-color: #10b981;
  }

  .mobile\:ring-offset-green-600{
    --tw-ring-offset-color: #059669;
  }

  .mobile\:ring-offset-green-700{
    --tw-ring-offset-color: #047857;
  }

  .mobile\:ring-offset-green-800{
    --tw-ring-offset-color: #065f46;
  }

  .mobile\:ring-offset-green-900{
    --tw-ring-offset-color: #064e3b;
  }

  .mobile\:ring-offset-green-light{
    --tw-ring-offset-color: #B5D1B9;
  }

  .mobile\:ring-offset-green-default{
    --tw-ring-offset-color: #263B29;
  }

  .mobile\:ring-offset-green-dark{
    --tw-ring-offset-color: #1C251E;
  }

  .mobile\:ring-offset-blue-50{
    --tw-ring-offset-color: #eff6ff;
  }

  .mobile\:ring-offset-blue-100{
    --tw-ring-offset-color: #dbeafe;
  }

  .mobile\:ring-offset-blue-200{
    --tw-ring-offset-color: #bfdbfe;
  }

  .mobile\:ring-offset-blue-300{
    --tw-ring-offset-color: #93c5fd;
  }

  .mobile\:ring-offset-blue-400{
    --tw-ring-offset-color: #60a5fa;
  }

  .mobile\:ring-offset-blue-500{
    --tw-ring-offset-color: #3b82f6;
  }

  .mobile\:ring-offset-blue-600{
    --tw-ring-offset-color: #2563eb;
  }

  .mobile\:ring-offset-blue-700{
    --tw-ring-offset-color: #1d4ed8;
  }

  .mobile\:ring-offset-blue-800{
    --tw-ring-offset-color: #1e40af;
  }

  .mobile\:ring-offset-blue-900{
    --tw-ring-offset-color: #1e3a8a;
  }

  .mobile\:ring-offset-indigo-50{
    --tw-ring-offset-color: #eef2ff;
  }

  .mobile\:ring-offset-indigo-100{
    --tw-ring-offset-color: #e0e7ff;
  }

  .mobile\:ring-offset-indigo-200{
    --tw-ring-offset-color: #c7d2fe;
  }

  .mobile\:ring-offset-indigo-300{
    --tw-ring-offset-color: #a5b4fc;
  }

  .mobile\:ring-offset-indigo-400{
    --tw-ring-offset-color: #818cf8;
  }

  .mobile\:ring-offset-indigo-500{
    --tw-ring-offset-color: #6366f1;
  }

  .mobile\:ring-offset-indigo-600{
    --tw-ring-offset-color: #4f46e5;
  }

  .mobile\:ring-offset-indigo-700{
    --tw-ring-offset-color: #4338ca;
  }

  .mobile\:ring-offset-indigo-800{
    --tw-ring-offset-color: #3730a3;
  }

  .mobile\:ring-offset-indigo-900{
    --tw-ring-offset-color: #312e81;
  }

  .mobile\:ring-offset-purple-50{
    --tw-ring-offset-color: #f5f3ff;
  }

  .mobile\:ring-offset-purple-100{
    --tw-ring-offset-color: #ede9fe;
  }

  .mobile\:ring-offset-purple-200{
    --tw-ring-offset-color: #ddd6fe;
  }

  .mobile\:ring-offset-purple-300{
    --tw-ring-offset-color: #c4b5fd;
  }

  .mobile\:ring-offset-purple-400{
    --tw-ring-offset-color: #a78bfa;
  }

  .mobile\:ring-offset-purple-500{
    --tw-ring-offset-color: #8b5cf6;
  }

  .mobile\:ring-offset-purple-600{
    --tw-ring-offset-color: #7c3aed;
  }

  .mobile\:ring-offset-purple-700{
    --tw-ring-offset-color: #6d28d9;
  }

  .mobile\:ring-offset-purple-800{
    --tw-ring-offset-color: #5b21b6;
  }

  .mobile\:ring-offset-purple-900{
    --tw-ring-offset-color: #4c1d95;
  }

  .mobile\:ring-offset-pink-50{
    --tw-ring-offset-color: #fdf2f8;
  }

  .mobile\:ring-offset-pink-100{
    --tw-ring-offset-color: #fce7f3;
  }

  .mobile\:ring-offset-pink-200{
    --tw-ring-offset-color: #fbcfe8;
  }

  .mobile\:ring-offset-pink-300{
    --tw-ring-offset-color: #f9a8d4;
  }

  .mobile\:ring-offset-pink-400{
    --tw-ring-offset-color: #f472b6;
  }

  .mobile\:ring-offset-pink-500{
    --tw-ring-offset-color: #ec4899;
  }

  .mobile\:ring-offset-pink-600{
    --tw-ring-offset-color: #db2777;
  }

  .mobile\:ring-offset-pink-700{
    --tw-ring-offset-color: #be185d;
  }

  .mobile\:ring-offset-pink-800{
    --tw-ring-offset-color: #9d174d;
  }

  .mobile\:ring-offset-pink-900{
    --tw-ring-offset-color: #831843;
  }

  .mobile\:ring-offset-brown-light{
    --tw-ring-offset-color: #f0e9de;
  }

  .mobile\:ring-offset-brown-semi{
    --tw-ring-offset-color: #ded6ca;
  }

  .mobile\:ring-offset-brown-default{
    --tw-ring-offset-color: #7b6c5c;
  }

  .mobile\:ring-offset-brown-dark{
    --tw-ring-offset-color: #3d2706;
  }

  .mobile\:ring-offset-success-light{
    --tw-ring-offset-color: #91E09C;
  }

  .mobile\:ring-offset-success-default{
    --tw-ring-offset-color: #2D993C;
  }

  .mobile\:ring-offset-success-dark{
    --tw-ring-offset-color: #263B29;
  }

  .mobile\:ring-offset-error-light{
    --tw-ring-offset-color: #F98686;
  }

  .mobile\:ring-offset-error-default{
    --tw-ring-offset-color: #CB0707;
  }

  .mobile\:ring-offset-error-dark{
    --tw-ring-offset-color: #580000;
  }

  .mobile\:ring-offset-navigation-dark{
    --tw-ring-offset-color: #ffcd00;
  }

  .mobile\:focus-within\:ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent;
  }

  .mobile\:focus-within\:ring-offset-current:focus-within{
    --tw-ring-offset-color: currentColor;
  }

  .mobile\:focus-within\:ring-offset-black:focus-within{
    --tw-ring-offset-color: #000;
  }

  .mobile\:focus-within\:ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff;
  }

  .mobile\:focus-within\:ring-offset-gray-50:focus-within{
    --tw-ring-offset-color: #f9fafb;
  }

  .mobile\:focus-within\:ring-offset-gray-100:focus-within{
    --tw-ring-offset-color: #f3f4f6;
  }

  .mobile\:focus-within\:ring-offset-gray-200:focus-within{
    --tw-ring-offset-color: #e5e7eb;
  }

  .mobile\:focus-within\:ring-offset-gray-300:focus-within{
    --tw-ring-offset-color: #d1d5db;
  }

  .mobile\:focus-within\:ring-offset-gray-400:focus-within{
    --tw-ring-offset-color: #9ca3af;
  }

  .mobile\:focus-within\:ring-offset-gray-500:focus-within{
    --tw-ring-offset-color: #6b7280;
  }

  .mobile\:focus-within\:ring-offset-gray-600:focus-within{
    --tw-ring-offset-color: #4b5563;
  }

  .mobile\:focus-within\:ring-offset-gray-700:focus-within{
    --tw-ring-offset-color: #374151;
  }

  .mobile\:focus-within\:ring-offset-gray-800:focus-within{
    --tw-ring-offset-color: #1f2937;
  }

  .mobile\:focus-within\:ring-offset-gray-900:focus-within{
    --tw-ring-offset-color: #111827;
  }

  .mobile\:focus-within\:ring-offset-red-50:focus-within{
    --tw-ring-offset-color: #fef2f2;
  }

  .mobile\:focus-within\:ring-offset-red-100:focus-within{
    --tw-ring-offset-color: #fee2e2;
  }

  .mobile\:focus-within\:ring-offset-red-200:focus-within{
    --tw-ring-offset-color: #fecaca;
  }

  .mobile\:focus-within\:ring-offset-red-300:focus-within{
    --tw-ring-offset-color: #fca5a5;
  }

  .mobile\:focus-within\:ring-offset-red-400:focus-within{
    --tw-ring-offset-color: #f87171;
  }

  .mobile\:focus-within\:ring-offset-red-500:focus-within{
    --tw-ring-offset-color: #ef4444;
  }

  .mobile\:focus-within\:ring-offset-red-600:focus-within{
    --tw-ring-offset-color: #dc2626;
  }

  .mobile\:focus-within\:ring-offset-red-700:focus-within{
    --tw-ring-offset-color: #b91c1c;
  }

  .mobile\:focus-within\:ring-offset-red-800:focus-within{
    --tw-ring-offset-color: #991b1b;
  }

  .mobile\:focus-within\:ring-offset-red-900:focus-within{
    --tw-ring-offset-color: #7f1d1d;
  }

  .mobile\:focus-within\:ring-offset-red-light:focus-within{
    --tw-ring-offset-color: #EA7A7A;
  }

  .mobile\:focus-within\:ring-offset-red-default:focus-within{
    --tw-ring-offset-color: #B90000;
  }

  .mobile\:focus-within\:ring-offset-red-dark:focus-within{
    --tw-ring-offset-color: #580000;
  }

  .mobile\:focus-within\:ring-offset-yellow-50:focus-within{
    --tw-ring-offset-color: #fffbeb;
  }

  .mobile\:focus-within\:ring-offset-yellow-100:focus-within{
    --tw-ring-offset-color: #fef3c7;
  }

  .mobile\:focus-within\:ring-offset-yellow-200:focus-within{
    --tw-ring-offset-color: #fde68a;
  }

  .mobile\:focus-within\:ring-offset-yellow-300:focus-within{
    --tw-ring-offset-color: #fcd34d;
  }

  .mobile\:focus-within\:ring-offset-yellow-400:focus-within{
    --tw-ring-offset-color: #fbbf24;
  }

  .mobile\:focus-within\:ring-offset-yellow-500:focus-within{
    --tw-ring-offset-color: #f59e0b;
  }

  .mobile\:focus-within\:ring-offset-yellow-600:focus-within{
    --tw-ring-offset-color: #d97706;
  }

  .mobile\:focus-within\:ring-offset-yellow-700:focus-within{
    --tw-ring-offset-color: #b45309;
  }

  .mobile\:focus-within\:ring-offset-yellow-800:focus-within{
    --tw-ring-offset-color: #92400e;
  }

  .mobile\:focus-within\:ring-offset-yellow-900:focus-within{
    --tw-ring-offset-color: #78350f;
  }

  .mobile\:focus-within\:ring-offset-green-50:focus-within{
    --tw-ring-offset-color: #ecfdf5;
  }

  .mobile\:focus-within\:ring-offset-green-100:focus-within{
    --tw-ring-offset-color: #d1fae5;
  }

  .mobile\:focus-within\:ring-offset-green-200:focus-within{
    --tw-ring-offset-color: #a7f3d0;
  }

  .mobile\:focus-within\:ring-offset-green-300:focus-within{
    --tw-ring-offset-color: #6ee7b7;
  }

  .mobile\:focus-within\:ring-offset-green-400:focus-within{
    --tw-ring-offset-color: #34d399;
  }

  .mobile\:focus-within\:ring-offset-green-500:focus-within{
    --tw-ring-offset-color: #10b981;
  }

  .mobile\:focus-within\:ring-offset-green-600:focus-within{
    --tw-ring-offset-color: #059669;
  }

  .mobile\:focus-within\:ring-offset-green-700:focus-within{
    --tw-ring-offset-color: #047857;
  }

  .mobile\:focus-within\:ring-offset-green-800:focus-within{
    --tw-ring-offset-color: #065f46;
  }

  .mobile\:focus-within\:ring-offset-green-900:focus-within{
    --tw-ring-offset-color: #064e3b;
  }

  .mobile\:focus-within\:ring-offset-green-light:focus-within{
    --tw-ring-offset-color: #B5D1B9;
  }

  .mobile\:focus-within\:ring-offset-green-default:focus-within{
    --tw-ring-offset-color: #263B29;
  }

  .mobile\:focus-within\:ring-offset-green-dark:focus-within{
    --tw-ring-offset-color: #1C251E;
  }

  .mobile\:focus-within\:ring-offset-blue-50:focus-within{
    --tw-ring-offset-color: #eff6ff;
  }

  .mobile\:focus-within\:ring-offset-blue-100:focus-within{
    --tw-ring-offset-color: #dbeafe;
  }

  .mobile\:focus-within\:ring-offset-blue-200:focus-within{
    --tw-ring-offset-color: #bfdbfe;
  }

  .mobile\:focus-within\:ring-offset-blue-300:focus-within{
    --tw-ring-offset-color: #93c5fd;
  }

  .mobile\:focus-within\:ring-offset-blue-400:focus-within{
    --tw-ring-offset-color: #60a5fa;
  }

  .mobile\:focus-within\:ring-offset-blue-500:focus-within{
    --tw-ring-offset-color: #3b82f6;
  }

  .mobile\:focus-within\:ring-offset-blue-600:focus-within{
    --tw-ring-offset-color: #2563eb;
  }

  .mobile\:focus-within\:ring-offset-blue-700:focus-within{
    --tw-ring-offset-color: #1d4ed8;
  }

  .mobile\:focus-within\:ring-offset-blue-800:focus-within{
    --tw-ring-offset-color: #1e40af;
  }

  .mobile\:focus-within\:ring-offset-blue-900:focus-within{
    --tw-ring-offset-color: #1e3a8a;
  }

  .mobile\:focus-within\:ring-offset-indigo-50:focus-within{
    --tw-ring-offset-color: #eef2ff;
  }

  .mobile\:focus-within\:ring-offset-indigo-100:focus-within{
    --tw-ring-offset-color: #e0e7ff;
  }

  .mobile\:focus-within\:ring-offset-indigo-200:focus-within{
    --tw-ring-offset-color: #c7d2fe;
  }

  .mobile\:focus-within\:ring-offset-indigo-300:focus-within{
    --tw-ring-offset-color: #a5b4fc;
  }

  .mobile\:focus-within\:ring-offset-indigo-400:focus-within{
    --tw-ring-offset-color: #818cf8;
  }

  .mobile\:focus-within\:ring-offset-indigo-500:focus-within{
    --tw-ring-offset-color: #6366f1;
  }

  .mobile\:focus-within\:ring-offset-indigo-600:focus-within{
    --tw-ring-offset-color: #4f46e5;
  }

  .mobile\:focus-within\:ring-offset-indigo-700:focus-within{
    --tw-ring-offset-color: #4338ca;
  }

  .mobile\:focus-within\:ring-offset-indigo-800:focus-within{
    --tw-ring-offset-color: #3730a3;
  }

  .mobile\:focus-within\:ring-offset-indigo-900:focus-within{
    --tw-ring-offset-color: #312e81;
  }

  .mobile\:focus-within\:ring-offset-purple-50:focus-within{
    --tw-ring-offset-color: #f5f3ff;
  }

  .mobile\:focus-within\:ring-offset-purple-100:focus-within{
    --tw-ring-offset-color: #ede9fe;
  }

  .mobile\:focus-within\:ring-offset-purple-200:focus-within{
    --tw-ring-offset-color: #ddd6fe;
  }

  .mobile\:focus-within\:ring-offset-purple-300:focus-within{
    --tw-ring-offset-color: #c4b5fd;
  }

  .mobile\:focus-within\:ring-offset-purple-400:focus-within{
    --tw-ring-offset-color: #a78bfa;
  }

  .mobile\:focus-within\:ring-offset-purple-500:focus-within{
    --tw-ring-offset-color: #8b5cf6;
  }

  .mobile\:focus-within\:ring-offset-purple-600:focus-within{
    --tw-ring-offset-color: #7c3aed;
  }

  .mobile\:focus-within\:ring-offset-purple-700:focus-within{
    --tw-ring-offset-color: #6d28d9;
  }

  .mobile\:focus-within\:ring-offset-purple-800:focus-within{
    --tw-ring-offset-color: #5b21b6;
  }

  .mobile\:focus-within\:ring-offset-purple-900:focus-within{
    --tw-ring-offset-color: #4c1d95;
  }

  .mobile\:focus-within\:ring-offset-pink-50:focus-within{
    --tw-ring-offset-color: #fdf2f8;
  }

  .mobile\:focus-within\:ring-offset-pink-100:focus-within{
    --tw-ring-offset-color: #fce7f3;
  }

  .mobile\:focus-within\:ring-offset-pink-200:focus-within{
    --tw-ring-offset-color: #fbcfe8;
  }

  .mobile\:focus-within\:ring-offset-pink-300:focus-within{
    --tw-ring-offset-color: #f9a8d4;
  }

  .mobile\:focus-within\:ring-offset-pink-400:focus-within{
    --tw-ring-offset-color: #f472b6;
  }

  .mobile\:focus-within\:ring-offset-pink-500:focus-within{
    --tw-ring-offset-color: #ec4899;
  }

  .mobile\:focus-within\:ring-offset-pink-600:focus-within{
    --tw-ring-offset-color: #db2777;
  }

  .mobile\:focus-within\:ring-offset-pink-700:focus-within{
    --tw-ring-offset-color: #be185d;
  }

  .mobile\:focus-within\:ring-offset-pink-800:focus-within{
    --tw-ring-offset-color: #9d174d;
  }

  .mobile\:focus-within\:ring-offset-pink-900:focus-within{
    --tw-ring-offset-color: #831843;
  }

  .mobile\:focus-within\:ring-offset-brown-light:focus-within{
    --tw-ring-offset-color: #f0e9de;
  }

  .mobile\:focus-within\:ring-offset-brown-semi:focus-within{
    --tw-ring-offset-color: #ded6ca;
  }

  .mobile\:focus-within\:ring-offset-brown-default:focus-within{
    --tw-ring-offset-color: #7b6c5c;
  }

  .mobile\:focus-within\:ring-offset-brown-dark:focus-within{
    --tw-ring-offset-color: #3d2706;
  }

  .mobile\:focus-within\:ring-offset-success-light:focus-within{
    --tw-ring-offset-color: #91E09C;
  }

  .mobile\:focus-within\:ring-offset-success-default:focus-within{
    --tw-ring-offset-color: #2D993C;
  }

  .mobile\:focus-within\:ring-offset-success-dark:focus-within{
    --tw-ring-offset-color: #263B29;
  }

  .mobile\:focus-within\:ring-offset-error-light:focus-within{
    --tw-ring-offset-color: #F98686;
  }

  .mobile\:focus-within\:ring-offset-error-default:focus-within{
    --tw-ring-offset-color: #CB0707;
  }

  .mobile\:focus-within\:ring-offset-error-dark:focus-within{
    --tw-ring-offset-color: #580000;
  }

  .mobile\:focus-within\:ring-offset-navigation-dark:focus-within{
    --tw-ring-offset-color: #ffcd00;
  }

  .mobile\:focus\:ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent;
  }

  .mobile\:focus\:ring-offset-current:focus{
    --tw-ring-offset-color: currentColor;
  }

  .mobile\:focus\:ring-offset-black:focus{
    --tw-ring-offset-color: #000;
  }

  .mobile\:focus\:ring-offset-white:focus{
    --tw-ring-offset-color: #fff;
  }

  .mobile\:focus\:ring-offset-gray-50:focus{
    --tw-ring-offset-color: #f9fafb;
  }

  .mobile\:focus\:ring-offset-gray-100:focus{
    --tw-ring-offset-color: #f3f4f6;
  }

  .mobile\:focus\:ring-offset-gray-200:focus{
    --tw-ring-offset-color: #e5e7eb;
  }

  .mobile\:focus\:ring-offset-gray-300:focus{
    --tw-ring-offset-color: #d1d5db;
  }

  .mobile\:focus\:ring-offset-gray-400:focus{
    --tw-ring-offset-color: #9ca3af;
  }

  .mobile\:focus\:ring-offset-gray-500:focus{
    --tw-ring-offset-color: #6b7280;
  }

  .mobile\:focus\:ring-offset-gray-600:focus{
    --tw-ring-offset-color: #4b5563;
  }

  .mobile\:focus\:ring-offset-gray-700:focus{
    --tw-ring-offset-color: #374151;
  }

  .mobile\:focus\:ring-offset-gray-800:focus{
    --tw-ring-offset-color: #1f2937;
  }

  .mobile\:focus\:ring-offset-gray-900:focus{
    --tw-ring-offset-color: #111827;
  }

  .mobile\:focus\:ring-offset-red-50:focus{
    --tw-ring-offset-color: #fef2f2;
  }

  .mobile\:focus\:ring-offset-red-100:focus{
    --tw-ring-offset-color: #fee2e2;
  }

  .mobile\:focus\:ring-offset-red-200:focus{
    --tw-ring-offset-color: #fecaca;
  }

  .mobile\:focus\:ring-offset-red-300:focus{
    --tw-ring-offset-color: #fca5a5;
  }

  .mobile\:focus\:ring-offset-red-400:focus{
    --tw-ring-offset-color: #f87171;
  }

  .mobile\:focus\:ring-offset-red-500:focus{
    --tw-ring-offset-color: #ef4444;
  }

  .mobile\:focus\:ring-offset-red-600:focus{
    --tw-ring-offset-color: #dc2626;
  }

  .mobile\:focus\:ring-offset-red-700:focus{
    --tw-ring-offset-color: #b91c1c;
  }

  .mobile\:focus\:ring-offset-red-800:focus{
    --tw-ring-offset-color: #991b1b;
  }

  .mobile\:focus\:ring-offset-red-900:focus{
    --tw-ring-offset-color: #7f1d1d;
  }

  .mobile\:focus\:ring-offset-red-light:focus{
    --tw-ring-offset-color: #EA7A7A;
  }

  .mobile\:focus\:ring-offset-red-default:focus{
    --tw-ring-offset-color: #B90000;
  }

  .mobile\:focus\:ring-offset-red-dark:focus{
    --tw-ring-offset-color: #580000;
  }

  .mobile\:focus\:ring-offset-yellow-50:focus{
    --tw-ring-offset-color: #fffbeb;
  }

  .mobile\:focus\:ring-offset-yellow-100:focus{
    --tw-ring-offset-color: #fef3c7;
  }

  .mobile\:focus\:ring-offset-yellow-200:focus{
    --tw-ring-offset-color: #fde68a;
  }

  .mobile\:focus\:ring-offset-yellow-300:focus{
    --tw-ring-offset-color: #fcd34d;
  }

  .mobile\:focus\:ring-offset-yellow-400:focus{
    --tw-ring-offset-color: #fbbf24;
  }

  .mobile\:focus\:ring-offset-yellow-500:focus{
    --tw-ring-offset-color: #f59e0b;
  }

  .mobile\:focus\:ring-offset-yellow-600:focus{
    --tw-ring-offset-color: #d97706;
  }

  .mobile\:focus\:ring-offset-yellow-700:focus{
    --tw-ring-offset-color: #b45309;
  }

  .mobile\:focus\:ring-offset-yellow-800:focus{
    --tw-ring-offset-color: #92400e;
  }

  .mobile\:focus\:ring-offset-yellow-900:focus{
    --tw-ring-offset-color: #78350f;
  }

  .mobile\:focus\:ring-offset-green-50:focus{
    --tw-ring-offset-color: #ecfdf5;
  }

  .mobile\:focus\:ring-offset-green-100:focus{
    --tw-ring-offset-color: #d1fae5;
  }

  .mobile\:focus\:ring-offset-green-200:focus{
    --tw-ring-offset-color: #a7f3d0;
  }

  .mobile\:focus\:ring-offset-green-300:focus{
    --tw-ring-offset-color: #6ee7b7;
  }

  .mobile\:focus\:ring-offset-green-400:focus{
    --tw-ring-offset-color: #34d399;
  }

  .mobile\:focus\:ring-offset-green-500:focus{
    --tw-ring-offset-color: #10b981;
  }

  .mobile\:focus\:ring-offset-green-600:focus{
    --tw-ring-offset-color: #059669;
  }

  .mobile\:focus\:ring-offset-green-700:focus{
    --tw-ring-offset-color: #047857;
  }

  .mobile\:focus\:ring-offset-green-800:focus{
    --tw-ring-offset-color: #065f46;
  }

  .mobile\:focus\:ring-offset-green-900:focus{
    --tw-ring-offset-color: #064e3b;
  }

  .mobile\:focus\:ring-offset-green-light:focus{
    --tw-ring-offset-color: #B5D1B9;
  }

  .mobile\:focus\:ring-offset-green-default:focus{
    --tw-ring-offset-color: #263B29;
  }

  .mobile\:focus\:ring-offset-green-dark:focus{
    --tw-ring-offset-color: #1C251E;
  }

  .mobile\:focus\:ring-offset-blue-50:focus{
    --tw-ring-offset-color: #eff6ff;
  }

  .mobile\:focus\:ring-offset-blue-100:focus{
    --tw-ring-offset-color: #dbeafe;
  }

  .mobile\:focus\:ring-offset-blue-200:focus{
    --tw-ring-offset-color: #bfdbfe;
  }

  .mobile\:focus\:ring-offset-blue-300:focus{
    --tw-ring-offset-color: #93c5fd;
  }

  .mobile\:focus\:ring-offset-blue-400:focus{
    --tw-ring-offset-color: #60a5fa;
  }

  .mobile\:focus\:ring-offset-blue-500:focus{
    --tw-ring-offset-color: #3b82f6;
  }

  .mobile\:focus\:ring-offset-blue-600:focus{
    --tw-ring-offset-color: #2563eb;
  }

  .mobile\:focus\:ring-offset-blue-700:focus{
    --tw-ring-offset-color: #1d4ed8;
  }

  .mobile\:focus\:ring-offset-blue-800:focus{
    --tw-ring-offset-color: #1e40af;
  }

  .mobile\:focus\:ring-offset-blue-900:focus{
    --tw-ring-offset-color: #1e3a8a;
  }

  .mobile\:focus\:ring-offset-indigo-50:focus{
    --tw-ring-offset-color: #eef2ff;
  }

  .mobile\:focus\:ring-offset-indigo-100:focus{
    --tw-ring-offset-color: #e0e7ff;
  }

  .mobile\:focus\:ring-offset-indigo-200:focus{
    --tw-ring-offset-color: #c7d2fe;
  }

  .mobile\:focus\:ring-offset-indigo-300:focus{
    --tw-ring-offset-color: #a5b4fc;
  }

  .mobile\:focus\:ring-offset-indigo-400:focus{
    --tw-ring-offset-color: #818cf8;
  }

  .mobile\:focus\:ring-offset-indigo-500:focus{
    --tw-ring-offset-color: #6366f1;
  }

  .mobile\:focus\:ring-offset-indigo-600:focus{
    --tw-ring-offset-color: #4f46e5;
  }

  .mobile\:focus\:ring-offset-indigo-700:focus{
    --tw-ring-offset-color: #4338ca;
  }

  .mobile\:focus\:ring-offset-indigo-800:focus{
    --tw-ring-offset-color: #3730a3;
  }

  .mobile\:focus\:ring-offset-indigo-900:focus{
    --tw-ring-offset-color: #312e81;
  }

  .mobile\:focus\:ring-offset-purple-50:focus{
    --tw-ring-offset-color: #f5f3ff;
  }

  .mobile\:focus\:ring-offset-purple-100:focus{
    --tw-ring-offset-color: #ede9fe;
  }

  .mobile\:focus\:ring-offset-purple-200:focus{
    --tw-ring-offset-color: #ddd6fe;
  }

  .mobile\:focus\:ring-offset-purple-300:focus{
    --tw-ring-offset-color: #c4b5fd;
  }

  .mobile\:focus\:ring-offset-purple-400:focus{
    --tw-ring-offset-color: #a78bfa;
  }

  .mobile\:focus\:ring-offset-purple-500:focus{
    --tw-ring-offset-color: #8b5cf6;
  }

  .mobile\:focus\:ring-offset-purple-600:focus{
    --tw-ring-offset-color: #7c3aed;
  }

  .mobile\:focus\:ring-offset-purple-700:focus{
    --tw-ring-offset-color: #6d28d9;
  }

  .mobile\:focus\:ring-offset-purple-800:focus{
    --tw-ring-offset-color: #5b21b6;
  }

  .mobile\:focus\:ring-offset-purple-900:focus{
    --tw-ring-offset-color: #4c1d95;
  }

  .mobile\:focus\:ring-offset-pink-50:focus{
    --tw-ring-offset-color: #fdf2f8;
  }

  .mobile\:focus\:ring-offset-pink-100:focus{
    --tw-ring-offset-color: #fce7f3;
  }

  .mobile\:focus\:ring-offset-pink-200:focus{
    --tw-ring-offset-color: #fbcfe8;
  }

  .mobile\:focus\:ring-offset-pink-300:focus{
    --tw-ring-offset-color: #f9a8d4;
  }

  .mobile\:focus\:ring-offset-pink-400:focus{
    --tw-ring-offset-color: #f472b6;
  }

  .mobile\:focus\:ring-offset-pink-500:focus{
    --tw-ring-offset-color: #ec4899;
  }

  .mobile\:focus\:ring-offset-pink-600:focus{
    --tw-ring-offset-color: #db2777;
  }

  .mobile\:focus\:ring-offset-pink-700:focus{
    --tw-ring-offset-color: #be185d;
  }

  .mobile\:focus\:ring-offset-pink-800:focus{
    --tw-ring-offset-color: #9d174d;
  }

  .mobile\:focus\:ring-offset-pink-900:focus{
    --tw-ring-offset-color: #831843;
  }

  .mobile\:focus\:ring-offset-brown-light:focus{
    --tw-ring-offset-color: #f0e9de;
  }

  .mobile\:focus\:ring-offset-brown-semi:focus{
    --tw-ring-offset-color: #ded6ca;
  }

  .mobile\:focus\:ring-offset-brown-default:focus{
    --tw-ring-offset-color: #7b6c5c;
  }

  .mobile\:focus\:ring-offset-brown-dark:focus{
    --tw-ring-offset-color: #3d2706;
  }

  .mobile\:focus\:ring-offset-success-light:focus{
    --tw-ring-offset-color: #91E09C;
  }

  .mobile\:focus\:ring-offset-success-default:focus{
    --tw-ring-offset-color: #2D993C;
  }

  .mobile\:focus\:ring-offset-success-dark:focus{
    --tw-ring-offset-color: #263B29;
  }

  .mobile\:focus\:ring-offset-error-light:focus{
    --tw-ring-offset-color: #F98686;
  }

  .mobile\:focus\:ring-offset-error-default:focus{
    --tw-ring-offset-color: #CB0707;
  }

  .mobile\:focus\:ring-offset-error-dark:focus{
    --tw-ring-offset-color: #580000;
  }

  .mobile\:focus\:ring-offset-navigation-dark:focus{
    --tw-ring-offset-color: #ffcd00;
  }

  .mobile\:filter{
    --tw-blur: var(--tw-empty,/*!*/ /*!*/);
    --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
    --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
    --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
    --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
    --tw-invert: var(--tw-empty,/*!*/ /*!*/);
    --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
    --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
    --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  }

  .mobile\:filter-none{
    filter: none;
  }

  .mobile\:blur-0{
    --tw-blur: blur(0);
  }

  .mobile\:blur-none{
    --tw-blur: blur(0);
  }

  .mobile\:blur-sm{
    --tw-blur: blur(4px);
  }

  .mobile\:blur{
    --tw-blur: blur(8px);
  }

  .mobile\:blur-md{
    --tw-blur: blur(12px);
  }

  .mobile\:blur-lg{
    --tw-blur: blur(16px);
  }

  .mobile\:blur-xl{
    --tw-blur: blur(24px);
  }

  .mobile\:blur-2xl{
    --tw-blur: blur(40px);
  }

  .mobile\:blur-3xl{
    --tw-blur: blur(64px);
  }

  .mobile\:brightness-0{
    --tw-brightness: brightness(0);
  }

  .mobile\:brightness-50{
    --tw-brightness: brightness(.5);
  }

  .mobile\:brightness-75{
    --tw-brightness: brightness(.75);
  }

  .mobile\:brightness-90{
    --tw-brightness: brightness(.9);
  }

  .mobile\:brightness-95{
    --tw-brightness: brightness(.95);
  }

  .mobile\:brightness-100{
    --tw-brightness: brightness(1);
  }

  .mobile\:brightness-105{
    --tw-brightness: brightness(1.05);
  }

  .mobile\:brightness-110{
    --tw-brightness: brightness(1.1);
  }

  .mobile\:brightness-125{
    --tw-brightness: brightness(1.25);
  }

  .mobile\:brightness-150{
    --tw-brightness: brightness(1.5);
  }

  .mobile\:brightness-200{
    --tw-brightness: brightness(2);
  }

  .mobile\:contrast-0{
    --tw-contrast: contrast(0);
  }

  .mobile\:contrast-50{
    --tw-contrast: contrast(.5);
  }

  .mobile\:contrast-75{
    --tw-contrast: contrast(.75);
  }

  .mobile\:contrast-100{
    --tw-contrast: contrast(1);
  }

  .mobile\:contrast-125{
    --tw-contrast: contrast(1.25);
  }

  .mobile\:contrast-150{
    --tw-contrast: contrast(1.5);
  }

  .mobile\:contrast-200{
    --tw-contrast: contrast(2);
  }

  .mobile\:drop-shadow-sm{
    --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
  }

  .mobile\:drop-shadow{
    --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
  }

  .mobile\:drop-shadow-md{
    --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
  }

  .mobile\:drop-shadow-lg{
    --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
  }

  .mobile\:drop-shadow-xl{
    --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
  }

  .mobile\:drop-shadow-2xl{
    --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
  }

  .mobile\:drop-shadow-none{
    --tw-drop-shadow: drop-shadow(0 0 #0000);
  }

  .mobile\:grayscale-0{
    --tw-grayscale: grayscale(0);
  }

  .mobile\:grayscale{
    --tw-grayscale: grayscale(100%);
  }

  .mobile\:hue-rotate-0{
    --tw-hue-rotate: hue-rotate(0deg);
  }

  .mobile\:hue-rotate-15{
    --tw-hue-rotate: hue-rotate(15deg);
  }

  .mobile\:hue-rotate-30{
    --tw-hue-rotate: hue-rotate(30deg);
  }

  .mobile\:hue-rotate-60{
    --tw-hue-rotate: hue-rotate(60deg);
  }

  .mobile\:hue-rotate-90{
    --tw-hue-rotate: hue-rotate(90deg);
  }

  .mobile\:hue-rotate-180{
    --tw-hue-rotate: hue-rotate(180deg);
  }

  .mobile\:-hue-rotate-180{
    --tw-hue-rotate: hue-rotate(-180deg);
  }

  .mobile\:-hue-rotate-90{
    --tw-hue-rotate: hue-rotate(-90deg);
  }

  .mobile\:-hue-rotate-60{
    --tw-hue-rotate: hue-rotate(-60deg);
  }

  .mobile\:-hue-rotate-30{
    --tw-hue-rotate: hue-rotate(-30deg);
  }

  .mobile\:-hue-rotate-15{
    --tw-hue-rotate: hue-rotate(-15deg);
  }

  .mobile\:invert-0{
    --tw-invert: invert(0);
  }

  .mobile\:invert{
    --tw-invert: invert(100%);
  }

  .mobile\:saturate-0{
    --tw-saturate: saturate(0);
  }

  .mobile\:saturate-50{
    --tw-saturate: saturate(.5);
  }

  .mobile\:saturate-100{
    --tw-saturate: saturate(1);
  }

  .mobile\:saturate-150{
    --tw-saturate: saturate(1.5);
  }

  .mobile\:saturate-200{
    --tw-saturate: saturate(2);
  }

  .mobile\:sepia-0{
    --tw-sepia: sepia(0);
  }

  .mobile\:sepia{
    --tw-sepia: sepia(100%);
  }

  .mobile\:backdrop-filter{
    --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
            backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  }

  .mobile\:backdrop-filter-none{
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }

  .mobile\:backdrop-blur-0{
    --tw-backdrop-blur: blur(0);
  }

  .mobile\:backdrop-blur-none{
    --tw-backdrop-blur: blur(0);
  }

  .mobile\:backdrop-blur-sm{
    --tw-backdrop-blur: blur(4px);
  }

  .mobile\:backdrop-blur{
    --tw-backdrop-blur: blur(8px);
  }

  .mobile\:backdrop-blur-md{
    --tw-backdrop-blur: blur(12px);
  }

  .mobile\:backdrop-blur-lg{
    --tw-backdrop-blur: blur(16px);
  }

  .mobile\:backdrop-blur-xl{
    --tw-backdrop-blur: blur(24px);
  }

  .mobile\:backdrop-blur-2xl{
    --tw-backdrop-blur: blur(40px);
  }

  .mobile\:backdrop-blur-3xl{
    --tw-backdrop-blur: blur(64px);
  }

  .mobile\:backdrop-brightness-0{
    --tw-backdrop-brightness: brightness(0);
  }

  .mobile\:backdrop-brightness-50{
    --tw-backdrop-brightness: brightness(.5);
  }

  .mobile\:backdrop-brightness-75{
    --tw-backdrop-brightness: brightness(.75);
  }

  .mobile\:backdrop-brightness-90{
    --tw-backdrop-brightness: brightness(.9);
  }

  .mobile\:backdrop-brightness-95{
    --tw-backdrop-brightness: brightness(.95);
  }

  .mobile\:backdrop-brightness-100{
    --tw-backdrop-brightness: brightness(1);
  }

  .mobile\:backdrop-brightness-105{
    --tw-backdrop-brightness: brightness(1.05);
  }

  .mobile\:backdrop-brightness-110{
    --tw-backdrop-brightness: brightness(1.1);
  }

  .mobile\:backdrop-brightness-125{
    --tw-backdrop-brightness: brightness(1.25);
  }

  .mobile\:backdrop-brightness-150{
    --tw-backdrop-brightness: brightness(1.5);
  }

  .mobile\:backdrop-brightness-200{
    --tw-backdrop-brightness: brightness(2);
  }

  .mobile\:backdrop-contrast-0{
    --tw-backdrop-contrast: contrast(0);
  }

  .mobile\:backdrop-contrast-50{
    --tw-backdrop-contrast: contrast(.5);
  }

  .mobile\:backdrop-contrast-75{
    --tw-backdrop-contrast: contrast(.75);
  }

  .mobile\:backdrop-contrast-100{
    --tw-backdrop-contrast: contrast(1);
  }

  .mobile\:backdrop-contrast-125{
    --tw-backdrop-contrast: contrast(1.25);
  }

  .mobile\:backdrop-contrast-150{
    --tw-backdrop-contrast: contrast(1.5);
  }

  .mobile\:backdrop-contrast-200{
    --tw-backdrop-contrast: contrast(2);
  }

  .mobile\:backdrop-grayscale-0{
    --tw-backdrop-grayscale: grayscale(0);
  }

  .mobile\:backdrop-grayscale{
    --tw-backdrop-grayscale: grayscale(100%);
  }

  .mobile\:backdrop-hue-rotate-0{
    --tw-backdrop-hue-rotate: hue-rotate(0deg);
  }

  .mobile\:backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(15deg);
  }

  .mobile\:backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(30deg);
  }

  .mobile\:backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(60deg);
  }

  .mobile\:backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(90deg);
  }

  .mobile\:backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(180deg);
  }

  .mobile\:-backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(-180deg);
  }

  .mobile\:-backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(-90deg);
  }

  .mobile\:-backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(-60deg);
  }

  .mobile\:-backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(-30deg);
  }

  .mobile\:-backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(-15deg);
  }

  .mobile\:backdrop-invert-0{
    --tw-backdrop-invert: invert(0);
  }

  .mobile\:backdrop-invert{
    --tw-backdrop-invert: invert(100%);
  }

  .mobile\:backdrop-opacity-0{
    --tw-backdrop-opacity: opacity(0);
  }

  .mobile\:backdrop-opacity-5{
    --tw-backdrop-opacity: opacity(0.05);
  }

  .mobile\:backdrop-opacity-10{
    --tw-backdrop-opacity: opacity(0.1);
  }

  .mobile\:backdrop-opacity-20{
    --tw-backdrop-opacity: opacity(0.2);
  }

  .mobile\:backdrop-opacity-25{
    --tw-backdrop-opacity: opacity(0.25);
  }

  .mobile\:backdrop-opacity-30{
    --tw-backdrop-opacity: opacity(0.3);
  }

  .mobile\:backdrop-opacity-40{
    --tw-backdrop-opacity: opacity(0.4);
  }

  .mobile\:backdrop-opacity-50{
    --tw-backdrop-opacity: opacity(0.5);
  }

  .mobile\:backdrop-opacity-60{
    --tw-backdrop-opacity: opacity(0.6);
  }

  .mobile\:backdrop-opacity-70{
    --tw-backdrop-opacity: opacity(0.7);
  }

  .mobile\:backdrop-opacity-75{
    --tw-backdrop-opacity: opacity(0.75);
  }

  .mobile\:backdrop-opacity-80{
    --tw-backdrop-opacity: opacity(0.8);
  }

  .mobile\:backdrop-opacity-90{
    --tw-backdrop-opacity: opacity(0.9);
  }

  .mobile\:backdrop-opacity-95{
    --tw-backdrop-opacity: opacity(0.95);
  }

  .mobile\:backdrop-opacity-100{
    --tw-backdrop-opacity: opacity(1);
  }

  .mobile\:backdrop-saturate-0{
    --tw-backdrop-saturate: saturate(0);
  }

  .mobile\:backdrop-saturate-50{
    --tw-backdrop-saturate: saturate(.5);
  }

  .mobile\:backdrop-saturate-100{
    --tw-backdrop-saturate: saturate(1);
  }

  .mobile\:backdrop-saturate-150{
    --tw-backdrop-saturate: saturate(1.5);
  }

  .mobile\:backdrop-saturate-200{
    --tw-backdrop-saturate: saturate(2);
  }

  .mobile\:backdrop-sepia-0{
    --tw-backdrop-sepia: sepia(0);
  }

  .mobile\:backdrop-sepia{
    --tw-backdrop-sepia: sepia(100%);
  }

  .mobile\:transition-none{
    transition-property: none;
  }

  .mobile\:transition-all{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .mobile\:transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .mobile\:transition-colors{
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .mobile\:transition-opacity{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .mobile\:transition-shadow{
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .mobile\:transition-transform{
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .mobile\:delay-75{
    transition-delay: 75ms;
  }

  .mobile\:delay-100{
    transition-delay: 100ms;
  }

  .mobile\:delay-150{
    transition-delay: 150ms;
  }

  .mobile\:delay-200{
    transition-delay: 200ms;
  }

  .mobile\:delay-300{
    transition-delay: 300ms;
  }

  .mobile\:delay-500{
    transition-delay: 500ms;
  }

  .mobile\:delay-700{
    transition-delay: 700ms;
  }

  .mobile\:delay-1000{
    transition-delay: 1000ms;
  }

  .mobile\:duration-75{
    transition-duration: 75ms;
  }

  .mobile\:duration-100{
    transition-duration: 100ms;
  }

  .mobile\:duration-150{
    transition-duration: 150ms;
  }

  .mobile\:duration-200{
    transition-duration: 200ms;
  }

  .mobile\:duration-300{
    transition-duration: 300ms;
  }

  .mobile\:duration-500{
    transition-duration: 500ms;
  }

  .mobile\:duration-700{
    transition-duration: 700ms;
  }

  .mobile\:duration-1000{
    transition-duration: 1000ms;
  }

  .mobile\:ease-linear{
    transition-timing-function: linear;
  }

  .mobile\:ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .mobile\:ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .mobile\:ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
}

@media (min-width: 768px) and (max-width: 1199px){
  .tablet\:container{
    width: 100%;
  }

  @media (min-width: 768px){
    .tablet\:container{
      max-width: 768px;
    }
  }

  @media (min-width: 1200px){
    .tablet\:container{
      max-width: 1200px;
    }
  }

  .tablet\:bw-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .tablet\:bw-hover-animation, .tablet\:bw-hover-menu > li > a{
    opacity: 1;
  }

  .tablet\:bw-hover-animation, .tablet\:bw-hover-menu > li > a{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .tablet\:bw-hover-animation, .tablet\:bw-hover-menu > li > a{
    transition-duration: 300ms;
  }

  .tablet\:bw-hover-animation:hover, .tablet\:bw-hover-menu > li > a:hover{
    opacity: 0.5;
  }

  .tablet\:bw-hover-animation:hover, .tablet\:bw-hover-menu > li > a:hover{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .tablet\:bw-hover-animation:hover, .tablet\:bw-hover-menu > li > a:hover{
    transition-duration: 300ms;
  }

  .tablet\:sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .tablet\:not-sr-only{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .tablet\:focus-within\:sr-only:focus-within{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .tablet\:focus-within\:not-sr-only:focus-within{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .tablet\:focus\:sr-only:focus{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .tablet\:focus\:not-sr-only:focus{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .tablet\:pointer-events-none{
    pointer-events: none;
  }

  .tablet\:pointer-events-auto{
    pointer-events: auto;
  }

  .tablet\:visible{
    visibility: visible;
  }

  .tablet\:invisible{
    visibility: hidden;
  }

  .tablet\:static{
    position: static;
  }

  .tablet\:fixed{
    position: fixed;
  }

  .tablet\:absolute{
    position: absolute;
  }

  .tablet\:relative{
    position: relative;
  }

  .tablet\:sticky{
    position: -webkit-sticky;
    position: sticky;
  }

  .tablet\:inset-0{
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }

  .tablet\:inset-1{
    top: 0.25rem;
    right: 0.25rem;
    bottom: 0.25rem;
    left: 0.25rem;
  }

  .tablet\:inset-2{
    top: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
  }

  .tablet\:inset-3{
    top: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .tablet\:inset-4{
    top: 1rem;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .tablet\:inset-5{
    top: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .tablet\:inset-6{
    top: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .tablet\:inset-7{
    top: 1.75rem;
    right: 1.75rem;
    bottom: 1.75rem;
    left: 1.75rem;
  }

  .tablet\:inset-8{
    top: 2rem;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
  }

  .tablet\:inset-9{
    top: 2.25rem;
    right: 2.25rem;
    bottom: 2.25rem;
    left: 2.25rem;
  }

  .tablet\:inset-10{
    top: 2.5rem;
    right: 2.5rem;
    bottom: 2.5rem;
    left: 2.5rem;
  }

  .tablet\:inset-11{
    top: 2.75rem;
    right: 2.75rem;
    bottom: 2.75rem;
    left: 2.75rem;
  }

  .tablet\:inset-12{
    top: 3rem;
    right: 3rem;
    bottom: 3rem;
    left: 3rem;
  }

  .tablet\:inset-14{
    top: 3.5rem;
    right: 3.5rem;
    bottom: 3.5rem;
    left: 3.5rem;
  }

  .tablet\:inset-16{
    top: 4rem;
    right: 4rem;
    bottom: 4rem;
    left: 4rem;
  }

  .tablet\:inset-20{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .tablet\:inset-24{
    top: 6rem;
    right: 6rem;
    bottom: 6rem;
    left: 6rem;
  }

  .tablet\:inset-28{
    top: 7rem;
    right: 7rem;
    bottom: 7rem;
    left: 7rem;
  }

  .tablet\:inset-32{
    top: 8rem;
    right: 8rem;
    bottom: 8rem;
    left: 8rem;
  }

  .tablet\:inset-36{
    top: 9rem;
    right: 9rem;
    bottom: 9rem;
    left: 9rem;
  }

  .tablet\:inset-40{
    top: 10rem;
    right: 10rem;
    bottom: 10rem;
    left: 10rem;
  }

  .tablet\:inset-44{
    top: 11rem;
    right: 11rem;
    bottom: 11rem;
    left: 11rem;
  }

  .tablet\:inset-48{
    top: 12rem;
    right: 12rem;
    bottom: 12rem;
    left: 12rem;
  }

  .tablet\:inset-52{
    top: 13rem;
    right: 13rem;
    bottom: 13rem;
    left: 13rem;
  }

  .tablet\:inset-56{
    top: 14rem;
    right: 14rem;
    bottom: 14rem;
    left: 14rem;
  }

  .tablet\:inset-60{
    top: 15rem;
    right: 15rem;
    bottom: 15rem;
    left: 15rem;
  }

  .tablet\:inset-64{
    top: 16rem;
    right: 16rem;
    bottom: 16rem;
    left: 16rem;
  }

  .tablet\:inset-72{
    top: 18rem;
    right: 18rem;
    bottom: 18rem;
    left: 18rem;
  }

  .tablet\:inset-80{
    top: 20rem;
    right: 20rem;
    bottom: 20rem;
    left: 20rem;
  }

  .tablet\:inset-96{
    top: 24rem;
    right: 24rem;
    bottom: 24rem;
    left: 24rem;
  }

  .tablet\:inset-auto{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .tablet\:inset-px{
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
  }

  .tablet\:inset-0\.5{
    top: 0.125rem;
    right: 0.125rem;
    bottom: 0.125rem;
    left: 0.125rem;
  }

  .tablet\:inset-1\.5{
    top: 0.375rem;
    right: 0.375rem;
    bottom: 0.375rem;
    left: 0.375rem;
  }

  .tablet\:inset-2\.5{
    top: 0.625rem;
    right: 0.625rem;
    bottom: 0.625rem;
    left: 0.625rem;
  }

  .tablet\:inset-3\.5{
    top: 0.875rem;
    right: 0.875rem;
    bottom: 0.875rem;
    left: 0.875rem;
  }

  .tablet\:-inset-0{
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }

  .tablet\:-inset-1{
    top: -0.25rem;
    right: -0.25rem;
    bottom: -0.25rem;
    left: -0.25rem;
  }

  .tablet\:-inset-2{
    top: -0.5rem;
    right: -0.5rem;
    bottom: -0.5rem;
    left: -0.5rem;
  }

  .tablet\:-inset-3{
    top: -0.75rem;
    right: -0.75rem;
    bottom: -0.75rem;
    left: -0.75rem;
  }

  .tablet\:-inset-4{
    top: -1rem;
    right: -1rem;
    bottom: -1rem;
    left: -1rem;
  }

  .tablet\:-inset-5{
    top: -1.25rem;
    right: -1.25rem;
    bottom: -1.25rem;
    left: -1.25rem;
  }

  .tablet\:-inset-6{
    top: -1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    left: -1.5rem;
  }

  .tablet\:-inset-7{
    top: -1.75rem;
    right: -1.75rem;
    bottom: -1.75rem;
    left: -1.75rem;
  }

  .tablet\:-inset-8{
    top: -2rem;
    right: -2rem;
    bottom: -2rem;
    left: -2rem;
  }

  .tablet\:-inset-9{
    top: -2.25rem;
    right: -2.25rem;
    bottom: -2.25rem;
    left: -2.25rem;
  }

  .tablet\:-inset-10{
    top: -2.5rem;
    right: -2.5rem;
    bottom: -2.5rem;
    left: -2.5rem;
  }

  .tablet\:-inset-11{
    top: -2.75rem;
    right: -2.75rem;
    bottom: -2.75rem;
    left: -2.75rem;
  }

  .tablet\:-inset-12{
    top: -3rem;
    right: -3rem;
    bottom: -3rem;
    left: -3rem;
  }

  .tablet\:-inset-14{
    top: -3.5rem;
    right: -3.5rem;
    bottom: -3.5rem;
    left: -3.5rem;
  }

  .tablet\:-inset-16{
    top: -4rem;
    right: -4rem;
    bottom: -4rem;
    left: -4rem;
  }

  .tablet\:-inset-20{
    top: -5rem;
    right: -5rem;
    bottom: -5rem;
    left: -5rem;
  }

  .tablet\:-inset-24{
    top: -6rem;
    right: -6rem;
    bottom: -6rem;
    left: -6rem;
  }

  .tablet\:-inset-28{
    top: -7rem;
    right: -7rem;
    bottom: -7rem;
    left: -7rem;
  }

  .tablet\:-inset-32{
    top: -8rem;
    right: -8rem;
    bottom: -8rem;
    left: -8rem;
  }

  .tablet\:-inset-36{
    top: -9rem;
    right: -9rem;
    bottom: -9rem;
    left: -9rem;
  }

  .tablet\:-inset-40{
    top: -10rem;
    right: -10rem;
    bottom: -10rem;
    left: -10rem;
  }

  .tablet\:-inset-44{
    top: -11rem;
    right: -11rem;
    bottom: -11rem;
    left: -11rem;
  }

  .tablet\:-inset-48{
    top: -12rem;
    right: -12rem;
    bottom: -12rem;
    left: -12rem;
  }

  .tablet\:-inset-52{
    top: -13rem;
    right: -13rem;
    bottom: -13rem;
    left: -13rem;
  }

  .tablet\:-inset-56{
    top: -14rem;
    right: -14rem;
    bottom: -14rem;
    left: -14rem;
  }

  .tablet\:-inset-60{
    top: -15rem;
    right: -15rem;
    bottom: -15rem;
    left: -15rem;
  }

  .tablet\:-inset-64{
    top: -16rem;
    right: -16rem;
    bottom: -16rem;
    left: -16rem;
  }

  .tablet\:-inset-72{
    top: -18rem;
    right: -18rem;
    bottom: -18rem;
    left: -18rem;
  }

  .tablet\:-inset-80{
    top: -20rem;
    right: -20rem;
    bottom: -20rem;
    left: -20rem;
  }

  .tablet\:-inset-96{
    top: -24rem;
    right: -24rem;
    bottom: -24rem;
    left: -24rem;
  }

  .tablet\:-inset-px{
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
  }

  .tablet\:-inset-0\.5{
    top: -0.125rem;
    right: -0.125rem;
    bottom: -0.125rem;
    left: -0.125rem;
  }

  .tablet\:-inset-1\.5{
    top: -0.375rem;
    right: -0.375rem;
    bottom: -0.375rem;
    left: -0.375rem;
  }

  .tablet\:-inset-2\.5{
    top: -0.625rem;
    right: -0.625rem;
    bottom: -0.625rem;
    left: -0.625rem;
  }

  .tablet\:-inset-3\.5{
    top: -0.875rem;
    right: -0.875rem;
    bottom: -0.875rem;
    left: -0.875rem;
  }

  .tablet\:inset-1\/2{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .tablet\:inset-1\/3{
    top: 33.333333%;
    right: 33.333333%;
    bottom: 33.333333%;
    left: 33.333333%;
  }

  .tablet\:inset-2\/3{
    top: 66.666667%;
    right: 66.666667%;
    bottom: 66.666667%;
    left: 66.666667%;
  }

  .tablet\:inset-1\/4{
    top: 25%;
    right: 25%;
    bottom: 25%;
    left: 25%;
  }

  .tablet\:inset-2\/4{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .tablet\:inset-3\/4{
    top: 75%;
    right: 75%;
    bottom: 75%;
    left: 75%;
  }

  .tablet\:inset-full{
    top: 100%;
    right: 100%;
    bottom: 100%;
    left: 100%;
  }

  .tablet\:-inset-1\/2{
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
  }

  .tablet\:-inset-1\/3{
    top: -33.333333%;
    right: -33.333333%;
    bottom: -33.333333%;
    left: -33.333333%;
  }

  .tablet\:-inset-2\/3{
    top: -66.666667%;
    right: -66.666667%;
    bottom: -66.666667%;
    left: -66.666667%;
  }

  .tablet\:-inset-1\/4{
    top: -25%;
    right: -25%;
    bottom: -25%;
    left: -25%;
  }

  .tablet\:-inset-2\/4{
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
  }

  .tablet\:-inset-3\/4{
    top: -75%;
    right: -75%;
    bottom: -75%;
    left: -75%;
  }

  .tablet\:-inset-full{
    top: -100%;
    right: -100%;
    bottom: -100%;
    left: -100%;
  }

  .tablet\:inset-x-0{
    left: 0px;
    right: 0px;
  }

  .tablet\:inset-x-1{
    left: 0.25rem;
    right: 0.25rem;
  }

  .tablet\:inset-x-2{
    left: 0.5rem;
    right: 0.5rem;
  }

  .tablet\:inset-x-3{
    left: 0.75rem;
    right: 0.75rem;
  }

  .tablet\:inset-x-4{
    left: 1rem;
    right: 1rem;
  }

  .tablet\:inset-x-5{
    left: 1.25rem;
    right: 1.25rem;
  }

  .tablet\:inset-x-6{
    left: 1.5rem;
    right: 1.5rem;
  }

  .tablet\:inset-x-7{
    left: 1.75rem;
    right: 1.75rem;
  }

  .tablet\:inset-x-8{
    left: 2rem;
    right: 2rem;
  }

  .tablet\:inset-x-9{
    left: 2.25rem;
    right: 2.25rem;
  }

  .tablet\:inset-x-10{
    left: 2.5rem;
    right: 2.5rem;
  }

  .tablet\:inset-x-11{
    left: 2.75rem;
    right: 2.75rem;
  }

  .tablet\:inset-x-12{
    left: 3rem;
    right: 3rem;
  }

  .tablet\:inset-x-14{
    left: 3.5rem;
    right: 3.5rem;
  }

  .tablet\:inset-x-16{
    left: 4rem;
    right: 4rem;
  }

  .tablet\:inset-x-20{
    left: 5rem;
    right: 5rem;
  }

  .tablet\:inset-x-24{
    left: 6rem;
    right: 6rem;
  }

  .tablet\:inset-x-28{
    left: 7rem;
    right: 7rem;
  }

  .tablet\:inset-x-32{
    left: 8rem;
    right: 8rem;
  }

  .tablet\:inset-x-36{
    left: 9rem;
    right: 9rem;
  }

  .tablet\:inset-x-40{
    left: 10rem;
    right: 10rem;
  }

  .tablet\:inset-x-44{
    left: 11rem;
    right: 11rem;
  }

  .tablet\:inset-x-48{
    left: 12rem;
    right: 12rem;
  }

  .tablet\:inset-x-52{
    left: 13rem;
    right: 13rem;
  }

  .tablet\:inset-x-56{
    left: 14rem;
    right: 14rem;
  }

  .tablet\:inset-x-60{
    left: 15rem;
    right: 15rem;
  }

  .tablet\:inset-x-64{
    left: 16rem;
    right: 16rem;
  }

  .tablet\:inset-x-72{
    left: 18rem;
    right: 18rem;
  }

  .tablet\:inset-x-80{
    left: 20rem;
    right: 20rem;
  }

  .tablet\:inset-x-96{
    left: 24rem;
    right: 24rem;
  }

  .tablet\:inset-x-auto{
    left: auto;
    right: auto;
  }

  .tablet\:inset-x-px{
    left: 1px;
    right: 1px;
  }

  .tablet\:inset-x-0\.5{
    left: 0.125rem;
    right: 0.125rem;
  }

  .tablet\:inset-x-1\.5{
    left: 0.375rem;
    right: 0.375rem;
  }

  .tablet\:inset-x-2\.5{
    left: 0.625rem;
    right: 0.625rem;
  }

  .tablet\:inset-x-3\.5{
    left: 0.875rem;
    right: 0.875rem;
  }

  .tablet\:-inset-x-0{
    left: 0px;
    right: 0px;
  }

  .tablet\:-inset-x-1{
    left: -0.25rem;
    right: -0.25rem;
  }

  .tablet\:-inset-x-2{
    left: -0.5rem;
    right: -0.5rem;
  }

  .tablet\:-inset-x-3{
    left: -0.75rem;
    right: -0.75rem;
  }

  .tablet\:-inset-x-4{
    left: -1rem;
    right: -1rem;
  }

  .tablet\:-inset-x-5{
    left: -1.25rem;
    right: -1.25rem;
  }

  .tablet\:-inset-x-6{
    left: -1.5rem;
    right: -1.5rem;
  }

  .tablet\:-inset-x-7{
    left: -1.75rem;
    right: -1.75rem;
  }

  .tablet\:-inset-x-8{
    left: -2rem;
    right: -2rem;
  }

  .tablet\:-inset-x-9{
    left: -2.25rem;
    right: -2.25rem;
  }

  .tablet\:-inset-x-10{
    left: -2.5rem;
    right: -2.5rem;
  }

  .tablet\:-inset-x-11{
    left: -2.75rem;
    right: -2.75rem;
  }

  .tablet\:-inset-x-12{
    left: -3rem;
    right: -3rem;
  }

  .tablet\:-inset-x-14{
    left: -3.5rem;
    right: -3.5rem;
  }

  .tablet\:-inset-x-16{
    left: -4rem;
    right: -4rem;
  }

  .tablet\:-inset-x-20{
    left: -5rem;
    right: -5rem;
  }

  .tablet\:-inset-x-24{
    left: -6rem;
    right: -6rem;
  }

  .tablet\:-inset-x-28{
    left: -7rem;
    right: -7rem;
  }

  .tablet\:-inset-x-32{
    left: -8rem;
    right: -8rem;
  }

  .tablet\:-inset-x-36{
    left: -9rem;
    right: -9rem;
  }

  .tablet\:-inset-x-40{
    left: -10rem;
    right: -10rem;
  }

  .tablet\:-inset-x-44{
    left: -11rem;
    right: -11rem;
  }

  .tablet\:-inset-x-48{
    left: -12rem;
    right: -12rem;
  }

  .tablet\:-inset-x-52{
    left: -13rem;
    right: -13rem;
  }

  .tablet\:-inset-x-56{
    left: -14rem;
    right: -14rem;
  }

  .tablet\:-inset-x-60{
    left: -15rem;
    right: -15rem;
  }

  .tablet\:-inset-x-64{
    left: -16rem;
    right: -16rem;
  }

  .tablet\:-inset-x-72{
    left: -18rem;
    right: -18rem;
  }

  .tablet\:-inset-x-80{
    left: -20rem;
    right: -20rem;
  }

  .tablet\:-inset-x-96{
    left: -24rem;
    right: -24rem;
  }

  .tablet\:-inset-x-px{
    left: -1px;
    right: -1px;
  }

  .tablet\:-inset-x-0\.5{
    left: -0.125rem;
    right: -0.125rem;
  }

  .tablet\:-inset-x-1\.5{
    left: -0.375rem;
    right: -0.375rem;
  }

  .tablet\:-inset-x-2\.5{
    left: -0.625rem;
    right: -0.625rem;
  }

  .tablet\:-inset-x-3\.5{
    left: -0.875rem;
    right: -0.875rem;
  }

  .tablet\:inset-x-1\/2{
    left: 50%;
    right: 50%;
  }

  .tablet\:inset-x-1\/3{
    left: 33.333333%;
    right: 33.333333%;
  }

  .tablet\:inset-x-2\/3{
    left: 66.666667%;
    right: 66.666667%;
  }

  .tablet\:inset-x-1\/4{
    left: 25%;
    right: 25%;
  }

  .tablet\:inset-x-2\/4{
    left: 50%;
    right: 50%;
  }

  .tablet\:inset-x-3\/4{
    left: 75%;
    right: 75%;
  }

  .tablet\:inset-x-full{
    left: 100%;
    right: 100%;
  }

  .tablet\:-inset-x-1\/2{
    left: -50%;
    right: -50%;
  }

  .tablet\:-inset-x-1\/3{
    left: -33.333333%;
    right: -33.333333%;
  }

  .tablet\:-inset-x-2\/3{
    left: -66.666667%;
    right: -66.666667%;
  }

  .tablet\:-inset-x-1\/4{
    left: -25%;
    right: -25%;
  }

  .tablet\:-inset-x-2\/4{
    left: -50%;
    right: -50%;
  }

  .tablet\:-inset-x-3\/4{
    left: -75%;
    right: -75%;
  }

  .tablet\:-inset-x-full{
    left: -100%;
    right: -100%;
  }

  .tablet\:inset-y-0{
    top: 0px;
    bottom: 0px;
  }

  .tablet\:inset-y-1{
    top: 0.25rem;
    bottom: 0.25rem;
  }

  .tablet\:inset-y-2{
    top: 0.5rem;
    bottom: 0.5rem;
  }

  .tablet\:inset-y-3{
    top: 0.75rem;
    bottom: 0.75rem;
  }

  .tablet\:inset-y-4{
    top: 1rem;
    bottom: 1rem;
  }

  .tablet\:inset-y-5{
    top: 1.25rem;
    bottom: 1.25rem;
  }

  .tablet\:inset-y-6{
    top: 1.5rem;
    bottom: 1.5rem;
  }

  .tablet\:inset-y-7{
    top: 1.75rem;
    bottom: 1.75rem;
  }

  .tablet\:inset-y-8{
    top: 2rem;
    bottom: 2rem;
  }

  .tablet\:inset-y-9{
    top: 2.25rem;
    bottom: 2.25rem;
  }

  .tablet\:inset-y-10{
    top: 2.5rem;
    bottom: 2.5rem;
  }

  .tablet\:inset-y-11{
    top: 2.75rem;
    bottom: 2.75rem;
  }

  .tablet\:inset-y-12{
    top: 3rem;
    bottom: 3rem;
  }

  .tablet\:inset-y-14{
    top: 3.5rem;
    bottom: 3.5rem;
  }

  .tablet\:inset-y-16{
    top: 4rem;
    bottom: 4rem;
  }

  .tablet\:inset-y-20{
    top: 5rem;
    bottom: 5rem;
  }

  .tablet\:inset-y-24{
    top: 6rem;
    bottom: 6rem;
  }

  .tablet\:inset-y-28{
    top: 7rem;
    bottom: 7rem;
  }

  .tablet\:inset-y-32{
    top: 8rem;
    bottom: 8rem;
  }

  .tablet\:inset-y-36{
    top: 9rem;
    bottom: 9rem;
  }

  .tablet\:inset-y-40{
    top: 10rem;
    bottom: 10rem;
  }

  .tablet\:inset-y-44{
    top: 11rem;
    bottom: 11rem;
  }

  .tablet\:inset-y-48{
    top: 12rem;
    bottom: 12rem;
  }

  .tablet\:inset-y-52{
    top: 13rem;
    bottom: 13rem;
  }

  .tablet\:inset-y-56{
    top: 14rem;
    bottom: 14rem;
  }

  .tablet\:inset-y-60{
    top: 15rem;
    bottom: 15rem;
  }

  .tablet\:inset-y-64{
    top: 16rem;
    bottom: 16rem;
  }

  .tablet\:inset-y-72{
    top: 18rem;
    bottom: 18rem;
  }

  .tablet\:inset-y-80{
    top: 20rem;
    bottom: 20rem;
  }

  .tablet\:inset-y-96{
    top: 24rem;
    bottom: 24rem;
  }

  .tablet\:inset-y-auto{
    top: auto;
    bottom: auto;
  }

  .tablet\:inset-y-px{
    top: 1px;
    bottom: 1px;
  }

  .tablet\:inset-y-0\.5{
    top: 0.125rem;
    bottom: 0.125rem;
  }

  .tablet\:inset-y-1\.5{
    top: 0.375rem;
    bottom: 0.375rem;
  }

  .tablet\:inset-y-2\.5{
    top: 0.625rem;
    bottom: 0.625rem;
  }

  .tablet\:inset-y-3\.5{
    top: 0.875rem;
    bottom: 0.875rem;
  }

  .tablet\:-inset-y-0{
    top: 0px;
    bottom: 0px;
  }

  .tablet\:-inset-y-1{
    top: -0.25rem;
    bottom: -0.25rem;
  }

  .tablet\:-inset-y-2{
    top: -0.5rem;
    bottom: -0.5rem;
  }

  .tablet\:-inset-y-3{
    top: -0.75rem;
    bottom: -0.75rem;
  }

  .tablet\:-inset-y-4{
    top: -1rem;
    bottom: -1rem;
  }

  .tablet\:-inset-y-5{
    top: -1.25rem;
    bottom: -1.25rem;
  }

  .tablet\:-inset-y-6{
    top: -1.5rem;
    bottom: -1.5rem;
  }

  .tablet\:-inset-y-7{
    top: -1.75rem;
    bottom: -1.75rem;
  }

  .tablet\:-inset-y-8{
    top: -2rem;
    bottom: -2rem;
  }

  .tablet\:-inset-y-9{
    top: -2.25rem;
    bottom: -2.25rem;
  }

  .tablet\:-inset-y-10{
    top: -2.5rem;
    bottom: -2.5rem;
  }

  .tablet\:-inset-y-11{
    top: -2.75rem;
    bottom: -2.75rem;
  }

  .tablet\:-inset-y-12{
    top: -3rem;
    bottom: -3rem;
  }

  .tablet\:-inset-y-14{
    top: -3.5rem;
    bottom: -3.5rem;
  }

  .tablet\:-inset-y-16{
    top: -4rem;
    bottom: -4rem;
  }

  .tablet\:-inset-y-20{
    top: -5rem;
    bottom: -5rem;
  }

  .tablet\:-inset-y-24{
    top: -6rem;
    bottom: -6rem;
  }

  .tablet\:-inset-y-28{
    top: -7rem;
    bottom: -7rem;
  }

  .tablet\:-inset-y-32{
    top: -8rem;
    bottom: -8rem;
  }

  .tablet\:-inset-y-36{
    top: -9rem;
    bottom: -9rem;
  }

  .tablet\:-inset-y-40{
    top: -10rem;
    bottom: -10rem;
  }

  .tablet\:-inset-y-44{
    top: -11rem;
    bottom: -11rem;
  }

  .tablet\:-inset-y-48{
    top: -12rem;
    bottom: -12rem;
  }

  .tablet\:-inset-y-52{
    top: -13rem;
    bottom: -13rem;
  }

  .tablet\:-inset-y-56{
    top: -14rem;
    bottom: -14rem;
  }

  .tablet\:-inset-y-60{
    top: -15rem;
    bottom: -15rem;
  }

  .tablet\:-inset-y-64{
    top: -16rem;
    bottom: -16rem;
  }

  .tablet\:-inset-y-72{
    top: -18rem;
    bottom: -18rem;
  }

  .tablet\:-inset-y-80{
    top: -20rem;
    bottom: -20rem;
  }

  .tablet\:-inset-y-96{
    top: -24rem;
    bottom: -24rem;
  }

  .tablet\:-inset-y-px{
    top: -1px;
    bottom: -1px;
  }

  .tablet\:-inset-y-0\.5{
    top: -0.125rem;
    bottom: -0.125rem;
  }

  .tablet\:-inset-y-1\.5{
    top: -0.375rem;
    bottom: -0.375rem;
  }

  .tablet\:-inset-y-2\.5{
    top: -0.625rem;
    bottom: -0.625rem;
  }

  .tablet\:-inset-y-3\.5{
    top: -0.875rem;
    bottom: -0.875rem;
  }

  .tablet\:inset-y-1\/2{
    top: 50%;
    bottom: 50%;
  }

  .tablet\:inset-y-1\/3{
    top: 33.333333%;
    bottom: 33.333333%;
  }

  .tablet\:inset-y-2\/3{
    top: 66.666667%;
    bottom: 66.666667%;
  }

  .tablet\:inset-y-1\/4{
    top: 25%;
    bottom: 25%;
  }

  .tablet\:inset-y-2\/4{
    top: 50%;
    bottom: 50%;
  }

  .tablet\:inset-y-3\/4{
    top: 75%;
    bottom: 75%;
  }

  .tablet\:inset-y-full{
    top: 100%;
    bottom: 100%;
  }

  .tablet\:-inset-y-1\/2{
    top: -50%;
    bottom: -50%;
  }

  .tablet\:-inset-y-1\/3{
    top: -33.333333%;
    bottom: -33.333333%;
  }

  .tablet\:-inset-y-2\/3{
    top: -66.666667%;
    bottom: -66.666667%;
  }

  .tablet\:-inset-y-1\/4{
    top: -25%;
    bottom: -25%;
  }

  .tablet\:-inset-y-2\/4{
    top: -50%;
    bottom: -50%;
  }

  .tablet\:-inset-y-3\/4{
    top: -75%;
    bottom: -75%;
  }

  .tablet\:-inset-y-full{
    top: -100%;
    bottom: -100%;
  }

  .tablet\:top-0{
    top: 0px;
  }

  .tablet\:top-1{
    top: 0.25rem;
  }

  .tablet\:top-2{
    top: 0.5rem;
  }

  .tablet\:top-3{
    top: 0.75rem;
  }

  .tablet\:top-4{
    top: 1rem;
  }

  .tablet\:top-5{
    top: 1.25rem;
  }

  .tablet\:top-6{
    top: 1.5rem;
  }

  .tablet\:top-7{
    top: 1.75rem;
  }

  .tablet\:top-8{
    top: 2rem;
  }

  .tablet\:top-9{
    top: 2.25rem;
  }

  .tablet\:top-10{
    top: 2.5rem;
  }

  .tablet\:top-11{
    top: 2.75rem;
  }

  .tablet\:top-12{
    top: 3rem;
  }

  .tablet\:top-14{
    top: 3.5rem;
  }

  .tablet\:top-16{
    top: 4rem;
  }

  .tablet\:top-20{
    top: 5rem;
  }

  .tablet\:top-24{
    top: 6rem;
  }

  .tablet\:top-28{
    top: 7rem;
  }

  .tablet\:top-32{
    top: 8rem;
  }

  .tablet\:top-36{
    top: 9rem;
  }

  .tablet\:top-40{
    top: 10rem;
  }

  .tablet\:top-44{
    top: 11rem;
  }

  .tablet\:top-48{
    top: 12rem;
  }

  .tablet\:top-52{
    top: 13rem;
  }

  .tablet\:top-56{
    top: 14rem;
  }

  .tablet\:top-60{
    top: 15rem;
  }

  .tablet\:top-64{
    top: 16rem;
  }

  .tablet\:top-72{
    top: 18rem;
  }

  .tablet\:top-80{
    top: 20rem;
  }

  .tablet\:top-96{
    top: 24rem;
  }

  .tablet\:top-auto{
    top: auto;
  }

  .tablet\:top-px{
    top: 1px;
  }

  .tablet\:top-0\.5{
    top: 0.125rem;
  }

  .tablet\:top-1\.5{
    top: 0.375rem;
  }

  .tablet\:top-2\.5{
    top: 0.625rem;
  }

  .tablet\:top-3\.5{
    top: 0.875rem;
  }

  .tablet\:-top-0{
    top: 0px;
  }

  .tablet\:-top-1{
    top: -0.25rem;
  }

  .tablet\:-top-2{
    top: -0.5rem;
  }

  .tablet\:-top-3{
    top: -0.75rem;
  }

  .tablet\:-top-4{
    top: -1rem;
  }

  .tablet\:-top-5{
    top: -1.25rem;
  }

  .tablet\:-top-6{
    top: -1.5rem;
  }

  .tablet\:-top-7{
    top: -1.75rem;
  }

  .tablet\:-top-8{
    top: -2rem;
  }

  .tablet\:-top-9{
    top: -2.25rem;
  }

  .tablet\:-top-10{
    top: -2.5rem;
  }

  .tablet\:-top-11{
    top: -2.75rem;
  }

  .tablet\:-top-12{
    top: -3rem;
  }

  .tablet\:-top-14{
    top: -3.5rem;
  }

  .tablet\:-top-16{
    top: -4rem;
  }

  .tablet\:-top-20{
    top: -5rem;
  }

  .tablet\:-top-24{
    top: -6rem;
  }

  .tablet\:-top-28{
    top: -7rem;
  }

  .tablet\:-top-32{
    top: -8rem;
  }

  .tablet\:-top-36{
    top: -9rem;
  }

  .tablet\:-top-40{
    top: -10rem;
  }

  .tablet\:-top-44{
    top: -11rem;
  }

  .tablet\:-top-48{
    top: -12rem;
  }

  .tablet\:-top-52{
    top: -13rem;
  }

  .tablet\:-top-56{
    top: -14rem;
  }

  .tablet\:-top-60{
    top: -15rem;
  }

  .tablet\:-top-64{
    top: -16rem;
  }

  .tablet\:-top-72{
    top: -18rem;
  }

  .tablet\:-top-80{
    top: -20rem;
  }

  .tablet\:-top-96{
    top: -24rem;
  }

  .tablet\:-top-px{
    top: -1px;
  }

  .tablet\:-top-0\.5{
    top: -0.125rem;
  }

  .tablet\:-top-1\.5{
    top: -0.375rem;
  }

  .tablet\:-top-2\.5{
    top: -0.625rem;
  }

  .tablet\:-top-3\.5{
    top: -0.875rem;
  }

  .tablet\:top-1\/2{
    top: 50%;
  }

  .tablet\:top-1\/3{
    top: 33.333333%;
  }

  .tablet\:top-2\/3{
    top: 66.666667%;
  }

  .tablet\:top-1\/4{
    top: 25%;
  }

  .tablet\:top-2\/4{
    top: 50%;
  }

  .tablet\:top-3\/4{
    top: 75%;
  }

  .tablet\:top-full{
    top: 100%;
  }

  .tablet\:-top-1\/2{
    top: -50%;
  }

  .tablet\:-top-1\/3{
    top: -33.333333%;
  }

  .tablet\:-top-2\/3{
    top: -66.666667%;
  }

  .tablet\:-top-1\/4{
    top: -25%;
  }

  .tablet\:-top-2\/4{
    top: -50%;
  }

  .tablet\:-top-3\/4{
    top: -75%;
  }

  .tablet\:-top-full{
    top: -100%;
  }

  .tablet\:right-0{
    right: 0px;
  }

  .tablet\:right-1{
    right: 0.25rem;
  }

  .tablet\:right-2{
    right: 0.5rem;
  }

  .tablet\:right-3{
    right: 0.75rem;
  }

  .tablet\:right-4{
    right: 1rem;
  }

  .tablet\:right-5{
    right: 1.25rem;
  }

  .tablet\:right-6{
    right: 1.5rem;
  }

  .tablet\:right-7{
    right: 1.75rem;
  }

  .tablet\:right-8{
    right: 2rem;
  }

  .tablet\:right-9{
    right: 2.25rem;
  }

  .tablet\:right-10{
    right: 2.5rem;
  }

  .tablet\:right-11{
    right: 2.75rem;
  }

  .tablet\:right-12{
    right: 3rem;
  }

  .tablet\:right-14{
    right: 3.5rem;
  }

  .tablet\:right-16{
    right: 4rem;
  }

  .tablet\:right-20{
    right: 5rem;
  }

  .tablet\:right-24{
    right: 6rem;
  }

  .tablet\:right-28{
    right: 7rem;
  }

  .tablet\:right-32{
    right: 8rem;
  }

  .tablet\:right-36{
    right: 9rem;
  }

  .tablet\:right-40{
    right: 10rem;
  }

  .tablet\:right-44{
    right: 11rem;
  }

  .tablet\:right-48{
    right: 12rem;
  }

  .tablet\:right-52{
    right: 13rem;
  }

  .tablet\:right-56{
    right: 14rem;
  }

  .tablet\:right-60{
    right: 15rem;
  }

  .tablet\:right-64{
    right: 16rem;
  }

  .tablet\:right-72{
    right: 18rem;
  }

  .tablet\:right-80{
    right: 20rem;
  }

  .tablet\:right-96{
    right: 24rem;
  }

  .tablet\:right-auto{
    right: auto;
  }

  .tablet\:right-px{
    right: 1px;
  }

  .tablet\:right-0\.5{
    right: 0.125rem;
  }

  .tablet\:right-1\.5{
    right: 0.375rem;
  }

  .tablet\:right-2\.5{
    right: 0.625rem;
  }

  .tablet\:right-3\.5{
    right: 0.875rem;
  }

  .tablet\:-right-0{
    right: 0px;
  }

  .tablet\:-right-1{
    right: -0.25rem;
  }

  .tablet\:-right-2{
    right: -0.5rem;
  }

  .tablet\:-right-3{
    right: -0.75rem;
  }

  .tablet\:-right-4{
    right: -1rem;
  }

  .tablet\:-right-5{
    right: -1.25rem;
  }

  .tablet\:-right-6{
    right: -1.5rem;
  }

  .tablet\:-right-7{
    right: -1.75rem;
  }

  .tablet\:-right-8{
    right: -2rem;
  }

  .tablet\:-right-9{
    right: -2.25rem;
  }

  .tablet\:-right-10{
    right: -2.5rem;
  }

  .tablet\:-right-11{
    right: -2.75rem;
  }

  .tablet\:-right-12{
    right: -3rem;
  }

  .tablet\:-right-14{
    right: -3.5rem;
  }

  .tablet\:-right-16{
    right: -4rem;
  }

  .tablet\:-right-20{
    right: -5rem;
  }

  .tablet\:-right-24{
    right: -6rem;
  }

  .tablet\:-right-28{
    right: -7rem;
  }

  .tablet\:-right-32{
    right: -8rem;
  }

  .tablet\:-right-36{
    right: -9rem;
  }

  .tablet\:-right-40{
    right: -10rem;
  }

  .tablet\:-right-44{
    right: -11rem;
  }

  .tablet\:-right-48{
    right: -12rem;
  }

  .tablet\:-right-52{
    right: -13rem;
  }

  .tablet\:-right-56{
    right: -14rem;
  }

  .tablet\:-right-60{
    right: -15rem;
  }

  .tablet\:-right-64{
    right: -16rem;
  }

  .tablet\:-right-72{
    right: -18rem;
  }

  .tablet\:-right-80{
    right: -20rem;
  }

  .tablet\:-right-96{
    right: -24rem;
  }

  .tablet\:-right-px{
    right: -1px;
  }

  .tablet\:-right-0\.5{
    right: -0.125rem;
  }

  .tablet\:-right-1\.5{
    right: -0.375rem;
  }

  .tablet\:-right-2\.5{
    right: -0.625rem;
  }

  .tablet\:-right-3\.5{
    right: -0.875rem;
  }

  .tablet\:right-1\/2{
    right: 50%;
  }

  .tablet\:right-1\/3{
    right: 33.333333%;
  }

  .tablet\:right-2\/3{
    right: 66.666667%;
  }

  .tablet\:right-1\/4{
    right: 25%;
  }

  .tablet\:right-2\/4{
    right: 50%;
  }

  .tablet\:right-3\/4{
    right: 75%;
  }

  .tablet\:right-full{
    right: 100%;
  }

  .tablet\:-right-1\/2{
    right: -50%;
  }

  .tablet\:-right-1\/3{
    right: -33.333333%;
  }

  .tablet\:-right-2\/3{
    right: -66.666667%;
  }

  .tablet\:-right-1\/4{
    right: -25%;
  }

  .tablet\:-right-2\/4{
    right: -50%;
  }

  .tablet\:-right-3\/4{
    right: -75%;
  }

  .tablet\:-right-full{
    right: -100%;
  }

  .tablet\:bottom-0{
    bottom: 0px;
  }

  .tablet\:bottom-1{
    bottom: 0.25rem;
  }

  .tablet\:bottom-2{
    bottom: 0.5rem;
  }

  .tablet\:bottom-3{
    bottom: 0.75rem;
  }

  .tablet\:bottom-4{
    bottom: 1rem;
  }

  .tablet\:bottom-5{
    bottom: 1.25rem;
  }

  .tablet\:bottom-6{
    bottom: 1.5rem;
  }

  .tablet\:bottom-7{
    bottom: 1.75rem;
  }

  .tablet\:bottom-8{
    bottom: 2rem;
  }

  .tablet\:bottom-9{
    bottom: 2.25rem;
  }

  .tablet\:bottom-10{
    bottom: 2.5rem;
  }

  .tablet\:bottom-11{
    bottom: 2.75rem;
  }

  .tablet\:bottom-12{
    bottom: 3rem;
  }

  .tablet\:bottom-14{
    bottom: 3.5rem;
  }

  .tablet\:bottom-16{
    bottom: 4rem;
  }

  .tablet\:bottom-20{
    bottom: 5rem;
  }

  .tablet\:bottom-24{
    bottom: 6rem;
  }

  .tablet\:bottom-28{
    bottom: 7rem;
  }

  .tablet\:bottom-32{
    bottom: 8rem;
  }

  .tablet\:bottom-36{
    bottom: 9rem;
  }

  .tablet\:bottom-40{
    bottom: 10rem;
  }

  .tablet\:bottom-44{
    bottom: 11rem;
  }

  .tablet\:bottom-48{
    bottom: 12rem;
  }

  .tablet\:bottom-52{
    bottom: 13rem;
  }

  .tablet\:bottom-56{
    bottom: 14rem;
  }

  .tablet\:bottom-60{
    bottom: 15rem;
  }

  .tablet\:bottom-64{
    bottom: 16rem;
  }

  .tablet\:bottom-72{
    bottom: 18rem;
  }

  .tablet\:bottom-80{
    bottom: 20rem;
  }

  .tablet\:bottom-96{
    bottom: 24rem;
  }

  .tablet\:bottom-auto{
    bottom: auto;
  }

  .tablet\:bottom-px{
    bottom: 1px;
  }

  .tablet\:bottom-0\.5{
    bottom: 0.125rem;
  }

  .tablet\:bottom-1\.5{
    bottom: 0.375rem;
  }

  .tablet\:bottom-2\.5{
    bottom: 0.625rem;
  }

  .tablet\:bottom-3\.5{
    bottom: 0.875rem;
  }

  .tablet\:-bottom-0{
    bottom: 0px;
  }

  .tablet\:-bottom-1{
    bottom: -0.25rem;
  }

  .tablet\:-bottom-2{
    bottom: -0.5rem;
  }

  .tablet\:-bottom-3{
    bottom: -0.75rem;
  }

  .tablet\:-bottom-4{
    bottom: -1rem;
  }

  .tablet\:-bottom-5{
    bottom: -1.25rem;
  }

  .tablet\:-bottom-6{
    bottom: -1.5rem;
  }

  .tablet\:-bottom-7{
    bottom: -1.75rem;
  }

  .tablet\:-bottom-8{
    bottom: -2rem;
  }

  .tablet\:-bottom-9{
    bottom: -2.25rem;
  }

  .tablet\:-bottom-10{
    bottom: -2.5rem;
  }

  .tablet\:-bottom-11{
    bottom: -2.75rem;
  }

  .tablet\:-bottom-12{
    bottom: -3rem;
  }

  .tablet\:-bottom-14{
    bottom: -3.5rem;
  }

  .tablet\:-bottom-16{
    bottom: -4rem;
  }

  .tablet\:-bottom-20{
    bottom: -5rem;
  }

  .tablet\:-bottom-24{
    bottom: -6rem;
  }

  .tablet\:-bottom-28{
    bottom: -7rem;
  }

  .tablet\:-bottom-32{
    bottom: -8rem;
  }

  .tablet\:-bottom-36{
    bottom: -9rem;
  }

  .tablet\:-bottom-40{
    bottom: -10rem;
  }

  .tablet\:-bottom-44{
    bottom: -11rem;
  }

  .tablet\:-bottom-48{
    bottom: -12rem;
  }

  .tablet\:-bottom-52{
    bottom: -13rem;
  }

  .tablet\:-bottom-56{
    bottom: -14rem;
  }

  .tablet\:-bottom-60{
    bottom: -15rem;
  }

  .tablet\:-bottom-64{
    bottom: -16rem;
  }

  .tablet\:-bottom-72{
    bottom: -18rem;
  }

  .tablet\:-bottom-80{
    bottom: -20rem;
  }

  .tablet\:-bottom-96{
    bottom: -24rem;
  }

  .tablet\:-bottom-px{
    bottom: -1px;
  }

  .tablet\:-bottom-0\.5{
    bottom: -0.125rem;
  }

  .tablet\:-bottom-1\.5{
    bottom: -0.375rem;
  }

  .tablet\:-bottom-2\.5{
    bottom: -0.625rem;
  }

  .tablet\:-bottom-3\.5{
    bottom: -0.875rem;
  }

  .tablet\:bottom-1\/2{
    bottom: 50%;
  }

  .tablet\:bottom-1\/3{
    bottom: 33.333333%;
  }

  .tablet\:bottom-2\/3{
    bottom: 66.666667%;
  }

  .tablet\:bottom-1\/4{
    bottom: 25%;
  }

  .tablet\:bottom-2\/4{
    bottom: 50%;
  }

  .tablet\:bottom-3\/4{
    bottom: 75%;
  }

  .tablet\:bottom-full{
    bottom: 100%;
  }

  .tablet\:-bottom-1\/2{
    bottom: -50%;
  }

  .tablet\:-bottom-1\/3{
    bottom: -33.333333%;
  }

  .tablet\:-bottom-2\/3{
    bottom: -66.666667%;
  }

  .tablet\:-bottom-1\/4{
    bottom: -25%;
  }

  .tablet\:-bottom-2\/4{
    bottom: -50%;
  }

  .tablet\:-bottom-3\/4{
    bottom: -75%;
  }

  .tablet\:-bottom-full{
    bottom: -100%;
  }

  .tablet\:left-0{
    left: 0px;
  }

  .tablet\:left-1{
    left: 0.25rem;
  }

  .tablet\:left-2{
    left: 0.5rem;
  }

  .tablet\:left-3{
    left: 0.75rem;
  }

  .tablet\:left-4{
    left: 1rem;
  }

  .tablet\:left-5{
    left: 1.25rem;
  }

  .tablet\:left-6{
    left: 1.5rem;
  }

  .tablet\:left-7{
    left: 1.75rem;
  }

  .tablet\:left-8{
    left: 2rem;
  }

  .tablet\:left-9{
    left: 2.25rem;
  }

  .tablet\:left-10{
    left: 2.5rem;
  }

  .tablet\:left-11{
    left: 2.75rem;
  }

  .tablet\:left-12{
    left: 3rem;
  }

  .tablet\:left-14{
    left: 3.5rem;
  }

  .tablet\:left-16{
    left: 4rem;
  }

  .tablet\:left-20{
    left: 5rem;
  }

  .tablet\:left-24{
    left: 6rem;
  }

  .tablet\:left-28{
    left: 7rem;
  }

  .tablet\:left-32{
    left: 8rem;
  }

  .tablet\:left-36{
    left: 9rem;
  }

  .tablet\:left-40{
    left: 10rem;
  }

  .tablet\:left-44{
    left: 11rem;
  }

  .tablet\:left-48{
    left: 12rem;
  }

  .tablet\:left-52{
    left: 13rem;
  }

  .tablet\:left-56{
    left: 14rem;
  }

  .tablet\:left-60{
    left: 15rem;
  }

  .tablet\:left-64{
    left: 16rem;
  }

  .tablet\:left-72{
    left: 18rem;
  }

  .tablet\:left-80{
    left: 20rem;
  }

  .tablet\:left-96{
    left: 24rem;
  }

  .tablet\:left-auto{
    left: auto;
  }

  .tablet\:left-px{
    left: 1px;
  }

  .tablet\:left-0\.5{
    left: 0.125rem;
  }

  .tablet\:left-1\.5{
    left: 0.375rem;
  }

  .tablet\:left-2\.5{
    left: 0.625rem;
  }

  .tablet\:left-3\.5{
    left: 0.875rem;
  }

  .tablet\:-left-0{
    left: 0px;
  }

  .tablet\:-left-1{
    left: -0.25rem;
  }

  .tablet\:-left-2{
    left: -0.5rem;
  }

  .tablet\:-left-3{
    left: -0.75rem;
  }

  .tablet\:-left-4{
    left: -1rem;
  }

  .tablet\:-left-5{
    left: -1.25rem;
  }

  .tablet\:-left-6{
    left: -1.5rem;
  }

  .tablet\:-left-7{
    left: -1.75rem;
  }

  .tablet\:-left-8{
    left: -2rem;
  }

  .tablet\:-left-9{
    left: -2.25rem;
  }

  .tablet\:-left-10{
    left: -2.5rem;
  }

  .tablet\:-left-11{
    left: -2.75rem;
  }

  .tablet\:-left-12{
    left: -3rem;
  }

  .tablet\:-left-14{
    left: -3.5rem;
  }

  .tablet\:-left-16{
    left: -4rem;
  }

  .tablet\:-left-20{
    left: -5rem;
  }

  .tablet\:-left-24{
    left: -6rem;
  }

  .tablet\:-left-28{
    left: -7rem;
  }

  .tablet\:-left-32{
    left: -8rem;
  }

  .tablet\:-left-36{
    left: -9rem;
  }

  .tablet\:-left-40{
    left: -10rem;
  }

  .tablet\:-left-44{
    left: -11rem;
  }

  .tablet\:-left-48{
    left: -12rem;
  }

  .tablet\:-left-52{
    left: -13rem;
  }

  .tablet\:-left-56{
    left: -14rem;
  }

  .tablet\:-left-60{
    left: -15rem;
  }

  .tablet\:-left-64{
    left: -16rem;
  }

  .tablet\:-left-72{
    left: -18rem;
  }

  .tablet\:-left-80{
    left: -20rem;
  }

  .tablet\:-left-96{
    left: -24rem;
  }

  .tablet\:-left-px{
    left: -1px;
  }

  .tablet\:-left-0\.5{
    left: -0.125rem;
  }

  .tablet\:-left-1\.5{
    left: -0.375rem;
  }

  .tablet\:-left-2\.5{
    left: -0.625rem;
  }

  .tablet\:-left-3\.5{
    left: -0.875rem;
  }

  .tablet\:left-1\/2{
    left: 50%;
  }

  .tablet\:left-1\/3{
    left: 33.333333%;
  }

  .tablet\:left-2\/3{
    left: 66.666667%;
  }

  .tablet\:left-1\/4{
    left: 25%;
  }

  .tablet\:left-2\/4{
    left: 50%;
  }

  .tablet\:left-3\/4{
    left: 75%;
  }

  .tablet\:left-full{
    left: 100%;
  }

  .tablet\:-left-1\/2{
    left: -50%;
  }

  .tablet\:-left-1\/3{
    left: -33.333333%;
  }

  .tablet\:-left-2\/3{
    left: -66.666667%;
  }

  .tablet\:-left-1\/4{
    left: -25%;
  }

  .tablet\:-left-2\/4{
    left: -50%;
  }

  .tablet\:-left-3\/4{
    left: -75%;
  }

  .tablet\:-left-full{
    left: -100%;
  }

  .tablet\:isolate{
    isolation: isolate;
  }

  .tablet\:isolation-auto{
    isolation: auto;
  }

  .tablet\:z-0{
    z-index: 0;
  }

  .tablet\:z-10{
    z-index: 10;
  }

  .tablet\:z-20{
    z-index: 20;
  }

  .tablet\:z-30{
    z-index: 30;
  }

  .tablet\:z-40{
    z-index: 40;
  }

  .tablet\:z-50{
    z-index: 50;
  }

  .tablet\:z-60{
    z-index: 60;
  }

  .tablet\:z-70{
    z-index: 70;
  }

  .tablet\:z-80{
    z-index: 80;
  }

  .tablet\:z-90{
    z-index: 90;
  }

  .tablet\:z-100{
    z-index: 100;
  }

  .tablet\:z-auto{
    z-index: auto;
  }

  .tablet\:focus-within\:z-0:focus-within{
    z-index: 0;
  }

  .tablet\:focus-within\:z-10:focus-within{
    z-index: 10;
  }

  .tablet\:focus-within\:z-20:focus-within{
    z-index: 20;
  }

  .tablet\:focus-within\:z-30:focus-within{
    z-index: 30;
  }

  .tablet\:focus-within\:z-40:focus-within{
    z-index: 40;
  }

  .tablet\:focus-within\:z-50:focus-within{
    z-index: 50;
  }

  .tablet\:focus-within\:z-60:focus-within{
    z-index: 60;
  }

  .tablet\:focus-within\:z-70:focus-within{
    z-index: 70;
  }

  .tablet\:focus-within\:z-80:focus-within{
    z-index: 80;
  }

  .tablet\:focus-within\:z-90:focus-within{
    z-index: 90;
  }

  .tablet\:focus-within\:z-100:focus-within{
    z-index: 100;
  }

  .tablet\:focus-within\:z-auto:focus-within{
    z-index: auto;
  }

  .tablet\:focus\:z-0:focus{
    z-index: 0;
  }

  .tablet\:focus\:z-10:focus{
    z-index: 10;
  }

  .tablet\:focus\:z-20:focus{
    z-index: 20;
  }

  .tablet\:focus\:z-30:focus{
    z-index: 30;
  }

  .tablet\:focus\:z-40:focus{
    z-index: 40;
  }

  .tablet\:focus\:z-50:focus{
    z-index: 50;
  }

  .tablet\:focus\:z-60:focus{
    z-index: 60;
  }

  .tablet\:focus\:z-70:focus{
    z-index: 70;
  }

  .tablet\:focus\:z-80:focus{
    z-index: 80;
  }

  .tablet\:focus\:z-90:focus{
    z-index: 90;
  }

  .tablet\:focus\:z-100:focus{
    z-index: 100;
  }

  .tablet\:focus\:z-auto:focus{
    z-index: auto;
  }

  .tablet\:order-1{
    order: 1;
  }

  .tablet\:order-2{
    order: 2;
  }

  .tablet\:order-3{
    order: 3;
  }

  .tablet\:order-4{
    order: 4;
  }

  .tablet\:order-5{
    order: 5;
  }

  .tablet\:order-6{
    order: 6;
  }

  .tablet\:order-7{
    order: 7;
  }

  .tablet\:order-8{
    order: 8;
  }

  .tablet\:order-9{
    order: 9;
  }

  .tablet\:order-10{
    order: 10;
  }

  .tablet\:order-11{
    order: 11;
  }

  .tablet\:order-12{
    order: 12;
  }

  .tablet\:order-first{
    order: -9999;
  }

  .tablet\:order-last{
    order: 9999;
  }

  .tablet\:order-none{
    order: 0;
  }

  .tablet\:col-auto{
    grid-column: auto;
  }

  .tablet\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .tablet\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .tablet\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .tablet\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .tablet\:col-span-5{
    grid-column: span 5 / span 5;
  }

  .tablet\:col-span-6{
    grid-column: span 6 / span 6;
  }

  .tablet\:col-span-7{
    grid-column: span 7 / span 7;
  }

  .tablet\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .tablet\:col-span-9{
    grid-column: span 9 / span 9;
  }

  .tablet\:col-span-10{
    grid-column: span 10 / span 10;
  }

  .tablet\:col-span-11{
    grid-column: span 11 / span 11;
  }

  .tablet\:col-span-12{
    grid-column: span 12 / span 12;
  }

  .tablet\:col-span-full{
    grid-column: 1 / -1;
  }

  .tablet\:col-start-1{
    grid-column-start: 1;
  }

  .tablet\:col-start-2{
    grid-column-start: 2;
  }

  .tablet\:col-start-3{
    grid-column-start: 3;
  }

  .tablet\:col-start-4{
    grid-column-start: 4;
  }

  .tablet\:col-start-5{
    grid-column-start: 5;
  }

  .tablet\:col-start-6{
    grid-column-start: 6;
  }

  .tablet\:col-start-7{
    grid-column-start: 7;
  }

  .tablet\:col-start-8{
    grid-column-start: 8;
  }

  .tablet\:col-start-9{
    grid-column-start: 9;
  }

  .tablet\:col-start-10{
    grid-column-start: 10;
  }

  .tablet\:col-start-11{
    grid-column-start: 11;
  }

  .tablet\:col-start-12{
    grid-column-start: 12;
  }

  .tablet\:col-start-13{
    grid-column-start: 13;
  }

  .tablet\:col-start-auto{
    grid-column-start: auto;
  }

  .tablet\:col-end-1{
    grid-column-end: 1;
  }

  .tablet\:col-end-2{
    grid-column-end: 2;
  }

  .tablet\:col-end-3{
    grid-column-end: 3;
  }

  .tablet\:col-end-4{
    grid-column-end: 4;
  }

  .tablet\:col-end-5{
    grid-column-end: 5;
  }

  .tablet\:col-end-6{
    grid-column-end: 6;
  }

  .tablet\:col-end-7{
    grid-column-end: 7;
  }

  .tablet\:col-end-8{
    grid-column-end: 8;
  }

  .tablet\:col-end-9{
    grid-column-end: 9;
  }

  .tablet\:col-end-10{
    grid-column-end: 10;
  }

  .tablet\:col-end-11{
    grid-column-end: 11;
  }

  .tablet\:col-end-12{
    grid-column-end: 12;
  }

  .tablet\:col-end-13{
    grid-column-end: 13;
  }

  .tablet\:col-end-auto{
    grid-column-end: auto;
  }

  .tablet\:row-auto{
    grid-row: auto;
  }

  .tablet\:row-span-1{
    grid-row: span 1 / span 1;
  }

  .tablet\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .tablet\:row-span-3{
    grid-row: span 3 / span 3;
  }

  .tablet\:row-span-4{
    grid-row: span 4 / span 4;
  }

  .tablet\:row-span-5{
    grid-row: span 5 / span 5;
  }

  .tablet\:row-span-6{
    grid-row: span 6 / span 6;
  }

  .tablet\:row-span-full{
    grid-row: 1 / -1;
  }

  .tablet\:row-start-1{
    grid-row-start: 1;
  }

  .tablet\:row-start-2{
    grid-row-start: 2;
  }

  .tablet\:row-start-3{
    grid-row-start: 3;
  }

  .tablet\:row-start-4{
    grid-row-start: 4;
  }

  .tablet\:row-start-5{
    grid-row-start: 5;
  }

  .tablet\:row-start-6{
    grid-row-start: 6;
  }

  .tablet\:row-start-7{
    grid-row-start: 7;
  }

  .tablet\:row-start-auto{
    grid-row-start: auto;
  }

  .tablet\:row-end-1{
    grid-row-end: 1;
  }

  .tablet\:row-end-2{
    grid-row-end: 2;
  }

  .tablet\:row-end-3{
    grid-row-end: 3;
  }

  .tablet\:row-end-4{
    grid-row-end: 4;
  }

  .tablet\:row-end-5{
    grid-row-end: 5;
  }

  .tablet\:row-end-6{
    grid-row-end: 6;
  }

  .tablet\:row-end-7{
    grid-row-end: 7;
  }

  .tablet\:row-end-auto{
    grid-row-end: auto;
  }

  .tablet\:float-right{
    float: right;
  }

  .tablet\:float-left{
    float: left;
  }

  .tablet\:float-none{
    float: none;
  }

  .tablet\:clear-left{
    clear: left;
  }

  .tablet\:clear-right{
    clear: right;
  }

  .tablet\:clear-both{
    clear: both;
  }

  .tablet\:clear-none{
    clear: none;
  }

  .tablet\:m-0{
    margin: 0px;
  }

  .tablet\:m-1{
    margin: 0.25rem;
  }

  .tablet\:m-2{
    margin: 0.5rem;
  }

  .tablet\:m-3{
    margin: 0.75rem;
  }

  .tablet\:m-4{
    margin: 1rem;
  }

  .tablet\:m-5{
    margin: 1.25rem;
  }

  .tablet\:m-6{
    margin: 1.5rem;
  }

  .tablet\:m-7{
    margin: 1.75rem;
  }

  .tablet\:m-8{
    margin: 2rem;
  }

  .tablet\:m-9{
    margin: 2.25rem;
  }

  .tablet\:m-10{
    margin: 2.5rem;
  }

  .tablet\:m-11{
    margin: 2.75rem;
  }

  .tablet\:m-12{
    margin: 3rem;
  }

  .tablet\:m-14{
    margin: 3.5rem;
  }

  .tablet\:m-16{
    margin: 4rem;
  }

  .tablet\:m-20{
    margin: 5rem;
  }

  .tablet\:m-24{
    margin: 6rem;
  }

  .tablet\:m-28{
    margin: 7rem;
  }

  .tablet\:m-32{
    margin: 8rem;
  }

  .tablet\:m-36{
    margin: 9rem;
  }

  .tablet\:m-40{
    margin: 10rem;
  }

  .tablet\:m-44{
    margin: 11rem;
  }

  .tablet\:m-48{
    margin: 12rem;
  }

  .tablet\:m-52{
    margin: 13rem;
  }

  .tablet\:m-56{
    margin: 14rem;
  }

  .tablet\:m-60{
    margin: 15rem;
  }

  .tablet\:m-64{
    margin: 16rem;
  }

  .tablet\:m-72{
    margin: 18rem;
  }

  .tablet\:m-80{
    margin: 20rem;
  }

  .tablet\:m-96{
    margin: 24rem;
  }

  .tablet\:m-auto{
    margin: auto;
  }

  .tablet\:m-px{
    margin: 1px;
  }

  .tablet\:m-0\.5{
    margin: 0.125rem;
  }

  .tablet\:m-1\.5{
    margin: 0.375rem;
  }

  .tablet\:m-2\.5{
    margin: 0.625rem;
  }

  .tablet\:m-3\.5{
    margin: 0.875rem;
  }

  .tablet\:-m-0{
    margin: 0px;
  }

  .tablet\:-m-1{
    margin: -0.25rem;
  }

  .tablet\:-m-2{
    margin: -0.5rem;
  }

  .tablet\:-m-3{
    margin: -0.75rem;
  }

  .tablet\:-m-4{
    margin: -1rem;
  }

  .tablet\:-m-5{
    margin: -1.25rem;
  }

  .tablet\:-m-6{
    margin: -1.5rem;
  }

  .tablet\:-m-7{
    margin: -1.75rem;
  }

  .tablet\:-m-8{
    margin: -2rem;
  }

  .tablet\:-m-9{
    margin: -2.25rem;
  }

  .tablet\:-m-10{
    margin: -2.5rem;
  }

  .tablet\:-m-11{
    margin: -2.75rem;
  }

  .tablet\:-m-12{
    margin: -3rem;
  }

  .tablet\:-m-14{
    margin: -3.5rem;
  }

  .tablet\:-m-16{
    margin: -4rem;
  }

  .tablet\:-m-20{
    margin: -5rem;
  }

  .tablet\:-m-24{
    margin: -6rem;
  }

  .tablet\:-m-28{
    margin: -7rem;
  }

  .tablet\:-m-32{
    margin: -8rem;
  }

  .tablet\:-m-36{
    margin: -9rem;
  }

  .tablet\:-m-40{
    margin: -10rem;
  }

  .tablet\:-m-44{
    margin: -11rem;
  }

  .tablet\:-m-48{
    margin: -12rem;
  }

  .tablet\:-m-52{
    margin: -13rem;
  }

  .tablet\:-m-56{
    margin: -14rem;
  }

  .tablet\:-m-60{
    margin: -15rem;
  }

  .tablet\:-m-64{
    margin: -16rem;
  }

  .tablet\:-m-72{
    margin: -18rem;
  }

  .tablet\:-m-80{
    margin: -20rem;
  }

  .tablet\:-m-96{
    margin: -24rem;
  }

  .tablet\:-m-px{
    margin: -1px;
  }

  .tablet\:-m-0\.5{
    margin: -0.125rem;
  }

  .tablet\:-m-1\.5{
    margin: -0.375rem;
  }

  .tablet\:-m-2\.5{
    margin: -0.625rem;
  }

  .tablet\:-m-3\.5{
    margin: -0.875rem;
  }

  .tablet\:m-neg1{
    margin: -.25rem;
  }

  .tablet\:m-neg2{
    margin: -.5rem;
  }

  .tablet\:m-neg4{
    margin: -1.0rem;
  }

  .tablet\:m-neg6{
    margin: -1.5rem;
  }

  .tablet\:m-neg12{
    margin: -3rem;
  }

  .tablet\:m-neg20{
    margin: -5rem;
  }

  .tablet\:last\:m-0:last-child{
    margin: 0px;
  }

  .tablet\:last\:m-1:last-child{
    margin: 0.25rem;
  }

  .tablet\:last\:m-2:last-child{
    margin: 0.5rem;
  }

  .tablet\:last\:m-3:last-child{
    margin: 0.75rem;
  }

  .tablet\:last\:m-4:last-child{
    margin: 1rem;
  }

  .tablet\:last\:m-5:last-child{
    margin: 1.25rem;
  }

  .tablet\:last\:m-6:last-child{
    margin: 1.5rem;
  }

  .tablet\:last\:m-7:last-child{
    margin: 1.75rem;
  }

  .tablet\:last\:m-8:last-child{
    margin: 2rem;
  }

  .tablet\:last\:m-9:last-child{
    margin: 2.25rem;
  }

  .tablet\:last\:m-10:last-child{
    margin: 2.5rem;
  }

  .tablet\:last\:m-11:last-child{
    margin: 2.75rem;
  }

  .tablet\:last\:m-12:last-child{
    margin: 3rem;
  }

  .tablet\:last\:m-14:last-child{
    margin: 3.5rem;
  }

  .tablet\:last\:m-16:last-child{
    margin: 4rem;
  }

  .tablet\:last\:m-20:last-child{
    margin: 5rem;
  }

  .tablet\:last\:m-24:last-child{
    margin: 6rem;
  }

  .tablet\:last\:m-28:last-child{
    margin: 7rem;
  }

  .tablet\:last\:m-32:last-child{
    margin: 8rem;
  }

  .tablet\:last\:m-36:last-child{
    margin: 9rem;
  }

  .tablet\:last\:m-40:last-child{
    margin: 10rem;
  }

  .tablet\:last\:m-44:last-child{
    margin: 11rem;
  }

  .tablet\:last\:m-48:last-child{
    margin: 12rem;
  }

  .tablet\:last\:m-52:last-child{
    margin: 13rem;
  }

  .tablet\:last\:m-56:last-child{
    margin: 14rem;
  }

  .tablet\:last\:m-60:last-child{
    margin: 15rem;
  }

  .tablet\:last\:m-64:last-child{
    margin: 16rem;
  }

  .tablet\:last\:m-72:last-child{
    margin: 18rem;
  }

  .tablet\:last\:m-80:last-child{
    margin: 20rem;
  }

  .tablet\:last\:m-96:last-child{
    margin: 24rem;
  }

  .tablet\:last\:m-auto:last-child{
    margin: auto;
  }

  .tablet\:last\:m-px:last-child{
    margin: 1px;
  }

  .tablet\:last\:m-0\.5:last-child{
    margin: 0.125rem;
  }

  .tablet\:last\:m-1\.5:last-child{
    margin: 0.375rem;
  }

  .tablet\:last\:m-2\.5:last-child{
    margin: 0.625rem;
  }

  .tablet\:last\:m-3\.5:last-child{
    margin: 0.875rem;
  }

  .tablet\:last\:-m-0:last-child{
    margin: 0px;
  }

  .tablet\:last\:-m-1:last-child{
    margin: -0.25rem;
  }

  .tablet\:last\:-m-2:last-child{
    margin: -0.5rem;
  }

  .tablet\:last\:-m-3:last-child{
    margin: -0.75rem;
  }

  .tablet\:last\:-m-4:last-child{
    margin: -1rem;
  }

  .tablet\:last\:-m-5:last-child{
    margin: -1.25rem;
  }

  .tablet\:last\:-m-6:last-child{
    margin: -1.5rem;
  }

  .tablet\:last\:-m-7:last-child{
    margin: -1.75rem;
  }

  .tablet\:last\:-m-8:last-child{
    margin: -2rem;
  }

  .tablet\:last\:-m-9:last-child{
    margin: -2.25rem;
  }

  .tablet\:last\:-m-10:last-child{
    margin: -2.5rem;
  }

  .tablet\:last\:-m-11:last-child{
    margin: -2.75rem;
  }

  .tablet\:last\:-m-12:last-child{
    margin: -3rem;
  }

  .tablet\:last\:-m-14:last-child{
    margin: -3.5rem;
  }

  .tablet\:last\:-m-16:last-child{
    margin: -4rem;
  }

  .tablet\:last\:-m-20:last-child{
    margin: -5rem;
  }

  .tablet\:last\:-m-24:last-child{
    margin: -6rem;
  }

  .tablet\:last\:-m-28:last-child{
    margin: -7rem;
  }

  .tablet\:last\:-m-32:last-child{
    margin: -8rem;
  }

  .tablet\:last\:-m-36:last-child{
    margin: -9rem;
  }

  .tablet\:last\:-m-40:last-child{
    margin: -10rem;
  }

  .tablet\:last\:-m-44:last-child{
    margin: -11rem;
  }

  .tablet\:last\:-m-48:last-child{
    margin: -12rem;
  }

  .tablet\:last\:-m-52:last-child{
    margin: -13rem;
  }

  .tablet\:last\:-m-56:last-child{
    margin: -14rem;
  }

  .tablet\:last\:-m-60:last-child{
    margin: -15rem;
  }

  .tablet\:last\:-m-64:last-child{
    margin: -16rem;
  }

  .tablet\:last\:-m-72:last-child{
    margin: -18rem;
  }

  .tablet\:last\:-m-80:last-child{
    margin: -20rem;
  }

  .tablet\:last\:-m-96:last-child{
    margin: -24rem;
  }

  .tablet\:last\:-m-px:last-child{
    margin: -1px;
  }

  .tablet\:last\:-m-0\.5:last-child{
    margin: -0.125rem;
  }

  .tablet\:last\:-m-1\.5:last-child{
    margin: -0.375rem;
  }

  .tablet\:last\:-m-2\.5:last-child{
    margin: -0.625rem;
  }

  .tablet\:last\:-m-3\.5:last-child{
    margin: -0.875rem;
  }

  .tablet\:last\:m-neg1:last-child{
    margin: -.25rem;
  }

  .tablet\:last\:m-neg2:last-child{
    margin: -.5rem;
  }

  .tablet\:last\:m-neg4:last-child{
    margin: -1.0rem;
  }

  .tablet\:last\:m-neg6:last-child{
    margin: -1.5rem;
  }

  .tablet\:last\:m-neg12:last-child{
    margin: -3rem;
  }

  .tablet\:last\:m-neg20:last-child{
    margin: -5rem;
  }

  .tablet\:hover\:m-0:hover{
    margin: 0px;
  }

  .tablet\:hover\:m-1:hover{
    margin: 0.25rem;
  }

  .tablet\:hover\:m-2:hover{
    margin: 0.5rem;
  }

  .tablet\:hover\:m-3:hover{
    margin: 0.75rem;
  }

  .tablet\:hover\:m-4:hover{
    margin: 1rem;
  }

  .tablet\:hover\:m-5:hover{
    margin: 1.25rem;
  }

  .tablet\:hover\:m-6:hover{
    margin: 1.5rem;
  }

  .tablet\:hover\:m-7:hover{
    margin: 1.75rem;
  }

  .tablet\:hover\:m-8:hover{
    margin: 2rem;
  }

  .tablet\:hover\:m-9:hover{
    margin: 2.25rem;
  }

  .tablet\:hover\:m-10:hover{
    margin: 2.5rem;
  }

  .tablet\:hover\:m-11:hover{
    margin: 2.75rem;
  }

  .tablet\:hover\:m-12:hover{
    margin: 3rem;
  }

  .tablet\:hover\:m-14:hover{
    margin: 3.5rem;
  }

  .tablet\:hover\:m-16:hover{
    margin: 4rem;
  }

  .tablet\:hover\:m-20:hover{
    margin: 5rem;
  }

  .tablet\:hover\:m-24:hover{
    margin: 6rem;
  }

  .tablet\:hover\:m-28:hover{
    margin: 7rem;
  }

  .tablet\:hover\:m-32:hover{
    margin: 8rem;
  }

  .tablet\:hover\:m-36:hover{
    margin: 9rem;
  }

  .tablet\:hover\:m-40:hover{
    margin: 10rem;
  }

  .tablet\:hover\:m-44:hover{
    margin: 11rem;
  }

  .tablet\:hover\:m-48:hover{
    margin: 12rem;
  }

  .tablet\:hover\:m-52:hover{
    margin: 13rem;
  }

  .tablet\:hover\:m-56:hover{
    margin: 14rem;
  }

  .tablet\:hover\:m-60:hover{
    margin: 15rem;
  }

  .tablet\:hover\:m-64:hover{
    margin: 16rem;
  }

  .tablet\:hover\:m-72:hover{
    margin: 18rem;
  }

  .tablet\:hover\:m-80:hover{
    margin: 20rem;
  }

  .tablet\:hover\:m-96:hover{
    margin: 24rem;
  }

  .tablet\:hover\:m-auto:hover{
    margin: auto;
  }

  .tablet\:hover\:m-px:hover{
    margin: 1px;
  }

  .tablet\:hover\:m-0\.5:hover{
    margin: 0.125rem;
  }

  .tablet\:hover\:m-1\.5:hover{
    margin: 0.375rem;
  }

  .tablet\:hover\:m-2\.5:hover{
    margin: 0.625rem;
  }

  .tablet\:hover\:m-3\.5:hover{
    margin: 0.875rem;
  }

  .tablet\:hover\:-m-0:hover{
    margin: 0px;
  }

  .tablet\:hover\:-m-1:hover{
    margin: -0.25rem;
  }

  .tablet\:hover\:-m-2:hover{
    margin: -0.5rem;
  }

  .tablet\:hover\:-m-3:hover{
    margin: -0.75rem;
  }

  .tablet\:hover\:-m-4:hover{
    margin: -1rem;
  }

  .tablet\:hover\:-m-5:hover{
    margin: -1.25rem;
  }

  .tablet\:hover\:-m-6:hover{
    margin: -1.5rem;
  }

  .tablet\:hover\:-m-7:hover{
    margin: -1.75rem;
  }

  .tablet\:hover\:-m-8:hover{
    margin: -2rem;
  }

  .tablet\:hover\:-m-9:hover{
    margin: -2.25rem;
  }

  .tablet\:hover\:-m-10:hover{
    margin: -2.5rem;
  }

  .tablet\:hover\:-m-11:hover{
    margin: -2.75rem;
  }

  .tablet\:hover\:-m-12:hover{
    margin: -3rem;
  }

  .tablet\:hover\:-m-14:hover{
    margin: -3.5rem;
  }

  .tablet\:hover\:-m-16:hover{
    margin: -4rem;
  }

  .tablet\:hover\:-m-20:hover{
    margin: -5rem;
  }

  .tablet\:hover\:-m-24:hover{
    margin: -6rem;
  }

  .tablet\:hover\:-m-28:hover{
    margin: -7rem;
  }

  .tablet\:hover\:-m-32:hover{
    margin: -8rem;
  }

  .tablet\:hover\:-m-36:hover{
    margin: -9rem;
  }

  .tablet\:hover\:-m-40:hover{
    margin: -10rem;
  }

  .tablet\:hover\:-m-44:hover{
    margin: -11rem;
  }

  .tablet\:hover\:-m-48:hover{
    margin: -12rem;
  }

  .tablet\:hover\:-m-52:hover{
    margin: -13rem;
  }

  .tablet\:hover\:-m-56:hover{
    margin: -14rem;
  }

  .tablet\:hover\:-m-60:hover{
    margin: -15rem;
  }

  .tablet\:hover\:-m-64:hover{
    margin: -16rem;
  }

  .tablet\:hover\:-m-72:hover{
    margin: -18rem;
  }

  .tablet\:hover\:-m-80:hover{
    margin: -20rem;
  }

  .tablet\:hover\:-m-96:hover{
    margin: -24rem;
  }

  .tablet\:hover\:-m-px:hover{
    margin: -1px;
  }

  .tablet\:hover\:-m-0\.5:hover{
    margin: -0.125rem;
  }

  .tablet\:hover\:-m-1\.5:hover{
    margin: -0.375rem;
  }

  .tablet\:hover\:-m-2\.5:hover{
    margin: -0.625rem;
  }

  .tablet\:hover\:-m-3\.5:hover{
    margin: -0.875rem;
  }

  .tablet\:hover\:m-neg1:hover{
    margin: -.25rem;
  }

  .tablet\:hover\:m-neg2:hover{
    margin: -.5rem;
  }

  .tablet\:hover\:m-neg4:hover{
    margin: -1.0rem;
  }

  .tablet\:hover\:m-neg6:hover{
    margin: -1.5rem;
  }

  .tablet\:hover\:m-neg12:hover{
    margin: -3rem;
  }

  .tablet\:hover\:m-neg20:hover{
    margin: -5rem;
  }

  .tablet\:focus\:m-0:focus{
    margin: 0px;
  }

  .tablet\:focus\:m-1:focus{
    margin: 0.25rem;
  }

  .tablet\:focus\:m-2:focus{
    margin: 0.5rem;
  }

  .tablet\:focus\:m-3:focus{
    margin: 0.75rem;
  }

  .tablet\:focus\:m-4:focus{
    margin: 1rem;
  }

  .tablet\:focus\:m-5:focus{
    margin: 1.25rem;
  }

  .tablet\:focus\:m-6:focus{
    margin: 1.5rem;
  }

  .tablet\:focus\:m-7:focus{
    margin: 1.75rem;
  }

  .tablet\:focus\:m-8:focus{
    margin: 2rem;
  }

  .tablet\:focus\:m-9:focus{
    margin: 2.25rem;
  }

  .tablet\:focus\:m-10:focus{
    margin: 2.5rem;
  }

  .tablet\:focus\:m-11:focus{
    margin: 2.75rem;
  }

  .tablet\:focus\:m-12:focus{
    margin: 3rem;
  }

  .tablet\:focus\:m-14:focus{
    margin: 3.5rem;
  }

  .tablet\:focus\:m-16:focus{
    margin: 4rem;
  }

  .tablet\:focus\:m-20:focus{
    margin: 5rem;
  }

  .tablet\:focus\:m-24:focus{
    margin: 6rem;
  }

  .tablet\:focus\:m-28:focus{
    margin: 7rem;
  }

  .tablet\:focus\:m-32:focus{
    margin: 8rem;
  }

  .tablet\:focus\:m-36:focus{
    margin: 9rem;
  }

  .tablet\:focus\:m-40:focus{
    margin: 10rem;
  }

  .tablet\:focus\:m-44:focus{
    margin: 11rem;
  }

  .tablet\:focus\:m-48:focus{
    margin: 12rem;
  }

  .tablet\:focus\:m-52:focus{
    margin: 13rem;
  }

  .tablet\:focus\:m-56:focus{
    margin: 14rem;
  }

  .tablet\:focus\:m-60:focus{
    margin: 15rem;
  }

  .tablet\:focus\:m-64:focus{
    margin: 16rem;
  }

  .tablet\:focus\:m-72:focus{
    margin: 18rem;
  }

  .tablet\:focus\:m-80:focus{
    margin: 20rem;
  }

  .tablet\:focus\:m-96:focus{
    margin: 24rem;
  }

  .tablet\:focus\:m-auto:focus{
    margin: auto;
  }

  .tablet\:focus\:m-px:focus{
    margin: 1px;
  }

  .tablet\:focus\:m-0\.5:focus{
    margin: 0.125rem;
  }

  .tablet\:focus\:m-1\.5:focus{
    margin: 0.375rem;
  }

  .tablet\:focus\:m-2\.5:focus{
    margin: 0.625rem;
  }

  .tablet\:focus\:m-3\.5:focus{
    margin: 0.875rem;
  }

  .tablet\:focus\:-m-0:focus{
    margin: 0px;
  }

  .tablet\:focus\:-m-1:focus{
    margin: -0.25rem;
  }

  .tablet\:focus\:-m-2:focus{
    margin: -0.5rem;
  }

  .tablet\:focus\:-m-3:focus{
    margin: -0.75rem;
  }

  .tablet\:focus\:-m-4:focus{
    margin: -1rem;
  }

  .tablet\:focus\:-m-5:focus{
    margin: -1.25rem;
  }

  .tablet\:focus\:-m-6:focus{
    margin: -1.5rem;
  }

  .tablet\:focus\:-m-7:focus{
    margin: -1.75rem;
  }

  .tablet\:focus\:-m-8:focus{
    margin: -2rem;
  }

  .tablet\:focus\:-m-9:focus{
    margin: -2.25rem;
  }

  .tablet\:focus\:-m-10:focus{
    margin: -2.5rem;
  }

  .tablet\:focus\:-m-11:focus{
    margin: -2.75rem;
  }

  .tablet\:focus\:-m-12:focus{
    margin: -3rem;
  }

  .tablet\:focus\:-m-14:focus{
    margin: -3.5rem;
  }

  .tablet\:focus\:-m-16:focus{
    margin: -4rem;
  }

  .tablet\:focus\:-m-20:focus{
    margin: -5rem;
  }

  .tablet\:focus\:-m-24:focus{
    margin: -6rem;
  }

  .tablet\:focus\:-m-28:focus{
    margin: -7rem;
  }

  .tablet\:focus\:-m-32:focus{
    margin: -8rem;
  }

  .tablet\:focus\:-m-36:focus{
    margin: -9rem;
  }

  .tablet\:focus\:-m-40:focus{
    margin: -10rem;
  }

  .tablet\:focus\:-m-44:focus{
    margin: -11rem;
  }

  .tablet\:focus\:-m-48:focus{
    margin: -12rem;
  }

  .tablet\:focus\:-m-52:focus{
    margin: -13rem;
  }

  .tablet\:focus\:-m-56:focus{
    margin: -14rem;
  }

  .tablet\:focus\:-m-60:focus{
    margin: -15rem;
  }

  .tablet\:focus\:-m-64:focus{
    margin: -16rem;
  }

  .tablet\:focus\:-m-72:focus{
    margin: -18rem;
  }

  .tablet\:focus\:-m-80:focus{
    margin: -20rem;
  }

  .tablet\:focus\:-m-96:focus{
    margin: -24rem;
  }

  .tablet\:focus\:-m-px:focus{
    margin: -1px;
  }

  .tablet\:focus\:-m-0\.5:focus{
    margin: -0.125rem;
  }

  .tablet\:focus\:-m-1\.5:focus{
    margin: -0.375rem;
  }

  .tablet\:focus\:-m-2\.5:focus{
    margin: -0.625rem;
  }

  .tablet\:focus\:-m-3\.5:focus{
    margin: -0.875rem;
  }

  .tablet\:focus\:m-neg1:focus{
    margin: -.25rem;
  }

  .tablet\:focus\:m-neg2:focus{
    margin: -.5rem;
  }

  .tablet\:focus\:m-neg4:focus{
    margin: -1.0rem;
  }

  .tablet\:focus\:m-neg6:focus{
    margin: -1.5rem;
  }

  .tablet\:focus\:m-neg12:focus{
    margin: -3rem;
  }

  .tablet\:focus\:m-neg20:focus{
    margin: -5rem;
  }

  .tablet\:first\:m-0:first-child{
    margin: 0px;
  }

  .tablet\:first\:m-1:first-child{
    margin: 0.25rem;
  }

  .tablet\:first\:m-2:first-child{
    margin: 0.5rem;
  }

  .tablet\:first\:m-3:first-child{
    margin: 0.75rem;
  }

  .tablet\:first\:m-4:first-child{
    margin: 1rem;
  }

  .tablet\:first\:m-5:first-child{
    margin: 1.25rem;
  }

  .tablet\:first\:m-6:first-child{
    margin: 1.5rem;
  }

  .tablet\:first\:m-7:first-child{
    margin: 1.75rem;
  }

  .tablet\:first\:m-8:first-child{
    margin: 2rem;
  }

  .tablet\:first\:m-9:first-child{
    margin: 2.25rem;
  }

  .tablet\:first\:m-10:first-child{
    margin: 2.5rem;
  }

  .tablet\:first\:m-11:first-child{
    margin: 2.75rem;
  }

  .tablet\:first\:m-12:first-child{
    margin: 3rem;
  }

  .tablet\:first\:m-14:first-child{
    margin: 3.5rem;
  }

  .tablet\:first\:m-16:first-child{
    margin: 4rem;
  }

  .tablet\:first\:m-20:first-child{
    margin: 5rem;
  }

  .tablet\:first\:m-24:first-child{
    margin: 6rem;
  }

  .tablet\:first\:m-28:first-child{
    margin: 7rem;
  }

  .tablet\:first\:m-32:first-child{
    margin: 8rem;
  }

  .tablet\:first\:m-36:first-child{
    margin: 9rem;
  }

  .tablet\:first\:m-40:first-child{
    margin: 10rem;
  }

  .tablet\:first\:m-44:first-child{
    margin: 11rem;
  }

  .tablet\:first\:m-48:first-child{
    margin: 12rem;
  }

  .tablet\:first\:m-52:first-child{
    margin: 13rem;
  }

  .tablet\:first\:m-56:first-child{
    margin: 14rem;
  }

  .tablet\:first\:m-60:first-child{
    margin: 15rem;
  }

  .tablet\:first\:m-64:first-child{
    margin: 16rem;
  }

  .tablet\:first\:m-72:first-child{
    margin: 18rem;
  }

  .tablet\:first\:m-80:first-child{
    margin: 20rem;
  }

  .tablet\:first\:m-96:first-child{
    margin: 24rem;
  }

  .tablet\:first\:m-auto:first-child{
    margin: auto;
  }

  .tablet\:first\:m-px:first-child{
    margin: 1px;
  }

  .tablet\:first\:m-0\.5:first-child{
    margin: 0.125rem;
  }

  .tablet\:first\:m-1\.5:first-child{
    margin: 0.375rem;
  }

  .tablet\:first\:m-2\.5:first-child{
    margin: 0.625rem;
  }

  .tablet\:first\:m-3\.5:first-child{
    margin: 0.875rem;
  }

  .tablet\:first\:-m-0:first-child{
    margin: 0px;
  }

  .tablet\:first\:-m-1:first-child{
    margin: -0.25rem;
  }

  .tablet\:first\:-m-2:first-child{
    margin: -0.5rem;
  }

  .tablet\:first\:-m-3:first-child{
    margin: -0.75rem;
  }

  .tablet\:first\:-m-4:first-child{
    margin: -1rem;
  }

  .tablet\:first\:-m-5:first-child{
    margin: -1.25rem;
  }

  .tablet\:first\:-m-6:first-child{
    margin: -1.5rem;
  }

  .tablet\:first\:-m-7:first-child{
    margin: -1.75rem;
  }

  .tablet\:first\:-m-8:first-child{
    margin: -2rem;
  }

  .tablet\:first\:-m-9:first-child{
    margin: -2.25rem;
  }

  .tablet\:first\:-m-10:first-child{
    margin: -2.5rem;
  }

  .tablet\:first\:-m-11:first-child{
    margin: -2.75rem;
  }

  .tablet\:first\:-m-12:first-child{
    margin: -3rem;
  }

  .tablet\:first\:-m-14:first-child{
    margin: -3.5rem;
  }

  .tablet\:first\:-m-16:first-child{
    margin: -4rem;
  }

  .tablet\:first\:-m-20:first-child{
    margin: -5rem;
  }

  .tablet\:first\:-m-24:first-child{
    margin: -6rem;
  }

  .tablet\:first\:-m-28:first-child{
    margin: -7rem;
  }

  .tablet\:first\:-m-32:first-child{
    margin: -8rem;
  }

  .tablet\:first\:-m-36:first-child{
    margin: -9rem;
  }

  .tablet\:first\:-m-40:first-child{
    margin: -10rem;
  }

  .tablet\:first\:-m-44:first-child{
    margin: -11rem;
  }

  .tablet\:first\:-m-48:first-child{
    margin: -12rem;
  }

  .tablet\:first\:-m-52:first-child{
    margin: -13rem;
  }

  .tablet\:first\:-m-56:first-child{
    margin: -14rem;
  }

  .tablet\:first\:-m-60:first-child{
    margin: -15rem;
  }

  .tablet\:first\:-m-64:first-child{
    margin: -16rem;
  }

  .tablet\:first\:-m-72:first-child{
    margin: -18rem;
  }

  .tablet\:first\:-m-80:first-child{
    margin: -20rem;
  }

  .tablet\:first\:-m-96:first-child{
    margin: -24rem;
  }

  .tablet\:first\:-m-px:first-child{
    margin: -1px;
  }

  .tablet\:first\:-m-0\.5:first-child{
    margin: -0.125rem;
  }

  .tablet\:first\:-m-1\.5:first-child{
    margin: -0.375rem;
  }

  .tablet\:first\:-m-2\.5:first-child{
    margin: -0.625rem;
  }

  .tablet\:first\:-m-3\.5:first-child{
    margin: -0.875rem;
  }

  .tablet\:first\:m-neg1:first-child{
    margin: -.25rem;
  }

  .tablet\:first\:m-neg2:first-child{
    margin: -.5rem;
  }

  .tablet\:first\:m-neg4:first-child{
    margin: -1.0rem;
  }

  .tablet\:first\:m-neg6:first-child{
    margin: -1.5rem;
  }

  .tablet\:first\:m-neg12:first-child{
    margin: -3rem;
  }

  .tablet\:first\:m-neg20:first-child{
    margin: -5rem;
  }

  .tablet\:last\:m-0:last-child{
    margin: 0px;
  }

  .tablet\:last\:m-1:last-child{
    margin: 0.25rem;
  }

  .tablet\:last\:m-2:last-child{
    margin: 0.5rem;
  }

  .tablet\:last\:m-3:last-child{
    margin: 0.75rem;
  }

  .tablet\:last\:m-4:last-child{
    margin: 1rem;
  }

  .tablet\:last\:m-5:last-child{
    margin: 1.25rem;
  }

  .tablet\:last\:m-6:last-child{
    margin: 1.5rem;
  }

  .tablet\:last\:m-7:last-child{
    margin: 1.75rem;
  }

  .tablet\:last\:m-8:last-child{
    margin: 2rem;
  }

  .tablet\:last\:m-9:last-child{
    margin: 2.25rem;
  }

  .tablet\:last\:m-10:last-child{
    margin: 2.5rem;
  }

  .tablet\:last\:m-11:last-child{
    margin: 2.75rem;
  }

  .tablet\:last\:m-12:last-child{
    margin: 3rem;
  }

  .tablet\:last\:m-14:last-child{
    margin: 3.5rem;
  }

  .tablet\:last\:m-16:last-child{
    margin: 4rem;
  }

  .tablet\:last\:m-20:last-child{
    margin: 5rem;
  }

  .tablet\:last\:m-24:last-child{
    margin: 6rem;
  }

  .tablet\:last\:m-28:last-child{
    margin: 7rem;
  }

  .tablet\:last\:m-32:last-child{
    margin: 8rem;
  }

  .tablet\:last\:m-36:last-child{
    margin: 9rem;
  }

  .tablet\:last\:m-40:last-child{
    margin: 10rem;
  }

  .tablet\:last\:m-44:last-child{
    margin: 11rem;
  }

  .tablet\:last\:m-48:last-child{
    margin: 12rem;
  }

  .tablet\:last\:m-52:last-child{
    margin: 13rem;
  }

  .tablet\:last\:m-56:last-child{
    margin: 14rem;
  }

  .tablet\:last\:m-60:last-child{
    margin: 15rem;
  }

  .tablet\:last\:m-64:last-child{
    margin: 16rem;
  }

  .tablet\:last\:m-72:last-child{
    margin: 18rem;
  }

  .tablet\:last\:m-80:last-child{
    margin: 20rem;
  }

  .tablet\:last\:m-96:last-child{
    margin: 24rem;
  }

  .tablet\:last\:m-auto:last-child{
    margin: auto;
  }

  .tablet\:last\:m-px:last-child{
    margin: 1px;
  }

  .tablet\:last\:m-0\.5:last-child{
    margin: 0.125rem;
  }

  .tablet\:last\:m-1\.5:last-child{
    margin: 0.375rem;
  }

  .tablet\:last\:m-2\.5:last-child{
    margin: 0.625rem;
  }

  .tablet\:last\:m-3\.5:last-child{
    margin: 0.875rem;
  }

  .tablet\:last\:-m-0:last-child{
    margin: 0px;
  }

  .tablet\:last\:-m-1:last-child{
    margin: -0.25rem;
  }

  .tablet\:last\:-m-2:last-child{
    margin: -0.5rem;
  }

  .tablet\:last\:-m-3:last-child{
    margin: -0.75rem;
  }

  .tablet\:last\:-m-4:last-child{
    margin: -1rem;
  }

  .tablet\:last\:-m-5:last-child{
    margin: -1.25rem;
  }

  .tablet\:last\:-m-6:last-child{
    margin: -1.5rem;
  }

  .tablet\:last\:-m-7:last-child{
    margin: -1.75rem;
  }

  .tablet\:last\:-m-8:last-child{
    margin: -2rem;
  }

  .tablet\:last\:-m-9:last-child{
    margin: -2.25rem;
  }

  .tablet\:last\:-m-10:last-child{
    margin: -2.5rem;
  }

  .tablet\:last\:-m-11:last-child{
    margin: -2.75rem;
  }

  .tablet\:last\:-m-12:last-child{
    margin: -3rem;
  }

  .tablet\:last\:-m-14:last-child{
    margin: -3.5rem;
  }

  .tablet\:last\:-m-16:last-child{
    margin: -4rem;
  }

  .tablet\:last\:-m-20:last-child{
    margin: -5rem;
  }

  .tablet\:last\:-m-24:last-child{
    margin: -6rem;
  }

  .tablet\:last\:-m-28:last-child{
    margin: -7rem;
  }

  .tablet\:last\:-m-32:last-child{
    margin: -8rem;
  }

  .tablet\:last\:-m-36:last-child{
    margin: -9rem;
  }

  .tablet\:last\:-m-40:last-child{
    margin: -10rem;
  }

  .tablet\:last\:-m-44:last-child{
    margin: -11rem;
  }

  .tablet\:last\:-m-48:last-child{
    margin: -12rem;
  }

  .tablet\:last\:-m-52:last-child{
    margin: -13rem;
  }

  .tablet\:last\:-m-56:last-child{
    margin: -14rem;
  }

  .tablet\:last\:-m-60:last-child{
    margin: -15rem;
  }

  .tablet\:last\:-m-64:last-child{
    margin: -16rem;
  }

  .tablet\:last\:-m-72:last-child{
    margin: -18rem;
  }

  .tablet\:last\:-m-80:last-child{
    margin: -20rem;
  }

  .tablet\:last\:-m-96:last-child{
    margin: -24rem;
  }

  .tablet\:last\:-m-px:last-child{
    margin: -1px;
  }

  .tablet\:last\:-m-0\.5:last-child{
    margin: -0.125rem;
  }

  .tablet\:last\:-m-1\.5:last-child{
    margin: -0.375rem;
  }

  .tablet\:last\:-m-2\.5:last-child{
    margin: -0.625rem;
  }

  .tablet\:last\:-m-3\.5:last-child{
    margin: -0.875rem;
  }

  .tablet\:last\:m-neg1:last-child{
    margin: -.25rem;
  }

  .tablet\:last\:m-neg2:last-child{
    margin: -.5rem;
  }

  .tablet\:last\:m-neg4:last-child{
    margin: -1.0rem;
  }

  .tablet\:last\:m-neg6:last-child{
    margin: -1.5rem;
  }

  .tablet\:last\:m-neg12:last-child{
    margin: -3rem;
  }

  .tablet\:last\:m-neg20:last-child{
    margin: -5rem;
  }

  .tablet\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }

  .tablet\:mx-1{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .tablet\:mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .tablet\:mx-3{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .tablet\:mx-4{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .tablet\:mx-5{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .tablet\:mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .tablet\:mx-7{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .tablet\:mx-8{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .tablet\:mx-9{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .tablet\:mx-10{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .tablet\:mx-11{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .tablet\:mx-12{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .tablet\:mx-14{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .tablet\:mx-16{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .tablet\:mx-20{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .tablet\:mx-24{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .tablet\:mx-28{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .tablet\:mx-32{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .tablet\:mx-36{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .tablet\:mx-40{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .tablet\:mx-44{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .tablet\:mx-48{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .tablet\:mx-52{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .tablet\:mx-56{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .tablet\:mx-60{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .tablet\:mx-64{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .tablet\:mx-72{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .tablet\:mx-80{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .tablet\:mx-96{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .tablet\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .tablet\:mx-px{
    margin-left: 1px;
    margin-right: 1px;
  }

  .tablet\:mx-0\.5{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .tablet\:mx-1\.5{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .tablet\:mx-2\.5{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .tablet\:mx-3\.5{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .tablet\:-mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }

  .tablet\:-mx-1{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .tablet\:-mx-2{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .tablet\:-mx-3{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .tablet\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .tablet\:-mx-5{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .tablet\:-mx-6{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .tablet\:-mx-7{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .tablet\:-mx-8{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .tablet\:-mx-9{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .tablet\:-mx-10{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .tablet\:-mx-11{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .tablet\:-mx-12{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .tablet\:-mx-14{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .tablet\:-mx-16{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .tablet\:-mx-20{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .tablet\:-mx-24{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .tablet\:-mx-28{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .tablet\:-mx-32{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .tablet\:-mx-36{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .tablet\:-mx-40{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .tablet\:-mx-44{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .tablet\:-mx-48{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .tablet\:-mx-52{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .tablet\:-mx-56{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .tablet\:-mx-60{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .tablet\:-mx-64{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .tablet\:-mx-72{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .tablet\:-mx-80{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .tablet\:-mx-96{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .tablet\:-mx-px{
    margin-left: -1px;
    margin-right: -1px;
  }

  .tablet\:-mx-0\.5{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .tablet\:-mx-1\.5{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .tablet\:-mx-2\.5{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .tablet\:-mx-3\.5{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .tablet\:mx-neg1{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .tablet\:mx-neg2{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .tablet\:mx-neg4{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .tablet\:mx-neg6{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .tablet\:mx-neg12{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .tablet\:mx-neg20{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .tablet\:my-0{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .tablet\:my-1{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .tablet\:my-2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .tablet\:my-3{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .tablet\:my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .tablet\:my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .tablet\:my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .tablet\:my-7{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .tablet\:my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .tablet\:my-9{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .tablet\:my-10{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .tablet\:my-11{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .tablet\:my-12{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .tablet\:my-14{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .tablet\:my-16{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .tablet\:my-20{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .tablet\:my-24{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .tablet\:my-28{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .tablet\:my-32{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .tablet\:my-36{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .tablet\:my-40{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .tablet\:my-44{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .tablet\:my-48{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .tablet\:my-52{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .tablet\:my-56{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .tablet\:my-60{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .tablet\:my-64{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .tablet\:my-72{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .tablet\:my-80{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .tablet\:my-96{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .tablet\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }

  .tablet\:my-px{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .tablet\:my-0\.5{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .tablet\:my-1\.5{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .tablet\:my-2\.5{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .tablet\:my-3\.5{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .tablet\:-my-0{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .tablet\:-my-1{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .tablet\:-my-2{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .tablet\:-my-3{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .tablet\:-my-4{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .tablet\:-my-5{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .tablet\:-my-6{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .tablet\:-my-7{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .tablet\:-my-8{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .tablet\:-my-9{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .tablet\:-my-10{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .tablet\:-my-11{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .tablet\:-my-12{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .tablet\:-my-14{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .tablet\:-my-16{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .tablet\:-my-20{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .tablet\:-my-24{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .tablet\:-my-28{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .tablet\:-my-32{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .tablet\:-my-36{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .tablet\:-my-40{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .tablet\:-my-44{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .tablet\:-my-48{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .tablet\:-my-52{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .tablet\:-my-56{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .tablet\:-my-60{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .tablet\:-my-64{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .tablet\:-my-72{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .tablet\:-my-80{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .tablet\:-my-96{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .tablet\:-my-px{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .tablet\:-my-0\.5{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .tablet\:-my-1\.5{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .tablet\:-my-2\.5{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .tablet\:-my-3\.5{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .tablet\:my-neg1{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .tablet\:my-neg2{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .tablet\:my-neg4{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .tablet\:my-neg6{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .tablet\:my-neg12{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .tablet\:my-neg20{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .tablet\:last\:mx-0:last-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .tablet\:last\:mx-1:last-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .tablet\:last\:mx-2:last-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .tablet\:last\:mx-3:last-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .tablet\:last\:mx-4:last-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .tablet\:last\:mx-5:last-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .tablet\:last\:mx-6:last-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .tablet\:last\:mx-7:last-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .tablet\:last\:mx-8:last-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .tablet\:last\:mx-9:last-child{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .tablet\:last\:mx-10:last-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .tablet\:last\:mx-11:last-child{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .tablet\:last\:mx-12:last-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .tablet\:last\:mx-14:last-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .tablet\:last\:mx-16:last-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .tablet\:last\:mx-20:last-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .tablet\:last\:mx-24:last-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .tablet\:last\:mx-28:last-child{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .tablet\:last\:mx-32:last-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .tablet\:last\:mx-36:last-child{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .tablet\:last\:mx-40:last-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .tablet\:last\:mx-44:last-child{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .tablet\:last\:mx-48:last-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .tablet\:last\:mx-52:last-child{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .tablet\:last\:mx-56:last-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .tablet\:last\:mx-60:last-child{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .tablet\:last\:mx-64:last-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .tablet\:last\:mx-72:last-child{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .tablet\:last\:mx-80:last-child{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .tablet\:last\:mx-96:last-child{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .tablet\:last\:mx-auto:last-child{
    margin-left: auto;
    margin-right: auto;
  }

  .tablet\:last\:mx-px:last-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .tablet\:last\:mx-0\.5:last-child{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .tablet\:last\:mx-1\.5:last-child{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .tablet\:last\:mx-2\.5:last-child{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .tablet\:last\:mx-3\.5:last-child{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .tablet\:last\:-mx-0:last-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .tablet\:last\:-mx-1:last-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .tablet\:last\:-mx-2:last-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .tablet\:last\:-mx-3:last-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .tablet\:last\:-mx-4:last-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .tablet\:last\:-mx-5:last-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .tablet\:last\:-mx-6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .tablet\:last\:-mx-7:last-child{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .tablet\:last\:-mx-8:last-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .tablet\:last\:-mx-9:last-child{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .tablet\:last\:-mx-10:last-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .tablet\:last\:-mx-11:last-child{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .tablet\:last\:-mx-12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .tablet\:last\:-mx-14:last-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .tablet\:last\:-mx-16:last-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .tablet\:last\:-mx-20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .tablet\:last\:-mx-24:last-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .tablet\:last\:-mx-28:last-child{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .tablet\:last\:-mx-32:last-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .tablet\:last\:-mx-36:last-child{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .tablet\:last\:-mx-40:last-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .tablet\:last\:-mx-44:last-child{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .tablet\:last\:-mx-48:last-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .tablet\:last\:-mx-52:last-child{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .tablet\:last\:-mx-56:last-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .tablet\:last\:-mx-60:last-child{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .tablet\:last\:-mx-64:last-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .tablet\:last\:-mx-72:last-child{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .tablet\:last\:-mx-80:last-child{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .tablet\:last\:-mx-96:last-child{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .tablet\:last\:-mx-px:last-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .tablet\:last\:-mx-0\.5:last-child{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .tablet\:last\:-mx-1\.5:last-child{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .tablet\:last\:-mx-2\.5:last-child{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .tablet\:last\:-mx-3\.5:last-child{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .tablet\:last\:mx-neg1:last-child{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .tablet\:last\:mx-neg2:last-child{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .tablet\:last\:mx-neg4:last-child{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .tablet\:last\:mx-neg6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .tablet\:last\:mx-neg12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .tablet\:last\:mx-neg20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .tablet\:last\:my-0:last-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .tablet\:last\:my-1:last-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .tablet\:last\:my-2:last-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .tablet\:last\:my-3:last-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .tablet\:last\:my-4:last-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .tablet\:last\:my-5:last-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .tablet\:last\:my-6:last-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .tablet\:last\:my-7:last-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .tablet\:last\:my-8:last-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .tablet\:last\:my-9:last-child{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .tablet\:last\:my-10:last-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .tablet\:last\:my-11:last-child{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .tablet\:last\:my-12:last-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .tablet\:last\:my-14:last-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .tablet\:last\:my-16:last-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .tablet\:last\:my-20:last-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .tablet\:last\:my-24:last-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .tablet\:last\:my-28:last-child{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .tablet\:last\:my-32:last-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .tablet\:last\:my-36:last-child{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .tablet\:last\:my-40:last-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .tablet\:last\:my-44:last-child{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .tablet\:last\:my-48:last-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .tablet\:last\:my-52:last-child{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .tablet\:last\:my-56:last-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .tablet\:last\:my-60:last-child{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .tablet\:last\:my-64:last-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .tablet\:last\:my-72:last-child{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .tablet\:last\:my-80:last-child{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .tablet\:last\:my-96:last-child{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .tablet\:last\:my-auto:last-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .tablet\:last\:my-px:last-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .tablet\:last\:my-0\.5:last-child{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .tablet\:last\:my-1\.5:last-child{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .tablet\:last\:my-2\.5:last-child{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .tablet\:last\:my-3\.5:last-child{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .tablet\:last\:-my-0:last-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .tablet\:last\:-my-1:last-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .tablet\:last\:-my-2:last-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .tablet\:last\:-my-3:last-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .tablet\:last\:-my-4:last-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .tablet\:last\:-my-5:last-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .tablet\:last\:-my-6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .tablet\:last\:-my-7:last-child{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .tablet\:last\:-my-8:last-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .tablet\:last\:-my-9:last-child{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .tablet\:last\:-my-10:last-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .tablet\:last\:-my-11:last-child{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .tablet\:last\:-my-12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .tablet\:last\:-my-14:last-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .tablet\:last\:-my-16:last-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .tablet\:last\:-my-20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .tablet\:last\:-my-24:last-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .tablet\:last\:-my-28:last-child{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .tablet\:last\:-my-32:last-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .tablet\:last\:-my-36:last-child{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .tablet\:last\:-my-40:last-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .tablet\:last\:-my-44:last-child{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .tablet\:last\:-my-48:last-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .tablet\:last\:-my-52:last-child{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .tablet\:last\:-my-56:last-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .tablet\:last\:-my-60:last-child{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .tablet\:last\:-my-64:last-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .tablet\:last\:-my-72:last-child{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .tablet\:last\:-my-80:last-child{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .tablet\:last\:-my-96:last-child{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .tablet\:last\:-my-px:last-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .tablet\:last\:-my-0\.5:last-child{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .tablet\:last\:-my-1\.5:last-child{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .tablet\:last\:-my-2\.5:last-child{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .tablet\:last\:-my-3\.5:last-child{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .tablet\:last\:my-neg1:last-child{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .tablet\:last\:my-neg2:last-child{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .tablet\:last\:my-neg4:last-child{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .tablet\:last\:my-neg6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .tablet\:last\:my-neg12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .tablet\:last\:my-neg20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .tablet\:hover\:mx-0:hover{
    margin-left: 0px;
    margin-right: 0px;
  }

  .tablet\:hover\:mx-1:hover{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .tablet\:hover\:mx-2:hover{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .tablet\:hover\:mx-3:hover{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .tablet\:hover\:mx-4:hover{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .tablet\:hover\:mx-5:hover{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .tablet\:hover\:mx-6:hover{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .tablet\:hover\:mx-7:hover{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .tablet\:hover\:mx-8:hover{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .tablet\:hover\:mx-9:hover{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .tablet\:hover\:mx-10:hover{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .tablet\:hover\:mx-11:hover{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .tablet\:hover\:mx-12:hover{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .tablet\:hover\:mx-14:hover{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .tablet\:hover\:mx-16:hover{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .tablet\:hover\:mx-20:hover{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .tablet\:hover\:mx-24:hover{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .tablet\:hover\:mx-28:hover{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .tablet\:hover\:mx-32:hover{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .tablet\:hover\:mx-36:hover{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .tablet\:hover\:mx-40:hover{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .tablet\:hover\:mx-44:hover{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .tablet\:hover\:mx-48:hover{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .tablet\:hover\:mx-52:hover{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .tablet\:hover\:mx-56:hover{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .tablet\:hover\:mx-60:hover{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .tablet\:hover\:mx-64:hover{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .tablet\:hover\:mx-72:hover{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .tablet\:hover\:mx-80:hover{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .tablet\:hover\:mx-96:hover{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .tablet\:hover\:mx-auto:hover{
    margin-left: auto;
    margin-right: auto;
  }

  .tablet\:hover\:mx-px:hover{
    margin-left: 1px;
    margin-right: 1px;
  }

  .tablet\:hover\:mx-0\.5:hover{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .tablet\:hover\:mx-1\.5:hover{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .tablet\:hover\:mx-2\.5:hover{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .tablet\:hover\:mx-3\.5:hover{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .tablet\:hover\:-mx-0:hover{
    margin-left: 0px;
    margin-right: 0px;
  }

  .tablet\:hover\:-mx-1:hover{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .tablet\:hover\:-mx-2:hover{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .tablet\:hover\:-mx-3:hover{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .tablet\:hover\:-mx-4:hover{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .tablet\:hover\:-mx-5:hover{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .tablet\:hover\:-mx-6:hover{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .tablet\:hover\:-mx-7:hover{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .tablet\:hover\:-mx-8:hover{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .tablet\:hover\:-mx-9:hover{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .tablet\:hover\:-mx-10:hover{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .tablet\:hover\:-mx-11:hover{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .tablet\:hover\:-mx-12:hover{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .tablet\:hover\:-mx-14:hover{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .tablet\:hover\:-mx-16:hover{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .tablet\:hover\:-mx-20:hover{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .tablet\:hover\:-mx-24:hover{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .tablet\:hover\:-mx-28:hover{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .tablet\:hover\:-mx-32:hover{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .tablet\:hover\:-mx-36:hover{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .tablet\:hover\:-mx-40:hover{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .tablet\:hover\:-mx-44:hover{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .tablet\:hover\:-mx-48:hover{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .tablet\:hover\:-mx-52:hover{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .tablet\:hover\:-mx-56:hover{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .tablet\:hover\:-mx-60:hover{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .tablet\:hover\:-mx-64:hover{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .tablet\:hover\:-mx-72:hover{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .tablet\:hover\:-mx-80:hover{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .tablet\:hover\:-mx-96:hover{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .tablet\:hover\:-mx-px:hover{
    margin-left: -1px;
    margin-right: -1px;
  }

  .tablet\:hover\:-mx-0\.5:hover{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .tablet\:hover\:-mx-1\.5:hover{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .tablet\:hover\:-mx-2\.5:hover{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .tablet\:hover\:-mx-3\.5:hover{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .tablet\:hover\:mx-neg1:hover{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .tablet\:hover\:mx-neg2:hover{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .tablet\:hover\:mx-neg4:hover{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .tablet\:hover\:mx-neg6:hover{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .tablet\:hover\:mx-neg12:hover{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .tablet\:hover\:mx-neg20:hover{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .tablet\:hover\:my-0:hover{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .tablet\:hover\:my-1:hover{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .tablet\:hover\:my-2:hover{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .tablet\:hover\:my-3:hover{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .tablet\:hover\:my-4:hover{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .tablet\:hover\:my-5:hover{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .tablet\:hover\:my-6:hover{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .tablet\:hover\:my-7:hover{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .tablet\:hover\:my-8:hover{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .tablet\:hover\:my-9:hover{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .tablet\:hover\:my-10:hover{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .tablet\:hover\:my-11:hover{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .tablet\:hover\:my-12:hover{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .tablet\:hover\:my-14:hover{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .tablet\:hover\:my-16:hover{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .tablet\:hover\:my-20:hover{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .tablet\:hover\:my-24:hover{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .tablet\:hover\:my-28:hover{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .tablet\:hover\:my-32:hover{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .tablet\:hover\:my-36:hover{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .tablet\:hover\:my-40:hover{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .tablet\:hover\:my-44:hover{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .tablet\:hover\:my-48:hover{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .tablet\:hover\:my-52:hover{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .tablet\:hover\:my-56:hover{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .tablet\:hover\:my-60:hover{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .tablet\:hover\:my-64:hover{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .tablet\:hover\:my-72:hover{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .tablet\:hover\:my-80:hover{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .tablet\:hover\:my-96:hover{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .tablet\:hover\:my-auto:hover{
    margin-top: auto;
    margin-bottom: auto;
  }

  .tablet\:hover\:my-px:hover{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .tablet\:hover\:my-0\.5:hover{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .tablet\:hover\:my-1\.5:hover{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .tablet\:hover\:my-2\.5:hover{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .tablet\:hover\:my-3\.5:hover{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .tablet\:hover\:-my-0:hover{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .tablet\:hover\:-my-1:hover{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .tablet\:hover\:-my-2:hover{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .tablet\:hover\:-my-3:hover{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .tablet\:hover\:-my-4:hover{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .tablet\:hover\:-my-5:hover{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .tablet\:hover\:-my-6:hover{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .tablet\:hover\:-my-7:hover{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .tablet\:hover\:-my-8:hover{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .tablet\:hover\:-my-9:hover{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .tablet\:hover\:-my-10:hover{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .tablet\:hover\:-my-11:hover{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .tablet\:hover\:-my-12:hover{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .tablet\:hover\:-my-14:hover{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .tablet\:hover\:-my-16:hover{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .tablet\:hover\:-my-20:hover{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .tablet\:hover\:-my-24:hover{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .tablet\:hover\:-my-28:hover{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .tablet\:hover\:-my-32:hover{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .tablet\:hover\:-my-36:hover{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .tablet\:hover\:-my-40:hover{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .tablet\:hover\:-my-44:hover{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .tablet\:hover\:-my-48:hover{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .tablet\:hover\:-my-52:hover{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .tablet\:hover\:-my-56:hover{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .tablet\:hover\:-my-60:hover{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .tablet\:hover\:-my-64:hover{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .tablet\:hover\:-my-72:hover{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .tablet\:hover\:-my-80:hover{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .tablet\:hover\:-my-96:hover{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .tablet\:hover\:-my-px:hover{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .tablet\:hover\:-my-0\.5:hover{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .tablet\:hover\:-my-1\.5:hover{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .tablet\:hover\:-my-2\.5:hover{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .tablet\:hover\:-my-3\.5:hover{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .tablet\:hover\:my-neg1:hover{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .tablet\:hover\:my-neg2:hover{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .tablet\:hover\:my-neg4:hover{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .tablet\:hover\:my-neg6:hover{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .tablet\:hover\:my-neg12:hover{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .tablet\:hover\:my-neg20:hover{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .tablet\:focus\:mx-0:focus{
    margin-left: 0px;
    margin-right: 0px;
  }

  .tablet\:focus\:mx-1:focus{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .tablet\:focus\:mx-2:focus{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .tablet\:focus\:mx-3:focus{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .tablet\:focus\:mx-4:focus{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .tablet\:focus\:mx-5:focus{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .tablet\:focus\:mx-6:focus{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .tablet\:focus\:mx-7:focus{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .tablet\:focus\:mx-8:focus{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .tablet\:focus\:mx-9:focus{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .tablet\:focus\:mx-10:focus{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .tablet\:focus\:mx-11:focus{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .tablet\:focus\:mx-12:focus{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .tablet\:focus\:mx-14:focus{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .tablet\:focus\:mx-16:focus{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .tablet\:focus\:mx-20:focus{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .tablet\:focus\:mx-24:focus{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .tablet\:focus\:mx-28:focus{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .tablet\:focus\:mx-32:focus{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .tablet\:focus\:mx-36:focus{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .tablet\:focus\:mx-40:focus{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .tablet\:focus\:mx-44:focus{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .tablet\:focus\:mx-48:focus{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .tablet\:focus\:mx-52:focus{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .tablet\:focus\:mx-56:focus{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .tablet\:focus\:mx-60:focus{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .tablet\:focus\:mx-64:focus{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .tablet\:focus\:mx-72:focus{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .tablet\:focus\:mx-80:focus{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .tablet\:focus\:mx-96:focus{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .tablet\:focus\:mx-auto:focus{
    margin-left: auto;
    margin-right: auto;
  }

  .tablet\:focus\:mx-px:focus{
    margin-left: 1px;
    margin-right: 1px;
  }

  .tablet\:focus\:mx-0\.5:focus{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .tablet\:focus\:mx-1\.5:focus{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .tablet\:focus\:mx-2\.5:focus{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .tablet\:focus\:mx-3\.5:focus{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .tablet\:focus\:-mx-0:focus{
    margin-left: 0px;
    margin-right: 0px;
  }

  .tablet\:focus\:-mx-1:focus{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .tablet\:focus\:-mx-2:focus{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .tablet\:focus\:-mx-3:focus{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .tablet\:focus\:-mx-4:focus{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .tablet\:focus\:-mx-5:focus{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .tablet\:focus\:-mx-6:focus{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .tablet\:focus\:-mx-7:focus{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .tablet\:focus\:-mx-8:focus{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .tablet\:focus\:-mx-9:focus{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .tablet\:focus\:-mx-10:focus{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .tablet\:focus\:-mx-11:focus{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .tablet\:focus\:-mx-12:focus{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .tablet\:focus\:-mx-14:focus{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .tablet\:focus\:-mx-16:focus{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .tablet\:focus\:-mx-20:focus{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .tablet\:focus\:-mx-24:focus{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .tablet\:focus\:-mx-28:focus{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .tablet\:focus\:-mx-32:focus{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .tablet\:focus\:-mx-36:focus{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .tablet\:focus\:-mx-40:focus{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .tablet\:focus\:-mx-44:focus{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .tablet\:focus\:-mx-48:focus{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .tablet\:focus\:-mx-52:focus{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .tablet\:focus\:-mx-56:focus{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .tablet\:focus\:-mx-60:focus{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .tablet\:focus\:-mx-64:focus{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .tablet\:focus\:-mx-72:focus{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .tablet\:focus\:-mx-80:focus{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .tablet\:focus\:-mx-96:focus{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .tablet\:focus\:-mx-px:focus{
    margin-left: -1px;
    margin-right: -1px;
  }

  .tablet\:focus\:-mx-0\.5:focus{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .tablet\:focus\:-mx-1\.5:focus{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .tablet\:focus\:-mx-2\.5:focus{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .tablet\:focus\:-mx-3\.5:focus{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .tablet\:focus\:mx-neg1:focus{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .tablet\:focus\:mx-neg2:focus{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .tablet\:focus\:mx-neg4:focus{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .tablet\:focus\:mx-neg6:focus{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .tablet\:focus\:mx-neg12:focus{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .tablet\:focus\:mx-neg20:focus{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .tablet\:focus\:my-0:focus{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .tablet\:focus\:my-1:focus{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .tablet\:focus\:my-2:focus{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .tablet\:focus\:my-3:focus{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .tablet\:focus\:my-4:focus{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .tablet\:focus\:my-5:focus{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .tablet\:focus\:my-6:focus{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .tablet\:focus\:my-7:focus{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .tablet\:focus\:my-8:focus{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .tablet\:focus\:my-9:focus{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .tablet\:focus\:my-10:focus{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .tablet\:focus\:my-11:focus{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .tablet\:focus\:my-12:focus{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .tablet\:focus\:my-14:focus{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .tablet\:focus\:my-16:focus{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .tablet\:focus\:my-20:focus{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .tablet\:focus\:my-24:focus{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .tablet\:focus\:my-28:focus{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .tablet\:focus\:my-32:focus{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .tablet\:focus\:my-36:focus{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .tablet\:focus\:my-40:focus{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .tablet\:focus\:my-44:focus{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .tablet\:focus\:my-48:focus{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .tablet\:focus\:my-52:focus{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .tablet\:focus\:my-56:focus{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .tablet\:focus\:my-60:focus{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .tablet\:focus\:my-64:focus{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .tablet\:focus\:my-72:focus{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .tablet\:focus\:my-80:focus{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .tablet\:focus\:my-96:focus{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .tablet\:focus\:my-auto:focus{
    margin-top: auto;
    margin-bottom: auto;
  }

  .tablet\:focus\:my-px:focus{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .tablet\:focus\:my-0\.5:focus{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .tablet\:focus\:my-1\.5:focus{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .tablet\:focus\:my-2\.5:focus{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .tablet\:focus\:my-3\.5:focus{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .tablet\:focus\:-my-0:focus{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .tablet\:focus\:-my-1:focus{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .tablet\:focus\:-my-2:focus{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .tablet\:focus\:-my-3:focus{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .tablet\:focus\:-my-4:focus{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .tablet\:focus\:-my-5:focus{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .tablet\:focus\:-my-6:focus{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .tablet\:focus\:-my-7:focus{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .tablet\:focus\:-my-8:focus{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .tablet\:focus\:-my-9:focus{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .tablet\:focus\:-my-10:focus{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .tablet\:focus\:-my-11:focus{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .tablet\:focus\:-my-12:focus{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .tablet\:focus\:-my-14:focus{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .tablet\:focus\:-my-16:focus{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .tablet\:focus\:-my-20:focus{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .tablet\:focus\:-my-24:focus{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .tablet\:focus\:-my-28:focus{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .tablet\:focus\:-my-32:focus{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .tablet\:focus\:-my-36:focus{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .tablet\:focus\:-my-40:focus{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .tablet\:focus\:-my-44:focus{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .tablet\:focus\:-my-48:focus{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .tablet\:focus\:-my-52:focus{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .tablet\:focus\:-my-56:focus{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .tablet\:focus\:-my-60:focus{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .tablet\:focus\:-my-64:focus{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .tablet\:focus\:-my-72:focus{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .tablet\:focus\:-my-80:focus{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .tablet\:focus\:-my-96:focus{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .tablet\:focus\:-my-px:focus{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .tablet\:focus\:-my-0\.5:focus{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .tablet\:focus\:-my-1\.5:focus{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .tablet\:focus\:-my-2\.5:focus{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .tablet\:focus\:-my-3\.5:focus{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .tablet\:focus\:my-neg1:focus{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .tablet\:focus\:my-neg2:focus{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .tablet\:focus\:my-neg4:focus{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .tablet\:focus\:my-neg6:focus{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .tablet\:focus\:my-neg12:focus{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .tablet\:focus\:my-neg20:focus{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .tablet\:first\:mx-0:first-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .tablet\:first\:mx-1:first-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .tablet\:first\:mx-2:first-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .tablet\:first\:mx-3:first-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .tablet\:first\:mx-4:first-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .tablet\:first\:mx-5:first-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .tablet\:first\:mx-6:first-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .tablet\:first\:mx-7:first-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .tablet\:first\:mx-8:first-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .tablet\:first\:mx-9:first-child{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .tablet\:first\:mx-10:first-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .tablet\:first\:mx-11:first-child{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .tablet\:first\:mx-12:first-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .tablet\:first\:mx-14:first-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .tablet\:first\:mx-16:first-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .tablet\:first\:mx-20:first-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .tablet\:first\:mx-24:first-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .tablet\:first\:mx-28:first-child{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .tablet\:first\:mx-32:first-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .tablet\:first\:mx-36:first-child{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .tablet\:first\:mx-40:first-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .tablet\:first\:mx-44:first-child{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .tablet\:first\:mx-48:first-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .tablet\:first\:mx-52:first-child{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .tablet\:first\:mx-56:first-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .tablet\:first\:mx-60:first-child{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .tablet\:first\:mx-64:first-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .tablet\:first\:mx-72:first-child{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .tablet\:first\:mx-80:first-child{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .tablet\:first\:mx-96:first-child{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .tablet\:first\:mx-auto:first-child{
    margin-left: auto;
    margin-right: auto;
  }

  .tablet\:first\:mx-px:first-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .tablet\:first\:mx-0\.5:first-child{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .tablet\:first\:mx-1\.5:first-child{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .tablet\:first\:mx-2\.5:first-child{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .tablet\:first\:mx-3\.5:first-child{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .tablet\:first\:-mx-0:first-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .tablet\:first\:-mx-1:first-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .tablet\:first\:-mx-2:first-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .tablet\:first\:-mx-3:first-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .tablet\:first\:-mx-4:first-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .tablet\:first\:-mx-5:first-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .tablet\:first\:-mx-6:first-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .tablet\:first\:-mx-7:first-child{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .tablet\:first\:-mx-8:first-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .tablet\:first\:-mx-9:first-child{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .tablet\:first\:-mx-10:first-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .tablet\:first\:-mx-11:first-child{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .tablet\:first\:-mx-12:first-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .tablet\:first\:-mx-14:first-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .tablet\:first\:-mx-16:first-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .tablet\:first\:-mx-20:first-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .tablet\:first\:-mx-24:first-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .tablet\:first\:-mx-28:first-child{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .tablet\:first\:-mx-32:first-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .tablet\:first\:-mx-36:first-child{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .tablet\:first\:-mx-40:first-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .tablet\:first\:-mx-44:first-child{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .tablet\:first\:-mx-48:first-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .tablet\:first\:-mx-52:first-child{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .tablet\:first\:-mx-56:first-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .tablet\:first\:-mx-60:first-child{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .tablet\:first\:-mx-64:first-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .tablet\:first\:-mx-72:first-child{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .tablet\:first\:-mx-80:first-child{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .tablet\:first\:-mx-96:first-child{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .tablet\:first\:-mx-px:first-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .tablet\:first\:-mx-0\.5:first-child{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .tablet\:first\:-mx-1\.5:first-child{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .tablet\:first\:-mx-2\.5:first-child{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .tablet\:first\:-mx-3\.5:first-child{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .tablet\:first\:mx-neg1:first-child{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .tablet\:first\:mx-neg2:first-child{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .tablet\:first\:mx-neg4:first-child{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .tablet\:first\:mx-neg6:first-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .tablet\:first\:mx-neg12:first-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .tablet\:first\:mx-neg20:first-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .tablet\:first\:my-0:first-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .tablet\:first\:my-1:first-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .tablet\:first\:my-2:first-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .tablet\:first\:my-3:first-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .tablet\:first\:my-4:first-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .tablet\:first\:my-5:first-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .tablet\:first\:my-6:first-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .tablet\:first\:my-7:first-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .tablet\:first\:my-8:first-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .tablet\:first\:my-9:first-child{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .tablet\:first\:my-10:first-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .tablet\:first\:my-11:first-child{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .tablet\:first\:my-12:first-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .tablet\:first\:my-14:first-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .tablet\:first\:my-16:first-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .tablet\:first\:my-20:first-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .tablet\:first\:my-24:first-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .tablet\:first\:my-28:first-child{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .tablet\:first\:my-32:first-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .tablet\:first\:my-36:first-child{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .tablet\:first\:my-40:first-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .tablet\:first\:my-44:first-child{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .tablet\:first\:my-48:first-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .tablet\:first\:my-52:first-child{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .tablet\:first\:my-56:first-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .tablet\:first\:my-60:first-child{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .tablet\:first\:my-64:first-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .tablet\:first\:my-72:first-child{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .tablet\:first\:my-80:first-child{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .tablet\:first\:my-96:first-child{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .tablet\:first\:my-auto:first-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .tablet\:first\:my-px:first-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .tablet\:first\:my-0\.5:first-child{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .tablet\:first\:my-1\.5:first-child{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .tablet\:first\:my-2\.5:first-child{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .tablet\:first\:my-3\.5:first-child{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .tablet\:first\:-my-0:first-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .tablet\:first\:-my-1:first-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .tablet\:first\:-my-2:first-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .tablet\:first\:-my-3:first-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .tablet\:first\:-my-4:first-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .tablet\:first\:-my-5:first-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .tablet\:first\:-my-6:first-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .tablet\:first\:-my-7:first-child{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .tablet\:first\:-my-8:first-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .tablet\:first\:-my-9:first-child{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .tablet\:first\:-my-10:first-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .tablet\:first\:-my-11:first-child{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .tablet\:first\:-my-12:first-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .tablet\:first\:-my-14:first-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .tablet\:first\:-my-16:first-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .tablet\:first\:-my-20:first-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .tablet\:first\:-my-24:first-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .tablet\:first\:-my-28:first-child{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .tablet\:first\:-my-32:first-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .tablet\:first\:-my-36:first-child{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .tablet\:first\:-my-40:first-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .tablet\:first\:-my-44:first-child{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .tablet\:first\:-my-48:first-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .tablet\:first\:-my-52:first-child{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .tablet\:first\:-my-56:first-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .tablet\:first\:-my-60:first-child{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .tablet\:first\:-my-64:first-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .tablet\:first\:-my-72:first-child{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .tablet\:first\:-my-80:first-child{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .tablet\:first\:-my-96:first-child{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .tablet\:first\:-my-px:first-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .tablet\:first\:-my-0\.5:first-child{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .tablet\:first\:-my-1\.5:first-child{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .tablet\:first\:-my-2\.5:first-child{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .tablet\:first\:-my-3\.5:first-child{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .tablet\:first\:my-neg1:first-child{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .tablet\:first\:my-neg2:first-child{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .tablet\:first\:my-neg4:first-child{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .tablet\:first\:my-neg6:first-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .tablet\:first\:my-neg12:first-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .tablet\:first\:my-neg20:first-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .tablet\:last\:mx-0:last-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .tablet\:last\:mx-1:last-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .tablet\:last\:mx-2:last-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .tablet\:last\:mx-3:last-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .tablet\:last\:mx-4:last-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .tablet\:last\:mx-5:last-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .tablet\:last\:mx-6:last-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .tablet\:last\:mx-7:last-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .tablet\:last\:mx-8:last-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .tablet\:last\:mx-9:last-child{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .tablet\:last\:mx-10:last-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .tablet\:last\:mx-11:last-child{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .tablet\:last\:mx-12:last-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .tablet\:last\:mx-14:last-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .tablet\:last\:mx-16:last-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .tablet\:last\:mx-20:last-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .tablet\:last\:mx-24:last-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .tablet\:last\:mx-28:last-child{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .tablet\:last\:mx-32:last-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .tablet\:last\:mx-36:last-child{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .tablet\:last\:mx-40:last-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .tablet\:last\:mx-44:last-child{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .tablet\:last\:mx-48:last-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .tablet\:last\:mx-52:last-child{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .tablet\:last\:mx-56:last-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .tablet\:last\:mx-60:last-child{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .tablet\:last\:mx-64:last-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .tablet\:last\:mx-72:last-child{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .tablet\:last\:mx-80:last-child{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .tablet\:last\:mx-96:last-child{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .tablet\:last\:mx-auto:last-child{
    margin-left: auto;
    margin-right: auto;
  }

  .tablet\:last\:mx-px:last-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .tablet\:last\:mx-0\.5:last-child{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .tablet\:last\:mx-1\.5:last-child{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .tablet\:last\:mx-2\.5:last-child{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .tablet\:last\:mx-3\.5:last-child{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .tablet\:last\:-mx-0:last-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .tablet\:last\:-mx-1:last-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .tablet\:last\:-mx-2:last-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .tablet\:last\:-mx-3:last-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .tablet\:last\:-mx-4:last-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .tablet\:last\:-mx-5:last-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .tablet\:last\:-mx-6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .tablet\:last\:-mx-7:last-child{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .tablet\:last\:-mx-8:last-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .tablet\:last\:-mx-9:last-child{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .tablet\:last\:-mx-10:last-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .tablet\:last\:-mx-11:last-child{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .tablet\:last\:-mx-12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .tablet\:last\:-mx-14:last-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .tablet\:last\:-mx-16:last-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .tablet\:last\:-mx-20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .tablet\:last\:-mx-24:last-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .tablet\:last\:-mx-28:last-child{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .tablet\:last\:-mx-32:last-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .tablet\:last\:-mx-36:last-child{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .tablet\:last\:-mx-40:last-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .tablet\:last\:-mx-44:last-child{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .tablet\:last\:-mx-48:last-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .tablet\:last\:-mx-52:last-child{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .tablet\:last\:-mx-56:last-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .tablet\:last\:-mx-60:last-child{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .tablet\:last\:-mx-64:last-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .tablet\:last\:-mx-72:last-child{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .tablet\:last\:-mx-80:last-child{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .tablet\:last\:-mx-96:last-child{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .tablet\:last\:-mx-px:last-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .tablet\:last\:-mx-0\.5:last-child{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .tablet\:last\:-mx-1\.5:last-child{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .tablet\:last\:-mx-2\.5:last-child{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .tablet\:last\:-mx-3\.5:last-child{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .tablet\:last\:mx-neg1:last-child{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .tablet\:last\:mx-neg2:last-child{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .tablet\:last\:mx-neg4:last-child{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .tablet\:last\:mx-neg6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .tablet\:last\:mx-neg12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .tablet\:last\:mx-neg20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .tablet\:last\:my-0:last-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .tablet\:last\:my-1:last-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .tablet\:last\:my-2:last-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .tablet\:last\:my-3:last-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .tablet\:last\:my-4:last-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .tablet\:last\:my-5:last-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .tablet\:last\:my-6:last-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .tablet\:last\:my-7:last-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .tablet\:last\:my-8:last-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .tablet\:last\:my-9:last-child{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .tablet\:last\:my-10:last-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .tablet\:last\:my-11:last-child{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .tablet\:last\:my-12:last-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .tablet\:last\:my-14:last-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .tablet\:last\:my-16:last-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .tablet\:last\:my-20:last-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .tablet\:last\:my-24:last-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .tablet\:last\:my-28:last-child{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .tablet\:last\:my-32:last-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .tablet\:last\:my-36:last-child{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .tablet\:last\:my-40:last-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .tablet\:last\:my-44:last-child{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .tablet\:last\:my-48:last-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .tablet\:last\:my-52:last-child{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .tablet\:last\:my-56:last-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .tablet\:last\:my-60:last-child{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .tablet\:last\:my-64:last-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .tablet\:last\:my-72:last-child{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .tablet\:last\:my-80:last-child{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .tablet\:last\:my-96:last-child{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .tablet\:last\:my-auto:last-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .tablet\:last\:my-px:last-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .tablet\:last\:my-0\.5:last-child{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .tablet\:last\:my-1\.5:last-child{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .tablet\:last\:my-2\.5:last-child{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .tablet\:last\:my-3\.5:last-child{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .tablet\:last\:-my-0:last-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .tablet\:last\:-my-1:last-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .tablet\:last\:-my-2:last-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .tablet\:last\:-my-3:last-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .tablet\:last\:-my-4:last-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .tablet\:last\:-my-5:last-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .tablet\:last\:-my-6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .tablet\:last\:-my-7:last-child{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .tablet\:last\:-my-8:last-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .tablet\:last\:-my-9:last-child{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .tablet\:last\:-my-10:last-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .tablet\:last\:-my-11:last-child{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .tablet\:last\:-my-12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .tablet\:last\:-my-14:last-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .tablet\:last\:-my-16:last-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .tablet\:last\:-my-20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .tablet\:last\:-my-24:last-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .tablet\:last\:-my-28:last-child{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .tablet\:last\:-my-32:last-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .tablet\:last\:-my-36:last-child{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .tablet\:last\:-my-40:last-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .tablet\:last\:-my-44:last-child{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .tablet\:last\:-my-48:last-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .tablet\:last\:-my-52:last-child{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .tablet\:last\:-my-56:last-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .tablet\:last\:-my-60:last-child{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .tablet\:last\:-my-64:last-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .tablet\:last\:-my-72:last-child{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .tablet\:last\:-my-80:last-child{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .tablet\:last\:-my-96:last-child{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .tablet\:last\:-my-px:last-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .tablet\:last\:-my-0\.5:last-child{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .tablet\:last\:-my-1\.5:last-child{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .tablet\:last\:-my-2\.5:last-child{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .tablet\:last\:-my-3\.5:last-child{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .tablet\:last\:my-neg1:last-child{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .tablet\:last\:my-neg2:last-child{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .tablet\:last\:my-neg4:last-child{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .tablet\:last\:my-neg6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .tablet\:last\:my-neg12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .tablet\:last\:my-neg20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .tablet\:mt-0{
    margin-top: 0px;
  }

  .tablet\:mt-1{
    margin-top: 0.25rem;
  }

  .tablet\:mt-2{
    margin-top: 0.5rem;
  }

  .tablet\:mt-3{
    margin-top: 0.75rem;
  }

  .tablet\:mt-4{
    margin-top: 1rem;
  }

  .tablet\:mt-5{
    margin-top: 1.25rem;
  }

  .tablet\:mt-6{
    margin-top: 1.5rem;
  }

  .tablet\:mt-7{
    margin-top: 1.75rem;
  }

  .tablet\:mt-8{
    margin-top: 2rem;
  }

  .tablet\:mt-9{
    margin-top: 2.25rem;
  }

  .tablet\:mt-10{
    margin-top: 2.5rem;
  }

  .tablet\:mt-11{
    margin-top: 2.75rem;
  }

  .tablet\:mt-12{
    margin-top: 3rem;
  }

  .tablet\:mt-14{
    margin-top: 3.5rem;
  }

  .tablet\:mt-16{
    margin-top: 4rem;
  }

  .tablet\:mt-20{
    margin-top: 5rem;
  }

  .tablet\:mt-24{
    margin-top: 6rem;
  }

  .tablet\:mt-28{
    margin-top: 7rem;
  }

  .tablet\:mt-32{
    margin-top: 8rem;
  }

  .tablet\:mt-36{
    margin-top: 9rem;
  }

  .tablet\:mt-40{
    margin-top: 10rem;
  }

  .tablet\:mt-44{
    margin-top: 11rem;
  }

  .tablet\:mt-48{
    margin-top: 12rem;
  }

  .tablet\:mt-52{
    margin-top: 13rem;
  }

  .tablet\:mt-56{
    margin-top: 14rem;
  }

  .tablet\:mt-60{
    margin-top: 15rem;
  }

  .tablet\:mt-64{
    margin-top: 16rem;
  }

  .tablet\:mt-72{
    margin-top: 18rem;
  }

  .tablet\:mt-80{
    margin-top: 20rem;
  }

  .tablet\:mt-96{
    margin-top: 24rem;
  }

  .tablet\:mt-auto{
    margin-top: auto;
  }

  .tablet\:mt-px{
    margin-top: 1px;
  }

  .tablet\:mt-0\.5{
    margin-top: 0.125rem;
  }

  .tablet\:mt-1\.5{
    margin-top: 0.375rem;
  }

  .tablet\:mt-2\.5{
    margin-top: 0.625rem;
  }

  .tablet\:mt-3\.5{
    margin-top: 0.875rem;
  }

  .tablet\:-mt-0{
    margin-top: 0px;
  }

  .tablet\:-mt-1{
    margin-top: -0.25rem;
  }

  .tablet\:-mt-2{
    margin-top: -0.5rem;
  }

  .tablet\:-mt-3{
    margin-top: -0.75rem;
  }

  .tablet\:-mt-4{
    margin-top: -1rem;
  }

  .tablet\:-mt-5{
    margin-top: -1.25rem;
  }

  .tablet\:-mt-6{
    margin-top: -1.5rem;
  }

  .tablet\:-mt-7{
    margin-top: -1.75rem;
  }

  .tablet\:-mt-8{
    margin-top: -2rem;
  }

  .tablet\:-mt-9{
    margin-top: -2.25rem;
  }

  .tablet\:-mt-10{
    margin-top: -2.5rem;
  }

  .tablet\:-mt-11{
    margin-top: -2.75rem;
  }

  .tablet\:-mt-12{
    margin-top: -3rem;
  }

  .tablet\:-mt-14{
    margin-top: -3.5rem;
  }

  .tablet\:-mt-16{
    margin-top: -4rem;
  }

  .tablet\:-mt-20{
    margin-top: -5rem;
  }

  .tablet\:-mt-24{
    margin-top: -6rem;
  }

  .tablet\:-mt-28{
    margin-top: -7rem;
  }

  .tablet\:-mt-32{
    margin-top: -8rem;
  }

  .tablet\:-mt-36{
    margin-top: -9rem;
  }

  .tablet\:-mt-40{
    margin-top: -10rem;
  }

  .tablet\:-mt-44{
    margin-top: -11rem;
  }

  .tablet\:-mt-48{
    margin-top: -12rem;
  }

  .tablet\:-mt-52{
    margin-top: -13rem;
  }

  .tablet\:-mt-56{
    margin-top: -14rem;
  }

  .tablet\:-mt-60{
    margin-top: -15rem;
  }

  .tablet\:-mt-64{
    margin-top: -16rem;
  }

  .tablet\:-mt-72{
    margin-top: -18rem;
  }

  .tablet\:-mt-80{
    margin-top: -20rem;
  }

  .tablet\:-mt-96{
    margin-top: -24rem;
  }

  .tablet\:-mt-px{
    margin-top: -1px;
  }

  .tablet\:-mt-0\.5{
    margin-top: -0.125rem;
  }

  .tablet\:-mt-1\.5{
    margin-top: -0.375rem;
  }

  .tablet\:-mt-2\.5{
    margin-top: -0.625rem;
  }

  .tablet\:-mt-3\.5{
    margin-top: -0.875rem;
  }

  .tablet\:mt-neg1{
    margin-top: -.25rem;
  }

  .tablet\:mt-neg2{
    margin-top: -.5rem;
  }

  .tablet\:mt-neg4{
    margin-top: -1.0rem;
  }

  .tablet\:mt-neg6{
    margin-top: -1.5rem;
  }

  .tablet\:mt-neg12{
    margin-top: -3rem;
  }

  .tablet\:mt-neg20{
    margin-top: -5rem;
  }

  .tablet\:mr-0{
    margin-right: 0px;
  }

  .tablet\:mr-1{
    margin-right: 0.25rem;
  }

  .tablet\:mr-2{
    margin-right: 0.5rem;
  }

  .tablet\:mr-3{
    margin-right: 0.75rem;
  }

  .tablet\:mr-4{
    margin-right: 1rem;
  }

  .tablet\:mr-5{
    margin-right: 1.25rem;
  }

  .tablet\:mr-6{
    margin-right: 1.5rem;
  }

  .tablet\:mr-7{
    margin-right: 1.75rem;
  }

  .tablet\:mr-8{
    margin-right: 2rem;
  }

  .tablet\:mr-9{
    margin-right: 2.25rem;
  }

  .tablet\:mr-10{
    margin-right: 2.5rem;
  }

  .tablet\:mr-11{
    margin-right: 2.75rem;
  }

  .tablet\:mr-12{
    margin-right: 3rem;
  }

  .tablet\:mr-14{
    margin-right: 3.5rem;
  }

  .tablet\:mr-16{
    margin-right: 4rem;
  }

  .tablet\:mr-20{
    margin-right: 5rem;
  }

  .tablet\:mr-24{
    margin-right: 6rem;
  }

  .tablet\:mr-28{
    margin-right: 7rem;
  }

  .tablet\:mr-32{
    margin-right: 8rem;
  }

  .tablet\:mr-36{
    margin-right: 9rem;
  }

  .tablet\:mr-40{
    margin-right: 10rem;
  }

  .tablet\:mr-44{
    margin-right: 11rem;
  }

  .tablet\:mr-48{
    margin-right: 12rem;
  }

  .tablet\:mr-52{
    margin-right: 13rem;
  }

  .tablet\:mr-56{
    margin-right: 14rem;
  }

  .tablet\:mr-60{
    margin-right: 15rem;
  }

  .tablet\:mr-64{
    margin-right: 16rem;
  }

  .tablet\:mr-72{
    margin-right: 18rem;
  }

  .tablet\:mr-80{
    margin-right: 20rem;
  }

  .tablet\:mr-96{
    margin-right: 24rem;
  }

  .tablet\:mr-auto{
    margin-right: auto;
  }

  .tablet\:mr-px{
    margin-right: 1px;
  }

  .tablet\:mr-0\.5{
    margin-right: 0.125rem;
  }

  .tablet\:mr-1\.5{
    margin-right: 0.375rem;
  }

  .tablet\:mr-2\.5{
    margin-right: 0.625rem;
  }

  .tablet\:mr-3\.5{
    margin-right: 0.875rem;
  }

  .tablet\:-mr-0{
    margin-right: 0px;
  }

  .tablet\:-mr-1{
    margin-right: -0.25rem;
  }

  .tablet\:-mr-2{
    margin-right: -0.5rem;
  }

  .tablet\:-mr-3{
    margin-right: -0.75rem;
  }

  .tablet\:-mr-4{
    margin-right: -1rem;
  }

  .tablet\:-mr-5{
    margin-right: -1.25rem;
  }

  .tablet\:-mr-6{
    margin-right: -1.5rem;
  }

  .tablet\:-mr-7{
    margin-right: -1.75rem;
  }

  .tablet\:-mr-8{
    margin-right: -2rem;
  }

  .tablet\:-mr-9{
    margin-right: -2.25rem;
  }

  .tablet\:-mr-10{
    margin-right: -2.5rem;
  }

  .tablet\:-mr-11{
    margin-right: -2.75rem;
  }

  .tablet\:-mr-12{
    margin-right: -3rem;
  }

  .tablet\:-mr-14{
    margin-right: -3.5rem;
  }

  .tablet\:-mr-16{
    margin-right: -4rem;
  }

  .tablet\:-mr-20{
    margin-right: -5rem;
  }

  .tablet\:-mr-24{
    margin-right: -6rem;
  }

  .tablet\:-mr-28{
    margin-right: -7rem;
  }

  .tablet\:-mr-32{
    margin-right: -8rem;
  }

  .tablet\:-mr-36{
    margin-right: -9rem;
  }

  .tablet\:-mr-40{
    margin-right: -10rem;
  }

  .tablet\:-mr-44{
    margin-right: -11rem;
  }

  .tablet\:-mr-48{
    margin-right: -12rem;
  }

  .tablet\:-mr-52{
    margin-right: -13rem;
  }

  .tablet\:-mr-56{
    margin-right: -14rem;
  }

  .tablet\:-mr-60{
    margin-right: -15rem;
  }

  .tablet\:-mr-64{
    margin-right: -16rem;
  }

  .tablet\:-mr-72{
    margin-right: -18rem;
  }

  .tablet\:-mr-80{
    margin-right: -20rem;
  }

  .tablet\:-mr-96{
    margin-right: -24rem;
  }

  .tablet\:-mr-px{
    margin-right: -1px;
  }

  .tablet\:-mr-0\.5{
    margin-right: -0.125rem;
  }

  .tablet\:-mr-1\.5{
    margin-right: -0.375rem;
  }

  .tablet\:-mr-2\.5{
    margin-right: -0.625rem;
  }

  .tablet\:-mr-3\.5{
    margin-right: -0.875rem;
  }

  .tablet\:mr-neg1{
    margin-right: -.25rem;
  }

  .tablet\:mr-neg2{
    margin-right: -.5rem;
  }

  .tablet\:mr-neg4{
    margin-right: -1.0rem;
  }

  .tablet\:mr-neg6{
    margin-right: -1.5rem;
  }

  .tablet\:mr-neg12{
    margin-right: -3rem;
  }

  .tablet\:mr-neg20{
    margin-right: -5rem;
  }

  .tablet\:mb-0{
    margin-bottom: 0px;
  }

  .tablet\:mb-1{
    margin-bottom: 0.25rem;
  }

  .tablet\:mb-2{
    margin-bottom: 0.5rem;
  }

  .tablet\:mb-3{
    margin-bottom: 0.75rem;
  }

  .tablet\:mb-4{
    margin-bottom: 1rem;
  }

  .tablet\:mb-5{
    margin-bottom: 1.25rem;
  }

  .tablet\:mb-6{
    margin-bottom: 1.5rem;
  }

  .tablet\:mb-7{
    margin-bottom: 1.75rem;
  }

  .tablet\:mb-8{
    margin-bottom: 2rem;
  }

  .tablet\:mb-9{
    margin-bottom: 2.25rem;
  }

  .tablet\:mb-10{
    margin-bottom: 2.5rem;
  }

  .tablet\:mb-11{
    margin-bottom: 2.75rem;
  }

  .tablet\:mb-12{
    margin-bottom: 3rem;
  }

  .tablet\:mb-14{
    margin-bottom: 3.5rem;
  }

  .tablet\:mb-16{
    margin-bottom: 4rem;
  }

  .tablet\:mb-20{
    margin-bottom: 5rem;
  }

  .tablet\:mb-24{
    margin-bottom: 6rem;
  }

  .tablet\:mb-28{
    margin-bottom: 7rem;
  }

  .tablet\:mb-32{
    margin-bottom: 8rem;
  }

  .tablet\:mb-36{
    margin-bottom: 9rem;
  }

  .tablet\:mb-40{
    margin-bottom: 10rem;
  }

  .tablet\:mb-44{
    margin-bottom: 11rem;
  }

  .tablet\:mb-48{
    margin-bottom: 12rem;
  }

  .tablet\:mb-52{
    margin-bottom: 13rem;
  }

  .tablet\:mb-56{
    margin-bottom: 14rem;
  }

  .tablet\:mb-60{
    margin-bottom: 15rem;
  }

  .tablet\:mb-64{
    margin-bottom: 16rem;
  }

  .tablet\:mb-72{
    margin-bottom: 18rem;
  }

  .tablet\:mb-80{
    margin-bottom: 20rem;
  }

  .tablet\:mb-96{
    margin-bottom: 24rem;
  }

  .tablet\:mb-auto{
    margin-bottom: auto;
  }

  .tablet\:mb-px{
    margin-bottom: 1px;
  }

  .tablet\:mb-0\.5{
    margin-bottom: 0.125rem;
  }

  .tablet\:mb-1\.5{
    margin-bottom: 0.375rem;
  }

  .tablet\:mb-2\.5{
    margin-bottom: 0.625rem;
  }

  .tablet\:mb-3\.5{
    margin-bottom: 0.875rem;
  }

  .tablet\:-mb-0{
    margin-bottom: 0px;
  }

  .tablet\:-mb-1{
    margin-bottom: -0.25rem;
  }

  .tablet\:-mb-2{
    margin-bottom: -0.5rem;
  }

  .tablet\:-mb-3{
    margin-bottom: -0.75rem;
  }

  .tablet\:-mb-4{
    margin-bottom: -1rem;
  }

  .tablet\:-mb-5{
    margin-bottom: -1.25rem;
  }

  .tablet\:-mb-6{
    margin-bottom: -1.5rem;
  }

  .tablet\:-mb-7{
    margin-bottom: -1.75rem;
  }

  .tablet\:-mb-8{
    margin-bottom: -2rem;
  }

  .tablet\:-mb-9{
    margin-bottom: -2.25rem;
  }

  .tablet\:-mb-10{
    margin-bottom: -2.5rem;
  }

  .tablet\:-mb-11{
    margin-bottom: -2.75rem;
  }

  .tablet\:-mb-12{
    margin-bottom: -3rem;
  }

  .tablet\:-mb-14{
    margin-bottom: -3.5rem;
  }

  .tablet\:-mb-16{
    margin-bottom: -4rem;
  }

  .tablet\:-mb-20{
    margin-bottom: -5rem;
  }

  .tablet\:-mb-24{
    margin-bottom: -6rem;
  }

  .tablet\:-mb-28{
    margin-bottom: -7rem;
  }

  .tablet\:-mb-32{
    margin-bottom: -8rem;
  }

  .tablet\:-mb-36{
    margin-bottom: -9rem;
  }

  .tablet\:-mb-40{
    margin-bottom: -10rem;
  }

  .tablet\:-mb-44{
    margin-bottom: -11rem;
  }

  .tablet\:-mb-48{
    margin-bottom: -12rem;
  }

  .tablet\:-mb-52{
    margin-bottom: -13rem;
  }

  .tablet\:-mb-56{
    margin-bottom: -14rem;
  }

  .tablet\:-mb-60{
    margin-bottom: -15rem;
  }

  .tablet\:-mb-64{
    margin-bottom: -16rem;
  }

  .tablet\:-mb-72{
    margin-bottom: -18rem;
  }

  .tablet\:-mb-80{
    margin-bottom: -20rem;
  }

  .tablet\:-mb-96{
    margin-bottom: -24rem;
  }

  .tablet\:-mb-px{
    margin-bottom: -1px;
  }

  .tablet\:-mb-0\.5{
    margin-bottom: -0.125rem;
  }

  .tablet\:-mb-1\.5{
    margin-bottom: -0.375rem;
  }

  .tablet\:-mb-2\.5{
    margin-bottom: -0.625rem;
  }

  .tablet\:-mb-3\.5{
    margin-bottom: -0.875rem;
  }

  .tablet\:mb-neg1{
    margin-bottom: -.25rem;
  }

  .tablet\:mb-neg2{
    margin-bottom: -.5rem;
  }

  .tablet\:mb-neg4{
    margin-bottom: -1.0rem;
  }

  .tablet\:mb-neg6{
    margin-bottom: -1.5rem;
  }

  .tablet\:mb-neg12{
    margin-bottom: -3rem;
  }

  .tablet\:mb-neg20{
    margin-bottom: -5rem;
  }

  .tablet\:ml-0{
    margin-left: 0px;
  }

  .tablet\:ml-1{
    margin-left: 0.25rem;
  }

  .tablet\:ml-2{
    margin-left: 0.5rem;
  }

  .tablet\:ml-3{
    margin-left: 0.75rem;
  }

  .tablet\:ml-4{
    margin-left: 1rem;
  }

  .tablet\:ml-5{
    margin-left: 1.25rem;
  }

  .tablet\:ml-6{
    margin-left: 1.5rem;
  }

  .tablet\:ml-7{
    margin-left: 1.75rem;
  }

  .tablet\:ml-8{
    margin-left: 2rem;
  }

  .tablet\:ml-9{
    margin-left: 2.25rem;
  }

  .tablet\:ml-10{
    margin-left: 2.5rem;
  }

  .tablet\:ml-11{
    margin-left: 2.75rem;
  }

  .tablet\:ml-12{
    margin-left: 3rem;
  }

  .tablet\:ml-14{
    margin-left: 3.5rem;
  }

  .tablet\:ml-16{
    margin-left: 4rem;
  }

  .tablet\:ml-20{
    margin-left: 5rem;
  }

  .tablet\:ml-24{
    margin-left: 6rem;
  }

  .tablet\:ml-28{
    margin-left: 7rem;
  }

  .tablet\:ml-32{
    margin-left: 8rem;
  }

  .tablet\:ml-36{
    margin-left: 9rem;
  }

  .tablet\:ml-40{
    margin-left: 10rem;
  }

  .tablet\:ml-44{
    margin-left: 11rem;
  }

  .tablet\:ml-48{
    margin-left: 12rem;
  }

  .tablet\:ml-52{
    margin-left: 13rem;
  }

  .tablet\:ml-56{
    margin-left: 14rem;
  }

  .tablet\:ml-60{
    margin-left: 15rem;
  }

  .tablet\:ml-64{
    margin-left: 16rem;
  }

  .tablet\:ml-72{
    margin-left: 18rem;
  }

  .tablet\:ml-80{
    margin-left: 20rem;
  }

  .tablet\:ml-96{
    margin-left: 24rem;
  }

  .tablet\:ml-auto{
    margin-left: auto;
  }

  .tablet\:ml-px{
    margin-left: 1px;
  }

  .tablet\:ml-0\.5{
    margin-left: 0.125rem;
  }

  .tablet\:ml-1\.5{
    margin-left: 0.375rem;
  }

  .tablet\:ml-2\.5{
    margin-left: 0.625rem;
  }

  .tablet\:ml-3\.5{
    margin-left: 0.875rem;
  }

  .tablet\:-ml-0{
    margin-left: 0px;
  }

  .tablet\:-ml-1{
    margin-left: -0.25rem;
  }

  .tablet\:-ml-2{
    margin-left: -0.5rem;
  }

  .tablet\:-ml-3{
    margin-left: -0.75rem;
  }

  .tablet\:-ml-4{
    margin-left: -1rem;
  }

  .tablet\:-ml-5{
    margin-left: -1.25rem;
  }

  .tablet\:-ml-6{
    margin-left: -1.5rem;
  }

  .tablet\:-ml-7{
    margin-left: -1.75rem;
  }

  .tablet\:-ml-8{
    margin-left: -2rem;
  }

  .tablet\:-ml-9{
    margin-left: -2.25rem;
  }

  .tablet\:-ml-10{
    margin-left: -2.5rem;
  }

  .tablet\:-ml-11{
    margin-left: -2.75rem;
  }

  .tablet\:-ml-12{
    margin-left: -3rem;
  }

  .tablet\:-ml-14{
    margin-left: -3.5rem;
  }

  .tablet\:-ml-16{
    margin-left: -4rem;
  }

  .tablet\:-ml-20{
    margin-left: -5rem;
  }

  .tablet\:-ml-24{
    margin-left: -6rem;
  }

  .tablet\:-ml-28{
    margin-left: -7rem;
  }

  .tablet\:-ml-32{
    margin-left: -8rem;
  }

  .tablet\:-ml-36{
    margin-left: -9rem;
  }

  .tablet\:-ml-40{
    margin-left: -10rem;
  }

  .tablet\:-ml-44{
    margin-left: -11rem;
  }

  .tablet\:-ml-48{
    margin-left: -12rem;
  }

  .tablet\:-ml-52{
    margin-left: -13rem;
  }

  .tablet\:-ml-56{
    margin-left: -14rem;
  }

  .tablet\:-ml-60{
    margin-left: -15rem;
  }

  .tablet\:-ml-64{
    margin-left: -16rem;
  }

  .tablet\:-ml-72{
    margin-left: -18rem;
  }

  .tablet\:-ml-80{
    margin-left: -20rem;
  }

  .tablet\:-ml-96{
    margin-left: -24rem;
  }

  .tablet\:-ml-px{
    margin-left: -1px;
  }

  .tablet\:-ml-0\.5{
    margin-left: -0.125rem;
  }

  .tablet\:-ml-1\.5{
    margin-left: -0.375rem;
  }

  .tablet\:-ml-2\.5{
    margin-left: -0.625rem;
  }

  .tablet\:-ml-3\.5{
    margin-left: -0.875rem;
  }

  .tablet\:ml-neg1{
    margin-left: -.25rem;
  }

  .tablet\:ml-neg2{
    margin-left: -.5rem;
  }

  .tablet\:ml-neg4{
    margin-left: -1.0rem;
  }

  .tablet\:ml-neg6{
    margin-left: -1.5rem;
  }

  .tablet\:ml-neg12{
    margin-left: -3rem;
  }

  .tablet\:ml-neg20{
    margin-left: -5rem;
  }

  .tablet\:last\:mt-0:last-child{
    margin-top: 0px;
  }

  .tablet\:last\:mt-1:last-child{
    margin-top: 0.25rem;
  }

  .tablet\:last\:mt-2:last-child{
    margin-top: 0.5rem;
  }

  .tablet\:last\:mt-3:last-child{
    margin-top: 0.75rem;
  }

  .tablet\:last\:mt-4:last-child{
    margin-top: 1rem;
  }

  .tablet\:last\:mt-5:last-child{
    margin-top: 1.25rem;
  }

  .tablet\:last\:mt-6:last-child{
    margin-top: 1.5rem;
  }

  .tablet\:last\:mt-7:last-child{
    margin-top: 1.75rem;
  }

  .tablet\:last\:mt-8:last-child{
    margin-top: 2rem;
  }

  .tablet\:last\:mt-9:last-child{
    margin-top: 2.25rem;
  }

  .tablet\:last\:mt-10:last-child{
    margin-top: 2.5rem;
  }

  .tablet\:last\:mt-11:last-child{
    margin-top: 2.75rem;
  }

  .tablet\:last\:mt-12:last-child{
    margin-top: 3rem;
  }

  .tablet\:last\:mt-14:last-child{
    margin-top: 3.5rem;
  }

  .tablet\:last\:mt-16:last-child{
    margin-top: 4rem;
  }

  .tablet\:last\:mt-20:last-child{
    margin-top: 5rem;
  }

  .tablet\:last\:mt-24:last-child{
    margin-top: 6rem;
  }

  .tablet\:last\:mt-28:last-child{
    margin-top: 7rem;
  }

  .tablet\:last\:mt-32:last-child{
    margin-top: 8rem;
  }

  .tablet\:last\:mt-36:last-child{
    margin-top: 9rem;
  }

  .tablet\:last\:mt-40:last-child{
    margin-top: 10rem;
  }

  .tablet\:last\:mt-44:last-child{
    margin-top: 11rem;
  }

  .tablet\:last\:mt-48:last-child{
    margin-top: 12rem;
  }

  .tablet\:last\:mt-52:last-child{
    margin-top: 13rem;
  }

  .tablet\:last\:mt-56:last-child{
    margin-top: 14rem;
  }

  .tablet\:last\:mt-60:last-child{
    margin-top: 15rem;
  }

  .tablet\:last\:mt-64:last-child{
    margin-top: 16rem;
  }

  .tablet\:last\:mt-72:last-child{
    margin-top: 18rem;
  }

  .tablet\:last\:mt-80:last-child{
    margin-top: 20rem;
  }

  .tablet\:last\:mt-96:last-child{
    margin-top: 24rem;
  }

  .tablet\:last\:mt-auto:last-child{
    margin-top: auto;
  }

  .tablet\:last\:mt-px:last-child{
    margin-top: 1px;
  }

  .tablet\:last\:mt-0\.5:last-child{
    margin-top: 0.125rem;
  }

  .tablet\:last\:mt-1\.5:last-child{
    margin-top: 0.375rem;
  }

  .tablet\:last\:mt-2\.5:last-child{
    margin-top: 0.625rem;
  }

  .tablet\:last\:mt-3\.5:last-child{
    margin-top: 0.875rem;
  }

  .tablet\:last\:-mt-0:last-child{
    margin-top: 0px;
  }

  .tablet\:last\:-mt-1:last-child{
    margin-top: -0.25rem;
  }

  .tablet\:last\:-mt-2:last-child{
    margin-top: -0.5rem;
  }

  .tablet\:last\:-mt-3:last-child{
    margin-top: -0.75rem;
  }

  .tablet\:last\:-mt-4:last-child{
    margin-top: -1rem;
  }

  .tablet\:last\:-mt-5:last-child{
    margin-top: -1.25rem;
  }

  .tablet\:last\:-mt-6:last-child{
    margin-top: -1.5rem;
  }

  .tablet\:last\:-mt-7:last-child{
    margin-top: -1.75rem;
  }

  .tablet\:last\:-mt-8:last-child{
    margin-top: -2rem;
  }

  .tablet\:last\:-mt-9:last-child{
    margin-top: -2.25rem;
  }

  .tablet\:last\:-mt-10:last-child{
    margin-top: -2.5rem;
  }

  .tablet\:last\:-mt-11:last-child{
    margin-top: -2.75rem;
  }

  .tablet\:last\:-mt-12:last-child{
    margin-top: -3rem;
  }

  .tablet\:last\:-mt-14:last-child{
    margin-top: -3.5rem;
  }

  .tablet\:last\:-mt-16:last-child{
    margin-top: -4rem;
  }

  .tablet\:last\:-mt-20:last-child{
    margin-top: -5rem;
  }

  .tablet\:last\:-mt-24:last-child{
    margin-top: -6rem;
  }

  .tablet\:last\:-mt-28:last-child{
    margin-top: -7rem;
  }

  .tablet\:last\:-mt-32:last-child{
    margin-top: -8rem;
  }

  .tablet\:last\:-mt-36:last-child{
    margin-top: -9rem;
  }

  .tablet\:last\:-mt-40:last-child{
    margin-top: -10rem;
  }

  .tablet\:last\:-mt-44:last-child{
    margin-top: -11rem;
  }

  .tablet\:last\:-mt-48:last-child{
    margin-top: -12rem;
  }

  .tablet\:last\:-mt-52:last-child{
    margin-top: -13rem;
  }

  .tablet\:last\:-mt-56:last-child{
    margin-top: -14rem;
  }

  .tablet\:last\:-mt-60:last-child{
    margin-top: -15rem;
  }

  .tablet\:last\:-mt-64:last-child{
    margin-top: -16rem;
  }

  .tablet\:last\:-mt-72:last-child{
    margin-top: -18rem;
  }

  .tablet\:last\:-mt-80:last-child{
    margin-top: -20rem;
  }

  .tablet\:last\:-mt-96:last-child{
    margin-top: -24rem;
  }

  .tablet\:last\:-mt-px:last-child{
    margin-top: -1px;
  }

  .tablet\:last\:-mt-0\.5:last-child{
    margin-top: -0.125rem;
  }

  .tablet\:last\:-mt-1\.5:last-child{
    margin-top: -0.375rem;
  }

  .tablet\:last\:-mt-2\.5:last-child{
    margin-top: -0.625rem;
  }

  .tablet\:last\:-mt-3\.5:last-child{
    margin-top: -0.875rem;
  }

  .tablet\:last\:mt-neg1:last-child{
    margin-top: -.25rem;
  }

  .tablet\:last\:mt-neg2:last-child{
    margin-top: -.5rem;
  }

  .tablet\:last\:mt-neg4:last-child{
    margin-top: -1.0rem;
  }

  .tablet\:last\:mt-neg6:last-child{
    margin-top: -1.5rem;
  }

  .tablet\:last\:mt-neg12:last-child{
    margin-top: -3rem;
  }

  .tablet\:last\:mt-neg20:last-child{
    margin-top: -5rem;
  }

  .tablet\:last\:mr-0:last-child{
    margin-right: 0px;
  }

  .tablet\:last\:mr-1:last-child{
    margin-right: 0.25rem;
  }

  .tablet\:last\:mr-2:last-child{
    margin-right: 0.5rem;
  }

  .tablet\:last\:mr-3:last-child{
    margin-right: 0.75rem;
  }

  .tablet\:last\:mr-4:last-child{
    margin-right: 1rem;
  }

  .tablet\:last\:mr-5:last-child{
    margin-right: 1.25rem;
  }

  .tablet\:last\:mr-6:last-child{
    margin-right: 1.5rem;
  }

  .tablet\:last\:mr-7:last-child{
    margin-right: 1.75rem;
  }

  .tablet\:last\:mr-8:last-child{
    margin-right: 2rem;
  }

  .tablet\:last\:mr-9:last-child{
    margin-right: 2.25rem;
  }

  .tablet\:last\:mr-10:last-child{
    margin-right: 2.5rem;
  }

  .tablet\:last\:mr-11:last-child{
    margin-right: 2.75rem;
  }

  .tablet\:last\:mr-12:last-child{
    margin-right: 3rem;
  }

  .tablet\:last\:mr-14:last-child{
    margin-right: 3.5rem;
  }

  .tablet\:last\:mr-16:last-child{
    margin-right: 4rem;
  }

  .tablet\:last\:mr-20:last-child{
    margin-right: 5rem;
  }

  .tablet\:last\:mr-24:last-child{
    margin-right: 6rem;
  }

  .tablet\:last\:mr-28:last-child{
    margin-right: 7rem;
  }

  .tablet\:last\:mr-32:last-child{
    margin-right: 8rem;
  }

  .tablet\:last\:mr-36:last-child{
    margin-right: 9rem;
  }

  .tablet\:last\:mr-40:last-child{
    margin-right: 10rem;
  }

  .tablet\:last\:mr-44:last-child{
    margin-right: 11rem;
  }

  .tablet\:last\:mr-48:last-child{
    margin-right: 12rem;
  }

  .tablet\:last\:mr-52:last-child{
    margin-right: 13rem;
  }

  .tablet\:last\:mr-56:last-child{
    margin-right: 14rem;
  }

  .tablet\:last\:mr-60:last-child{
    margin-right: 15rem;
  }

  .tablet\:last\:mr-64:last-child{
    margin-right: 16rem;
  }

  .tablet\:last\:mr-72:last-child{
    margin-right: 18rem;
  }

  .tablet\:last\:mr-80:last-child{
    margin-right: 20rem;
  }

  .tablet\:last\:mr-96:last-child{
    margin-right: 24rem;
  }

  .tablet\:last\:mr-auto:last-child{
    margin-right: auto;
  }

  .tablet\:last\:mr-px:last-child{
    margin-right: 1px;
  }

  .tablet\:last\:mr-0\.5:last-child{
    margin-right: 0.125rem;
  }

  .tablet\:last\:mr-1\.5:last-child{
    margin-right: 0.375rem;
  }

  .tablet\:last\:mr-2\.5:last-child{
    margin-right: 0.625rem;
  }

  .tablet\:last\:mr-3\.5:last-child{
    margin-right: 0.875rem;
  }

  .tablet\:last\:-mr-0:last-child{
    margin-right: 0px;
  }

  .tablet\:last\:-mr-1:last-child{
    margin-right: -0.25rem;
  }

  .tablet\:last\:-mr-2:last-child{
    margin-right: -0.5rem;
  }

  .tablet\:last\:-mr-3:last-child{
    margin-right: -0.75rem;
  }

  .tablet\:last\:-mr-4:last-child{
    margin-right: -1rem;
  }

  .tablet\:last\:-mr-5:last-child{
    margin-right: -1.25rem;
  }

  .tablet\:last\:-mr-6:last-child{
    margin-right: -1.5rem;
  }

  .tablet\:last\:-mr-7:last-child{
    margin-right: -1.75rem;
  }

  .tablet\:last\:-mr-8:last-child{
    margin-right: -2rem;
  }

  .tablet\:last\:-mr-9:last-child{
    margin-right: -2.25rem;
  }

  .tablet\:last\:-mr-10:last-child{
    margin-right: -2.5rem;
  }

  .tablet\:last\:-mr-11:last-child{
    margin-right: -2.75rem;
  }

  .tablet\:last\:-mr-12:last-child{
    margin-right: -3rem;
  }

  .tablet\:last\:-mr-14:last-child{
    margin-right: -3.5rem;
  }

  .tablet\:last\:-mr-16:last-child{
    margin-right: -4rem;
  }

  .tablet\:last\:-mr-20:last-child{
    margin-right: -5rem;
  }

  .tablet\:last\:-mr-24:last-child{
    margin-right: -6rem;
  }

  .tablet\:last\:-mr-28:last-child{
    margin-right: -7rem;
  }

  .tablet\:last\:-mr-32:last-child{
    margin-right: -8rem;
  }

  .tablet\:last\:-mr-36:last-child{
    margin-right: -9rem;
  }

  .tablet\:last\:-mr-40:last-child{
    margin-right: -10rem;
  }

  .tablet\:last\:-mr-44:last-child{
    margin-right: -11rem;
  }

  .tablet\:last\:-mr-48:last-child{
    margin-right: -12rem;
  }

  .tablet\:last\:-mr-52:last-child{
    margin-right: -13rem;
  }

  .tablet\:last\:-mr-56:last-child{
    margin-right: -14rem;
  }

  .tablet\:last\:-mr-60:last-child{
    margin-right: -15rem;
  }

  .tablet\:last\:-mr-64:last-child{
    margin-right: -16rem;
  }

  .tablet\:last\:-mr-72:last-child{
    margin-right: -18rem;
  }

  .tablet\:last\:-mr-80:last-child{
    margin-right: -20rem;
  }

  .tablet\:last\:-mr-96:last-child{
    margin-right: -24rem;
  }

  .tablet\:last\:-mr-px:last-child{
    margin-right: -1px;
  }

  .tablet\:last\:-mr-0\.5:last-child{
    margin-right: -0.125rem;
  }

  .tablet\:last\:-mr-1\.5:last-child{
    margin-right: -0.375rem;
  }

  .tablet\:last\:-mr-2\.5:last-child{
    margin-right: -0.625rem;
  }

  .tablet\:last\:-mr-3\.5:last-child{
    margin-right: -0.875rem;
  }

  .tablet\:last\:mr-neg1:last-child{
    margin-right: -.25rem;
  }

  .tablet\:last\:mr-neg2:last-child{
    margin-right: -.5rem;
  }

  .tablet\:last\:mr-neg4:last-child{
    margin-right: -1.0rem;
  }

  .tablet\:last\:mr-neg6:last-child{
    margin-right: -1.5rem;
  }

  .tablet\:last\:mr-neg12:last-child{
    margin-right: -3rem;
  }

  .tablet\:last\:mr-neg20:last-child{
    margin-right: -5rem;
  }

  .tablet\:last\:mb-0:last-child{
    margin-bottom: 0px;
  }

  .tablet\:last\:mb-1:last-child{
    margin-bottom: 0.25rem;
  }

  .tablet\:last\:mb-2:last-child{
    margin-bottom: 0.5rem;
  }

  .tablet\:last\:mb-3:last-child{
    margin-bottom: 0.75rem;
  }

  .tablet\:last\:mb-4:last-child{
    margin-bottom: 1rem;
  }

  .tablet\:last\:mb-5:last-child{
    margin-bottom: 1.25rem;
  }

  .tablet\:last\:mb-6:last-child{
    margin-bottom: 1.5rem;
  }

  .tablet\:last\:mb-7:last-child{
    margin-bottom: 1.75rem;
  }

  .tablet\:last\:mb-8:last-child{
    margin-bottom: 2rem;
  }

  .tablet\:last\:mb-9:last-child{
    margin-bottom: 2.25rem;
  }

  .tablet\:last\:mb-10:last-child{
    margin-bottom: 2.5rem;
  }

  .tablet\:last\:mb-11:last-child{
    margin-bottom: 2.75rem;
  }

  .tablet\:last\:mb-12:last-child{
    margin-bottom: 3rem;
  }

  .tablet\:last\:mb-14:last-child{
    margin-bottom: 3.5rem;
  }

  .tablet\:last\:mb-16:last-child{
    margin-bottom: 4rem;
  }

  .tablet\:last\:mb-20:last-child{
    margin-bottom: 5rem;
  }

  .tablet\:last\:mb-24:last-child{
    margin-bottom: 6rem;
  }

  .tablet\:last\:mb-28:last-child{
    margin-bottom: 7rem;
  }

  .tablet\:last\:mb-32:last-child{
    margin-bottom: 8rem;
  }

  .tablet\:last\:mb-36:last-child{
    margin-bottom: 9rem;
  }

  .tablet\:last\:mb-40:last-child{
    margin-bottom: 10rem;
  }

  .tablet\:last\:mb-44:last-child{
    margin-bottom: 11rem;
  }

  .tablet\:last\:mb-48:last-child{
    margin-bottom: 12rem;
  }

  .tablet\:last\:mb-52:last-child{
    margin-bottom: 13rem;
  }

  .tablet\:last\:mb-56:last-child{
    margin-bottom: 14rem;
  }

  .tablet\:last\:mb-60:last-child{
    margin-bottom: 15rem;
  }

  .tablet\:last\:mb-64:last-child{
    margin-bottom: 16rem;
  }

  .tablet\:last\:mb-72:last-child{
    margin-bottom: 18rem;
  }

  .tablet\:last\:mb-80:last-child{
    margin-bottom: 20rem;
  }

  .tablet\:last\:mb-96:last-child{
    margin-bottom: 24rem;
  }

  .tablet\:last\:mb-auto:last-child{
    margin-bottom: auto;
  }

  .tablet\:last\:mb-px:last-child{
    margin-bottom: 1px;
  }

  .tablet\:last\:mb-0\.5:last-child{
    margin-bottom: 0.125rem;
  }

  .tablet\:last\:mb-1\.5:last-child{
    margin-bottom: 0.375rem;
  }

  .tablet\:last\:mb-2\.5:last-child{
    margin-bottom: 0.625rem;
  }

  .tablet\:last\:mb-3\.5:last-child{
    margin-bottom: 0.875rem;
  }

  .tablet\:last\:-mb-0:last-child{
    margin-bottom: 0px;
  }

  .tablet\:last\:-mb-1:last-child{
    margin-bottom: -0.25rem;
  }

  .tablet\:last\:-mb-2:last-child{
    margin-bottom: -0.5rem;
  }

  .tablet\:last\:-mb-3:last-child{
    margin-bottom: -0.75rem;
  }

  .tablet\:last\:-mb-4:last-child{
    margin-bottom: -1rem;
  }

  .tablet\:last\:-mb-5:last-child{
    margin-bottom: -1.25rem;
  }

  .tablet\:last\:-mb-6:last-child{
    margin-bottom: -1.5rem;
  }

  .tablet\:last\:-mb-7:last-child{
    margin-bottom: -1.75rem;
  }

  .tablet\:last\:-mb-8:last-child{
    margin-bottom: -2rem;
  }

  .tablet\:last\:-mb-9:last-child{
    margin-bottom: -2.25rem;
  }

  .tablet\:last\:-mb-10:last-child{
    margin-bottom: -2.5rem;
  }

  .tablet\:last\:-mb-11:last-child{
    margin-bottom: -2.75rem;
  }

  .tablet\:last\:-mb-12:last-child{
    margin-bottom: -3rem;
  }

  .tablet\:last\:-mb-14:last-child{
    margin-bottom: -3.5rem;
  }

  .tablet\:last\:-mb-16:last-child{
    margin-bottom: -4rem;
  }

  .tablet\:last\:-mb-20:last-child{
    margin-bottom: -5rem;
  }

  .tablet\:last\:-mb-24:last-child{
    margin-bottom: -6rem;
  }

  .tablet\:last\:-mb-28:last-child{
    margin-bottom: -7rem;
  }

  .tablet\:last\:-mb-32:last-child{
    margin-bottom: -8rem;
  }

  .tablet\:last\:-mb-36:last-child{
    margin-bottom: -9rem;
  }

  .tablet\:last\:-mb-40:last-child{
    margin-bottom: -10rem;
  }

  .tablet\:last\:-mb-44:last-child{
    margin-bottom: -11rem;
  }

  .tablet\:last\:-mb-48:last-child{
    margin-bottom: -12rem;
  }

  .tablet\:last\:-mb-52:last-child{
    margin-bottom: -13rem;
  }

  .tablet\:last\:-mb-56:last-child{
    margin-bottom: -14rem;
  }

  .tablet\:last\:-mb-60:last-child{
    margin-bottom: -15rem;
  }

  .tablet\:last\:-mb-64:last-child{
    margin-bottom: -16rem;
  }

  .tablet\:last\:-mb-72:last-child{
    margin-bottom: -18rem;
  }

  .tablet\:last\:-mb-80:last-child{
    margin-bottom: -20rem;
  }

  .tablet\:last\:-mb-96:last-child{
    margin-bottom: -24rem;
  }

  .tablet\:last\:-mb-px:last-child{
    margin-bottom: -1px;
  }

  .tablet\:last\:-mb-0\.5:last-child{
    margin-bottom: -0.125rem;
  }

  .tablet\:last\:-mb-1\.5:last-child{
    margin-bottom: -0.375rem;
  }

  .tablet\:last\:-mb-2\.5:last-child{
    margin-bottom: -0.625rem;
  }

  .tablet\:last\:-mb-3\.5:last-child{
    margin-bottom: -0.875rem;
  }

  .tablet\:last\:mb-neg1:last-child{
    margin-bottom: -.25rem;
  }

  .tablet\:last\:mb-neg2:last-child{
    margin-bottom: -.5rem;
  }

  .tablet\:last\:mb-neg4:last-child{
    margin-bottom: -1.0rem;
  }

  .tablet\:last\:mb-neg6:last-child{
    margin-bottom: -1.5rem;
  }

  .tablet\:last\:mb-neg12:last-child{
    margin-bottom: -3rem;
  }

  .tablet\:last\:mb-neg20:last-child{
    margin-bottom: -5rem;
  }

  .tablet\:last\:ml-0:last-child{
    margin-left: 0px;
  }

  .tablet\:last\:ml-1:last-child{
    margin-left: 0.25rem;
  }

  .tablet\:last\:ml-2:last-child{
    margin-left: 0.5rem;
  }

  .tablet\:last\:ml-3:last-child{
    margin-left: 0.75rem;
  }

  .tablet\:last\:ml-4:last-child{
    margin-left: 1rem;
  }

  .tablet\:last\:ml-5:last-child{
    margin-left: 1.25rem;
  }

  .tablet\:last\:ml-6:last-child{
    margin-left: 1.5rem;
  }

  .tablet\:last\:ml-7:last-child{
    margin-left: 1.75rem;
  }

  .tablet\:last\:ml-8:last-child{
    margin-left: 2rem;
  }

  .tablet\:last\:ml-9:last-child{
    margin-left: 2.25rem;
  }

  .tablet\:last\:ml-10:last-child{
    margin-left: 2.5rem;
  }

  .tablet\:last\:ml-11:last-child{
    margin-left: 2.75rem;
  }

  .tablet\:last\:ml-12:last-child{
    margin-left: 3rem;
  }

  .tablet\:last\:ml-14:last-child{
    margin-left: 3.5rem;
  }

  .tablet\:last\:ml-16:last-child{
    margin-left: 4rem;
  }

  .tablet\:last\:ml-20:last-child{
    margin-left: 5rem;
  }

  .tablet\:last\:ml-24:last-child{
    margin-left: 6rem;
  }

  .tablet\:last\:ml-28:last-child{
    margin-left: 7rem;
  }

  .tablet\:last\:ml-32:last-child{
    margin-left: 8rem;
  }

  .tablet\:last\:ml-36:last-child{
    margin-left: 9rem;
  }

  .tablet\:last\:ml-40:last-child{
    margin-left: 10rem;
  }

  .tablet\:last\:ml-44:last-child{
    margin-left: 11rem;
  }

  .tablet\:last\:ml-48:last-child{
    margin-left: 12rem;
  }

  .tablet\:last\:ml-52:last-child{
    margin-left: 13rem;
  }

  .tablet\:last\:ml-56:last-child{
    margin-left: 14rem;
  }

  .tablet\:last\:ml-60:last-child{
    margin-left: 15rem;
  }

  .tablet\:last\:ml-64:last-child{
    margin-left: 16rem;
  }

  .tablet\:last\:ml-72:last-child{
    margin-left: 18rem;
  }

  .tablet\:last\:ml-80:last-child{
    margin-left: 20rem;
  }

  .tablet\:last\:ml-96:last-child{
    margin-left: 24rem;
  }

  .tablet\:last\:ml-auto:last-child{
    margin-left: auto;
  }

  .tablet\:last\:ml-px:last-child{
    margin-left: 1px;
  }

  .tablet\:last\:ml-0\.5:last-child{
    margin-left: 0.125rem;
  }

  .tablet\:last\:ml-1\.5:last-child{
    margin-left: 0.375rem;
  }

  .tablet\:last\:ml-2\.5:last-child{
    margin-left: 0.625rem;
  }

  .tablet\:last\:ml-3\.5:last-child{
    margin-left: 0.875rem;
  }

  .tablet\:last\:-ml-0:last-child{
    margin-left: 0px;
  }

  .tablet\:last\:-ml-1:last-child{
    margin-left: -0.25rem;
  }

  .tablet\:last\:-ml-2:last-child{
    margin-left: -0.5rem;
  }

  .tablet\:last\:-ml-3:last-child{
    margin-left: -0.75rem;
  }

  .tablet\:last\:-ml-4:last-child{
    margin-left: -1rem;
  }

  .tablet\:last\:-ml-5:last-child{
    margin-left: -1.25rem;
  }

  .tablet\:last\:-ml-6:last-child{
    margin-left: -1.5rem;
  }

  .tablet\:last\:-ml-7:last-child{
    margin-left: -1.75rem;
  }

  .tablet\:last\:-ml-8:last-child{
    margin-left: -2rem;
  }

  .tablet\:last\:-ml-9:last-child{
    margin-left: -2.25rem;
  }

  .tablet\:last\:-ml-10:last-child{
    margin-left: -2.5rem;
  }

  .tablet\:last\:-ml-11:last-child{
    margin-left: -2.75rem;
  }

  .tablet\:last\:-ml-12:last-child{
    margin-left: -3rem;
  }

  .tablet\:last\:-ml-14:last-child{
    margin-left: -3.5rem;
  }

  .tablet\:last\:-ml-16:last-child{
    margin-left: -4rem;
  }

  .tablet\:last\:-ml-20:last-child{
    margin-left: -5rem;
  }

  .tablet\:last\:-ml-24:last-child{
    margin-left: -6rem;
  }

  .tablet\:last\:-ml-28:last-child{
    margin-left: -7rem;
  }

  .tablet\:last\:-ml-32:last-child{
    margin-left: -8rem;
  }

  .tablet\:last\:-ml-36:last-child{
    margin-left: -9rem;
  }

  .tablet\:last\:-ml-40:last-child{
    margin-left: -10rem;
  }

  .tablet\:last\:-ml-44:last-child{
    margin-left: -11rem;
  }

  .tablet\:last\:-ml-48:last-child{
    margin-left: -12rem;
  }

  .tablet\:last\:-ml-52:last-child{
    margin-left: -13rem;
  }

  .tablet\:last\:-ml-56:last-child{
    margin-left: -14rem;
  }

  .tablet\:last\:-ml-60:last-child{
    margin-left: -15rem;
  }

  .tablet\:last\:-ml-64:last-child{
    margin-left: -16rem;
  }

  .tablet\:last\:-ml-72:last-child{
    margin-left: -18rem;
  }

  .tablet\:last\:-ml-80:last-child{
    margin-left: -20rem;
  }

  .tablet\:last\:-ml-96:last-child{
    margin-left: -24rem;
  }

  .tablet\:last\:-ml-px:last-child{
    margin-left: -1px;
  }

  .tablet\:last\:-ml-0\.5:last-child{
    margin-left: -0.125rem;
  }

  .tablet\:last\:-ml-1\.5:last-child{
    margin-left: -0.375rem;
  }

  .tablet\:last\:-ml-2\.5:last-child{
    margin-left: -0.625rem;
  }

  .tablet\:last\:-ml-3\.5:last-child{
    margin-left: -0.875rem;
  }

  .tablet\:last\:ml-neg1:last-child{
    margin-left: -.25rem;
  }

  .tablet\:last\:ml-neg2:last-child{
    margin-left: -.5rem;
  }

  .tablet\:last\:ml-neg4:last-child{
    margin-left: -1.0rem;
  }

  .tablet\:last\:ml-neg6:last-child{
    margin-left: -1.5rem;
  }

  .tablet\:last\:ml-neg12:last-child{
    margin-left: -3rem;
  }

  .tablet\:last\:ml-neg20:last-child{
    margin-left: -5rem;
  }

  .tablet\:hover\:mt-0:hover{
    margin-top: 0px;
  }

  .tablet\:hover\:mt-1:hover{
    margin-top: 0.25rem;
  }

  .tablet\:hover\:mt-2:hover{
    margin-top: 0.5rem;
  }

  .tablet\:hover\:mt-3:hover{
    margin-top: 0.75rem;
  }

  .tablet\:hover\:mt-4:hover{
    margin-top: 1rem;
  }

  .tablet\:hover\:mt-5:hover{
    margin-top: 1.25rem;
  }

  .tablet\:hover\:mt-6:hover{
    margin-top: 1.5rem;
  }

  .tablet\:hover\:mt-7:hover{
    margin-top: 1.75rem;
  }

  .tablet\:hover\:mt-8:hover{
    margin-top: 2rem;
  }

  .tablet\:hover\:mt-9:hover{
    margin-top: 2.25rem;
  }

  .tablet\:hover\:mt-10:hover{
    margin-top: 2.5rem;
  }

  .tablet\:hover\:mt-11:hover{
    margin-top: 2.75rem;
  }

  .tablet\:hover\:mt-12:hover{
    margin-top: 3rem;
  }

  .tablet\:hover\:mt-14:hover{
    margin-top: 3.5rem;
  }

  .tablet\:hover\:mt-16:hover{
    margin-top: 4rem;
  }

  .tablet\:hover\:mt-20:hover{
    margin-top: 5rem;
  }

  .tablet\:hover\:mt-24:hover{
    margin-top: 6rem;
  }

  .tablet\:hover\:mt-28:hover{
    margin-top: 7rem;
  }

  .tablet\:hover\:mt-32:hover{
    margin-top: 8rem;
  }

  .tablet\:hover\:mt-36:hover{
    margin-top: 9rem;
  }

  .tablet\:hover\:mt-40:hover{
    margin-top: 10rem;
  }

  .tablet\:hover\:mt-44:hover{
    margin-top: 11rem;
  }

  .tablet\:hover\:mt-48:hover{
    margin-top: 12rem;
  }

  .tablet\:hover\:mt-52:hover{
    margin-top: 13rem;
  }

  .tablet\:hover\:mt-56:hover{
    margin-top: 14rem;
  }

  .tablet\:hover\:mt-60:hover{
    margin-top: 15rem;
  }

  .tablet\:hover\:mt-64:hover{
    margin-top: 16rem;
  }

  .tablet\:hover\:mt-72:hover{
    margin-top: 18rem;
  }

  .tablet\:hover\:mt-80:hover{
    margin-top: 20rem;
  }

  .tablet\:hover\:mt-96:hover{
    margin-top: 24rem;
  }

  .tablet\:hover\:mt-auto:hover{
    margin-top: auto;
  }

  .tablet\:hover\:mt-px:hover{
    margin-top: 1px;
  }

  .tablet\:hover\:mt-0\.5:hover{
    margin-top: 0.125rem;
  }

  .tablet\:hover\:mt-1\.5:hover{
    margin-top: 0.375rem;
  }

  .tablet\:hover\:mt-2\.5:hover{
    margin-top: 0.625rem;
  }

  .tablet\:hover\:mt-3\.5:hover{
    margin-top: 0.875rem;
  }

  .tablet\:hover\:-mt-0:hover{
    margin-top: 0px;
  }

  .tablet\:hover\:-mt-1:hover{
    margin-top: -0.25rem;
  }

  .tablet\:hover\:-mt-2:hover{
    margin-top: -0.5rem;
  }

  .tablet\:hover\:-mt-3:hover{
    margin-top: -0.75rem;
  }

  .tablet\:hover\:-mt-4:hover{
    margin-top: -1rem;
  }

  .tablet\:hover\:-mt-5:hover{
    margin-top: -1.25rem;
  }

  .tablet\:hover\:-mt-6:hover{
    margin-top: -1.5rem;
  }

  .tablet\:hover\:-mt-7:hover{
    margin-top: -1.75rem;
  }

  .tablet\:hover\:-mt-8:hover{
    margin-top: -2rem;
  }

  .tablet\:hover\:-mt-9:hover{
    margin-top: -2.25rem;
  }

  .tablet\:hover\:-mt-10:hover{
    margin-top: -2.5rem;
  }

  .tablet\:hover\:-mt-11:hover{
    margin-top: -2.75rem;
  }

  .tablet\:hover\:-mt-12:hover{
    margin-top: -3rem;
  }

  .tablet\:hover\:-mt-14:hover{
    margin-top: -3.5rem;
  }

  .tablet\:hover\:-mt-16:hover{
    margin-top: -4rem;
  }

  .tablet\:hover\:-mt-20:hover{
    margin-top: -5rem;
  }

  .tablet\:hover\:-mt-24:hover{
    margin-top: -6rem;
  }

  .tablet\:hover\:-mt-28:hover{
    margin-top: -7rem;
  }

  .tablet\:hover\:-mt-32:hover{
    margin-top: -8rem;
  }

  .tablet\:hover\:-mt-36:hover{
    margin-top: -9rem;
  }

  .tablet\:hover\:-mt-40:hover{
    margin-top: -10rem;
  }

  .tablet\:hover\:-mt-44:hover{
    margin-top: -11rem;
  }

  .tablet\:hover\:-mt-48:hover{
    margin-top: -12rem;
  }

  .tablet\:hover\:-mt-52:hover{
    margin-top: -13rem;
  }

  .tablet\:hover\:-mt-56:hover{
    margin-top: -14rem;
  }

  .tablet\:hover\:-mt-60:hover{
    margin-top: -15rem;
  }

  .tablet\:hover\:-mt-64:hover{
    margin-top: -16rem;
  }

  .tablet\:hover\:-mt-72:hover{
    margin-top: -18rem;
  }

  .tablet\:hover\:-mt-80:hover{
    margin-top: -20rem;
  }

  .tablet\:hover\:-mt-96:hover{
    margin-top: -24rem;
  }

  .tablet\:hover\:-mt-px:hover{
    margin-top: -1px;
  }

  .tablet\:hover\:-mt-0\.5:hover{
    margin-top: -0.125rem;
  }

  .tablet\:hover\:-mt-1\.5:hover{
    margin-top: -0.375rem;
  }

  .tablet\:hover\:-mt-2\.5:hover{
    margin-top: -0.625rem;
  }

  .tablet\:hover\:-mt-3\.5:hover{
    margin-top: -0.875rem;
  }

  .tablet\:hover\:mt-neg1:hover{
    margin-top: -.25rem;
  }

  .tablet\:hover\:mt-neg2:hover{
    margin-top: -.5rem;
  }

  .tablet\:hover\:mt-neg4:hover{
    margin-top: -1.0rem;
  }

  .tablet\:hover\:mt-neg6:hover{
    margin-top: -1.5rem;
  }

  .tablet\:hover\:mt-neg12:hover{
    margin-top: -3rem;
  }

  .tablet\:hover\:mt-neg20:hover{
    margin-top: -5rem;
  }

  .tablet\:hover\:mr-0:hover{
    margin-right: 0px;
  }

  .tablet\:hover\:mr-1:hover{
    margin-right: 0.25rem;
  }

  .tablet\:hover\:mr-2:hover{
    margin-right: 0.5rem;
  }

  .tablet\:hover\:mr-3:hover{
    margin-right: 0.75rem;
  }

  .tablet\:hover\:mr-4:hover{
    margin-right: 1rem;
  }

  .tablet\:hover\:mr-5:hover{
    margin-right: 1.25rem;
  }

  .tablet\:hover\:mr-6:hover{
    margin-right: 1.5rem;
  }

  .tablet\:hover\:mr-7:hover{
    margin-right: 1.75rem;
  }

  .tablet\:hover\:mr-8:hover{
    margin-right: 2rem;
  }

  .tablet\:hover\:mr-9:hover{
    margin-right: 2.25rem;
  }

  .tablet\:hover\:mr-10:hover{
    margin-right: 2.5rem;
  }

  .tablet\:hover\:mr-11:hover{
    margin-right: 2.75rem;
  }

  .tablet\:hover\:mr-12:hover{
    margin-right: 3rem;
  }

  .tablet\:hover\:mr-14:hover{
    margin-right: 3.5rem;
  }

  .tablet\:hover\:mr-16:hover{
    margin-right: 4rem;
  }

  .tablet\:hover\:mr-20:hover{
    margin-right: 5rem;
  }

  .tablet\:hover\:mr-24:hover{
    margin-right: 6rem;
  }

  .tablet\:hover\:mr-28:hover{
    margin-right: 7rem;
  }

  .tablet\:hover\:mr-32:hover{
    margin-right: 8rem;
  }

  .tablet\:hover\:mr-36:hover{
    margin-right: 9rem;
  }

  .tablet\:hover\:mr-40:hover{
    margin-right: 10rem;
  }

  .tablet\:hover\:mr-44:hover{
    margin-right: 11rem;
  }

  .tablet\:hover\:mr-48:hover{
    margin-right: 12rem;
  }

  .tablet\:hover\:mr-52:hover{
    margin-right: 13rem;
  }

  .tablet\:hover\:mr-56:hover{
    margin-right: 14rem;
  }

  .tablet\:hover\:mr-60:hover{
    margin-right: 15rem;
  }

  .tablet\:hover\:mr-64:hover{
    margin-right: 16rem;
  }

  .tablet\:hover\:mr-72:hover{
    margin-right: 18rem;
  }

  .tablet\:hover\:mr-80:hover{
    margin-right: 20rem;
  }

  .tablet\:hover\:mr-96:hover{
    margin-right: 24rem;
  }

  .tablet\:hover\:mr-auto:hover{
    margin-right: auto;
  }

  .tablet\:hover\:mr-px:hover{
    margin-right: 1px;
  }

  .tablet\:hover\:mr-0\.5:hover{
    margin-right: 0.125rem;
  }

  .tablet\:hover\:mr-1\.5:hover{
    margin-right: 0.375rem;
  }

  .tablet\:hover\:mr-2\.5:hover{
    margin-right: 0.625rem;
  }

  .tablet\:hover\:mr-3\.5:hover{
    margin-right: 0.875rem;
  }

  .tablet\:hover\:-mr-0:hover{
    margin-right: 0px;
  }

  .tablet\:hover\:-mr-1:hover{
    margin-right: -0.25rem;
  }

  .tablet\:hover\:-mr-2:hover{
    margin-right: -0.5rem;
  }

  .tablet\:hover\:-mr-3:hover{
    margin-right: -0.75rem;
  }

  .tablet\:hover\:-mr-4:hover{
    margin-right: -1rem;
  }

  .tablet\:hover\:-mr-5:hover{
    margin-right: -1.25rem;
  }

  .tablet\:hover\:-mr-6:hover{
    margin-right: -1.5rem;
  }

  .tablet\:hover\:-mr-7:hover{
    margin-right: -1.75rem;
  }

  .tablet\:hover\:-mr-8:hover{
    margin-right: -2rem;
  }

  .tablet\:hover\:-mr-9:hover{
    margin-right: -2.25rem;
  }

  .tablet\:hover\:-mr-10:hover{
    margin-right: -2.5rem;
  }

  .tablet\:hover\:-mr-11:hover{
    margin-right: -2.75rem;
  }

  .tablet\:hover\:-mr-12:hover{
    margin-right: -3rem;
  }

  .tablet\:hover\:-mr-14:hover{
    margin-right: -3.5rem;
  }

  .tablet\:hover\:-mr-16:hover{
    margin-right: -4rem;
  }

  .tablet\:hover\:-mr-20:hover{
    margin-right: -5rem;
  }

  .tablet\:hover\:-mr-24:hover{
    margin-right: -6rem;
  }

  .tablet\:hover\:-mr-28:hover{
    margin-right: -7rem;
  }

  .tablet\:hover\:-mr-32:hover{
    margin-right: -8rem;
  }

  .tablet\:hover\:-mr-36:hover{
    margin-right: -9rem;
  }

  .tablet\:hover\:-mr-40:hover{
    margin-right: -10rem;
  }

  .tablet\:hover\:-mr-44:hover{
    margin-right: -11rem;
  }

  .tablet\:hover\:-mr-48:hover{
    margin-right: -12rem;
  }

  .tablet\:hover\:-mr-52:hover{
    margin-right: -13rem;
  }

  .tablet\:hover\:-mr-56:hover{
    margin-right: -14rem;
  }

  .tablet\:hover\:-mr-60:hover{
    margin-right: -15rem;
  }

  .tablet\:hover\:-mr-64:hover{
    margin-right: -16rem;
  }

  .tablet\:hover\:-mr-72:hover{
    margin-right: -18rem;
  }

  .tablet\:hover\:-mr-80:hover{
    margin-right: -20rem;
  }

  .tablet\:hover\:-mr-96:hover{
    margin-right: -24rem;
  }

  .tablet\:hover\:-mr-px:hover{
    margin-right: -1px;
  }

  .tablet\:hover\:-mr-0\.5:hover{
    margin-right: -0.125rem;
  }

  .tablet\:hover\:-mr-1\.5:hover{
    margin-right: -0.375rem;
  }

  .tablet\:hover\:-mr-2\.5:hover{
    margin-right: -0.625rem;
  }

  .tablet\:hover\:-mr-3\.5:hover{
    margin-right: -0.875rem;
  }

  .tablet\:hover\:mr-neg1:hover{
    margin-right: -.25rem;
  }

  .tablet\:hover\:mr-neg2:hover{
    margin-right: -.5rem;
  }

  .tablet\:hover\:mr-neg4:hover{
    margin-right: -1.0rem;
  }

  .tablet\:hover\:mr-neg6:hover{
    margin-right: -1.5rem;
  }

  .tablet\:hover\:mr-neg12:hover{
    margin-right: -3rem;
  }

  .tablet\:hover\:mr-neg20:hover{
    margin-right: -5rem;
  }

  .tablet\:hover\:mb-0:hover{
    margin-bottom: 0px;
  }

  .tablet\:hover\:mb-1:hover{
    margin-bottom: 0.25rem;
  }

  .tablet\:hover\:mb-2:hover{
    margin-bottom: 0.5rem;
  }

  .tablet\:hover\:mb-3:hover{
    margin-bottom: 0.75rem;
  }

  .tablet\:hover\:mb-4:hover{
    margin-bottom: 1rem;
  }

  .tablet\:hover\:mb-5:hover{
    margin-bottom: 1.25rem;
  }

  .tablet\:hover\:mb-6:hover{
    margin-bottom: 1.5rem;
  }

  .tablet\:hover\:mb-7:hover{
    margin-bottom: 1.75rem;
  }

  .tablet\:hover\:mb-8:hover{
    margin-bottom: 2rem;
  }

  .tablet\:hover\:mb-9:hover{
    margin-bottom: 2.25rem;
  }

  .tablet\:hover\:mb-10:hover{
    margin-bottom: 2.5rem;
  }

  .tablet\:hover\:mb-11:hover{
    margin-bottom: 2.75rem;
  }

  .tablet\:hover\:mb-12:hover{
    margin-bottom: 3rem;
  }

  .tablet\:hover\:mb-14:hover{
    margin-bottom: 3.5rem;
  }

  .tablet\:hover\:mb-16:hover{
    margin-bottom: 4rem;
  }

  .tablet\:hover\:mb-20:hover{
    margin-bottom: 5rem;
  }

  .tablet\:hover\:mb-24:hover{
    margin-bottom: 6rem;
  }

  .tablet\:hover\:mb-28:hover{
    margin-bottom: 7rem;
  }

  .tablet\:hover\:mb-32:hover{
    margin-bottom: 8rem;
  }

  .tablet\:hover\:mb-36:hover{
    margin-bottom: 9rem;
  }

  .tablet\:hover\:mb-40:hover{
    margin-bottom: 10rem;
  }

  .tablet\:hover\:mb-44:hover{
    margin-bottom: 11rem;
  }

  .tablet\:hover\:mb-48:hover{
    margin-bottom: 12rem;
  }

  .tablet\:hover\:mb-52:hover{
    margin-bottom: 13rem;
  }

  .tablet\:hover\:mb-56:hover{
    margin-bottom: 14rem;
  }

  .tablet\:hover\:mb-60:hover{
    margin-bottom: 15rem;
  }

  .tablet\:hover\:mb-64:hover{
    margin-bottom: 16rem;
  }

  .tablet\:hover\:mb-72:hover{
    margin-bottom: 18rem;
  }

  .tablet\:hover\:mb-80:hover{
    margin-bottom: 20rem;
  }

  .tablet\:hover\:mb-96:hover{
    margin-bottom: 24rem;
  }

  .tablet\:hover\:mb-auto:hover{
    margin-bottom: auto;
  }

  .tablet\:hover\:mb-px:hover{
    margin-bottom: 1px;
  }

  .tablet\:hover\:mb-0\.5:hover{
    margin-bottom: 0.125rem;
  }

  .tablet\:hover\:mb-1\.5:hover{
    margin-bottom: 0.375rem;
  }

  .tablet\:hover\:mb-2\.5:hover{
    margin-bottom: 0.625rem;
  }

  .tablet\:hover\:mb-3\.5:hover{
    margin-bottom: 0.875rem;
  }

  .tablet\:hover\:-mb-0:hover{
    margin-bottom: 0px;
  }

  .tablet\:hover\:-mb-1:hover{
    margin-bottom: -0.25rem;
  }

  .tablet\:hover\:-mb-2:hover{
    margin-bottom: -0.5rem;
  }

  .tablet\:hover\:-mb-3:hover{
    margin-bottom: -0.75rem;
  }

  .tablet\:hover\:-mb-4:hover{
    margin-bottom: -1rem;
  }

  .tablet\:hover\:-mb-5:hover{
    margin-bottom: -1.25rem;
  }

  .tablet\:hover\:-mb-6:hover{
    margin-bottom: -1.5rem;
  }

  .tablet\:hover\:-mb-7:hover{
    margin-bottom: -1.75rem;
  }

  .tablet\:hover\:-mb-8:hover{
    margin-bottom: -2rem;
  }

  .tablet\:hover\:-mb-9:hover{
    margin-bottom: -2.25rem;
  }

  .tablet\:hover\:-mb-10:hover{
    margin-bottom: -2.5rem;
  }

  .tablet\:hover\:-mb-11:hover{
    margin-bottom: -2.75rem;
  }

  .tablet\:hover\:-mb-12:hover{
    margin-bottom: -3rem;
  }

  .tablet\:hover\:-mb-14:hover{
    margin-bottom: -3.5rem;
  }

  .tablet\:hover\:-mb-16:hover{
    margin-bottom: -4rem;
  }

  .tablet\:hover\:-mb-20:hover{
    margin-bottom: -5rem;
  }

  .tablet\:hover\:-mb-24:hover{
    margin-bottom: -6rem;
  }

  .tablet\:hover\:-mb-28:hover{
    margin-bottom: -7rem;
  }

  .tablet\:hover\:-mb-32:hover{
    margin-bottom: -8rem;
  }

  .tablet\:hover\:-mb-36:hover{
    margin-bottom: -9rem;
  }

  .tablet\:hover\:-mb-40:hover{
    margin-bottom: -10rem;
  }

  .tablet\:hover\:-mb-44:hover{
    margin-bottom: -11rem;
  }

  .tablet\:hover\:-mb-48:hover{
    margin-bottom: -12rem;
  }

  .tablet\:hover\:-mb-52:hover{
    margin-bottom: -13rem;
  }

  .tablet\:hover\:-mb-56:hover{
    margin-bottom: -14rem;
  }

  .tablet\:hover\:-mb-60:hover{
    margin-bottom: -15rem;
  }

  .tablet\:hover\:-mb-64:hover{
    margin-bottom: -16rem;
  }

  .tablet\:hover\:-mb-72:hover{
    margin-bottom: -18rem;
  }

  .tablet\:hover\:-mb-80:hover{
    margin-bottom: -20rem;
  }

  .tablet\:hover\:-mb-96:hover{
    margin-bottom: -24rem;
  }

  .tablet\:hover\:-mb-px:hover{
    margin-bottom: -1px;
  }

  .tablet\:hover\:-mb-0\.5:hover{
    margin-bottom: -0.125rem;
  }

  .tablet\:hover\:-mb-1\.5:hover{
    margin-bottom: -0.375rem;
  }

  .tablet\:hover\:-mb-2\.5:hover{
    margin-bottom: -0.625rem;
  }

  .tablet\:hover\:-mb-3\.5:hover{
    margin-bottom: -0.875rem;
  }

  .tablet\:hover\:mb-neg1:hover{
    margin-bottom: -.25rem;
  }

  .tablet\:hover\:mb-neg2:hover{
    margin-bottom: -.5rem;
  }

  .tablet\:hover\:mb-neg4:hover{
    margin-bottom: -1.0rem;
  }

  .tablet\:hover\:mb-neg6:hover{
    margin-bottom: -1.5rem;
  }

  .tablet\:hover\:mb-neg12:hover{
    margin-bottom: -3rem;
  }

  .tablet\:hover\:mb-neg20:hover{
    margin-bottom: -5rem;
  }

  .tablet\:hover\:ml-0:hover{
    margin-left: 0px;
  }

  .tablet\:hover\:ml-1:hover{
    margin-left: 0.25rem;
  }

  .tablet\:hover\:ml-2:hover{
    margin-left: 0.5rem;
  }

  .tablet\:hover\:ml-3:hover{
    margin-left: 0.75rem;
  }

  .tablet\:hover\:ml-4:hover{
    margin-left: 1rem;
  }

  .tablet\:hover\:ml-5:hover{
    margin-left: 1.25rem;
  }

  .tablet\:hover\:ml-6:hover{
    margin-left: 1.5rem;
  }

  .tablet\:hover\:ml-7:hover{
    margin-left: 1.75rem;
  }

  .tablet\:hover\:ml-8:hover{
    margin-left: 2rem;
  }

  .tablet\:hover\:ml-9:hover{
    margin-left: 2.25rem;
  }

  .tablet\:hover\:ml-10:hover{
    margin-left: 2.5rem;
  }

  .tablet\:hover\:ml-11:hover{
    margin-left: 2.75rem;
  }

  .tablet\:hover\:ml-12:hover{
    margin-left: 3rem;
  }

  .tablet\:hover\:ml-14:hover{
    margin-left: 3.5rem;
  }

  .tablet\:hover\:ml-16:hover{
    margin-left: 4rem;
  }

  .tablet\:hover\:ml-20:hover{
    margin-left: 5rem;
  }

  .tablet\:hover\:ml-24:hover{
    margin-left: 6rem;
  }

  .tablet\:hover\:ml-28:hover{
    margin-left: 7rem;
  }

  .tablet\:hover\:ml-32:hover{
    margin-left: 8rem;
  }

  .tablet\:hover\:ml-36:hover{
    margin-left: 9rem;
  }

  .tablet\:hover\:ml-40:hover{
    margin-left: 10rem;
  }

  .tablet\:hover\:ml-44:hover{
    margin-left: 11rem;
  }

  .tablet\:hover\:ml-48:hover{
    margin-left: 12rem;
  }

  .tablet\:hover\:ml-52:hover{
    margin-left: 13rem;
  }

  .tablet\:hover\:ml-56:hover{
    margin-left: 14rem;
  }

  .tablet\:hover\:ml-60:hover{
    margin-left: 15rem;
  }

  .tablet\:hover\:ml-64:hover{
    margin-left: 16rem;
  }

  .tablet\:hover\:ml-72:hover{
    margin-left: 18rem;
  }

  .tablet\:hover\:ml-80:hover{
    margin-left: 20rem;
  }

  .tablet\:hover\:ml-96:hover{
    margin-left: 24rem;
  }

  .tablet\:hover\:ml-auto:hover{
    margin-left: auto;
  }

  .tablet\:hover\:ml-px:hover{
    margin-left: 1px;
  }

  .tablet\:hover\:ml-0\.5:hover{
    margin-left: 0.125rem;
  }

  .tablet\:hover\:ml-1\.5:hover{
    margin-left: 0.375rem;
  }

  .tablet\:hover\:ml-2\.5:hover{
    margin-left: 0.625rem;
  }

  .tablet\:hover\:ml-3\.5:hover{
    margin-left: 0.875rem;
  }

  .tablet\:hover\:-ml-0:hover{
    margin-left: 0px;
  }

  .tablet\:hover\:-ml-1:hover{
    margin-left: -0.25rem;
  }

  .tablet\:hover\:-ml-2:hover{
    margin-left: -0.5rem;
  }

  .tablet\:hover\:-ml-3:hover{
    margin-left: -0.75rem;
  }

  .tablet\:hover\:-ml-4:hover{
    margin-left: -1rem;
  }

  .tablet\:hover\:-ml-5:hover{
    margin-left: -1.25rem;
  }

  .tablet\:hover\:-ml-6:hover{
    margin-left: -1.5rem;
  }

  .tablet\:hover\:-ml-7:hover{
    margin-left: -1.75rem;
  }

  .tablet\:hover\:-ml-8:hover{
    margin-left: -2rem;
  }

  .tablet\:hover\:-ml-9:hover{
    margin-left: -2.25rem;
  }

  .tablet\:hover\:-ml-10:hover{
    margin-left: -2.5rem;
  }

  .tablet\:hover\:-ml-11:hover{
    margin-left: -2.75rem;
  }

  .tablet\:hover\:-ml-12:hover{
    margin-left: -3rem;
  }

  .tablet\:hover\:-ml-14:hover{
    margin-left: -3.5rem;
  }

  .tablet\:hover\:-ml-16:hover{
    margin-left: -4rem;
  }

  .tablet\:hover\:-ml-20:hover{
    margin-left: -5rem;
  }

  .tablet\:hover\:-ml-24:hover{
    margin-left: -6rem;
  }

  .tablet\:hover\:-ml-28:hover{
    margin-left: -7rem;
  }

  .tablet\:hover\:-ml-32:hover{
    margin-left: -8rem;
  }

  .tablet\:hover\:-ml-36:hover{
    margin-left: -9rem;
  }

  .tablet\:hover\:-ml-40:hover{
    margin-left: -10rem;
  }

  .tablet\:hover\:-ml-44:hover{
    margin-left: -11rem;
  }

  .tablet\:hover\:-ml-48:hover{
    margin-left: -12rem;
  }

  .tablet\:hover\:-ml-52:hover{
    margin-left: -13rem;
  }

  .tablet\:hover\:-ml-56:hover{
    margin-left: -14rem;
  }

  .tablet\:hover\:-ml-60:hover{
    margin-left: -15rem;
  }

  .tablet\:hover\:-ml-64:hover{
    margin-left: -16rem;
  }

  .tablet\:hover\:-ml-72:hover{
    margin-left: -18rem;
  }

  .tablet\:hover\:-ml-80:hover{
    margin-left: -20rem;
  }

  .tablet\:hover\:-ml-96:hover{
    margin-left: -24rem;
  }

  .tablet\:hover\:-ml-px:hover{
    margin-left: -1px;
  }

  .tablet\:hover\:-ml-0\.5:hover{
    margin-left: -0.125rem;
  }

  .tablet\:hover\:-ml-1\.5:hover{
    margin-left: -0.375rem;
  }

  .tablet\:hover\:-ml-2\.5:hover{
    margin-left: -0.625rem;
  }

  .tablet\:hover\:-ml-3\.5:hover{
    margin-left: -0.875rem;
  }

  .tablet\:hover\:ml-neg1:hover{
    margin-left: -.25rem;
  }

  .tablet\:hover\:ml-neg2:hover{
    margin-left: -.5rem;
  }

  .tablet\:hover\:ml-neg4:hover{
    margin-left: -1.0rem;
  }

  .tablet\:hover\:ml-neg6:hover{
    margin-left: -1.5rem;
  }

  .tablet\:hover\:ml-neg12:hover{
    margin-left: -3rem;
  }

  .tablet\:hover\:ml-neg20:hover{
    margin-left: -5rem;
  }

  .tablet\:focus\:mt-0:focus{
    margin-top: 0px;
  }

  .tablet\:focus\:mt-1:focus{
    margin-top: 0.25rem;
  }

  .tablet\:focus\:mt-2:focus{
    margin-top: 0.5rem;
  }

  .tablet\:focus\:mt-3:focus{
    margin-top: 0.75rem;
  }

  .tablet\:focus\:mt-4:focus{
    margin-top: 1rem;
  }

  .tablet\:focus\:mt-5:focus{
    margin-top: 1.25rem;
  }

  .tablet\:focus\:mt-6:focus{
    margin-top: 1.5rem;
  }

  .tablet\:focus\:mt-7:focus{
    margin-top: 1.75rem;
  }

  .tablet\:focus\:mt-8:focus{
    margin-top: 2rem;
  }

  .tablet\:focus\:mt-9:focus{
    margin-top: 2.25rem;
  }

  .tablet\:focus\:mt-10:focus{
    margin-top: 2.5rem;
  }

  .tablet\:focus\:mt-11:focus{
    margin-top: 2.75rem;
  }

  .tablet\:focus\:mt-12:focus{
    margin-top: 3rem;
  }

  .tablet\:focus\:mt-14:focus{
    margin-top: 3.5rem;
  }

  .tablet\:focus\:mt-16:focus{
    margin-top: 4rem;
  }

  .tablet\:focus\:mt-20:focus{
    margin-top: 5rem;
  }

  .tablet\:focus\:mt-24:focus{
    margin-top: 6rem;
  }

  .tablet\:focus\:mt-28:focus{
    margin-top: 7rem;
  }

  .tablet\:focus\:mt-32:focus{
    margin-top: 8rem;
  }

  .tablet\:focus\:mt-36:focus{
    margin-top: 9rem;
  }

  .tablet\:focus\:mt-40:focus{
    margin-top: 10rem;
  }

  .tablet\:focus\:mt-44:focus{
    margin-top: 11rem;
  }

  .tablet\:focus\:mt-48:focus{
    margin-top: 12rem;
  }

  .tablet\:focus\:mt-52:focus{
    margin-top: 13rem;
  }

  .tablet\:focus\:mt-56:focus{
    margin-top: 14rem;
  }

  .tablet\:focus\:mt-60:focus{
    margin-top: 15rem;
  }

  .tablet\:focus\:mt-64:focus{
    margin-top: 16rem;
  }

  .tablet\:focus\:mt-72:focus{
    margin-top: 18rem;
  }

  .tablet\:focus\:mt-80:focus{
    margin-top: 20rem;
  }

  .tablet\:focus\:mt-96:focus{
    margin-top: 24rem;
  }

  .tablet\:focus\:mt-auto:focus{
    margin-top: auto;
  }

  .tablet\:focus\:mt-px:focus{
    margin-top: 1px;
  }

  .tablet\:focus\:mt-0\.5:focus{
    margin-top: 0.125rem;
  }

  .tablet\:focus\:mt-1\.5:focus{
    margin-top: 0.375rem;
  }

  .tablet\:focus\:mt-2\.5:focus{
    margin-top: 0.625rem;
  }

  .tablet\:focus\:mt-3\.5:focus{
    margin-top: 0.875rem;
  }

  .tablet\:focus\:-mt-0:focus{
    margin-top: 0px;
  }

  .tablet\:focus\:-mt-1:focus{
    margin-top: -0.25rem;
  }

  .tablet\:focus\:-mt-2:focus{
    margin-top: -0.5rem;
  }

  .tablet\:focus\:-mt-3:focus{
    margin-top: -0.75rem;
  }

  .tablet\:focus\:-mt-4:focus{
    margin-top: -1rem;
  }

  .tablet\:focus\:-mt-5:focus{
    margin-top: -1.25rem;
  }

  .tablet\:focus\:-mt-6:focus{
    margin-top: -1.5rem;
  }

  .tablet\:focus\:-mt-7:focus{
    margin-top: -1.75rem;
  }

  .tablet\:focus\:-mt-8:focus{
    margin-top: -2rem;
  }

  .tablet\:focus\:-mt-9:focus{
    margin-top: -2.25rem;
  }

  .tablet\:focus\:-mt-10:focus{
    margin-top: -2.5rem;
  }

  .tablet\:focus\:-mt-11:focus{
    margin-top: -2.75rem;
  }

  .tablet\:focus\:-mt-12:focus{
    margin-top: -3rem;
  }

  .tablet\:focus\:-mt-14:focus{
    margin-top: -3.5rem;
  }

  .tablet\:focus\:-mt-16:focus{
    margin-top: -4rem;
  }

  .tablet\:focus\:-mt-20:focus{
    margin-top: -5rem;
  }

  .tablet\:focus\:-mt-24:focus{
    margin-top: -6rem;
  }

  .tablet\:focus\:-mt-28:focus{
    margin-top: -7rem;
  }

  .tablet\:focus\:-mt-32:focus{
    margin-top: -8rem;
  }

  .tablet\:focus\:-mt-36:focus{
    margin-top: -9rem;
  }

  .tablet\:focus\:-mt-40:focus{
    margin-top: -10rem;
  }

  .tablet\:focus\:-mt-44:focus{
    margin-top: -11rem;
  }

  .tablet\:focus\:-mt-48:focus{
    margin-top: -12rem;
  }

  .tablet\:focus\:-mt-52:focus{
    margin-top: -13rem;
  }

  .tablet\:focus\:-mt-56:focus{
    margin-top: -14rem;
  }

  .tablet\:focus\:-mt-60:focus{
    margin-top: -15rem;
  }

  .tablet\:focus\:-mt-64:focus{
    margin-top: -16rem;
  }

  .tablet\:focus\:-mt-72:focus{
    margin-top: -18rem;
  }

  .tablet\:focus\:-mt-80:focus{
    margin-top: -20rem;
  }

  .tablet\:focus\:-mt-96:focus{
    margin-top: -24rem;
  }

  .tablet\:focus\:-mt-px:focus{
    margin-top: -1px;
  }

  .tablet\:focus\:-mt-0\.5:focus{
    margin-top: -0.125rem;
  }

  .tablet\:focus\:-mt-1\.5:focus{
    margin-top: -0.375rem;
  }

  .tablet\:focus\:-mt-2\.5:focus{
    margin-top: -0.625rem;
  }

  .tablet\:focus\:-mt-3\.5:focus{
    margin-top: -0.875rem;
  }

  .tablet\:focus\:mt-neg1:focus{
    margin-top: -.25rem;
  }

  .tablet\:focus\:mt-neg2:focus{
    margin-top: -.5rem;
  }

  .tablet\:focus\:mt-neg4:focus{
    margin-top: -1.0rem;
  }

  .tablet\:focus\:mt-neg6:focus{
    margin-top: -1.5rem;
  }

  .tablet\:focus\:mt-neg12:focus{
    margin-top: -3rem;
  }

  .tablet\:focus\:mt-neg20:focus{
    margin-top: -5rem;
  }

  .tablet\:focus\:mr-0:focus{
    margin-right: 0px;
  }

  .tablet\:focus\:mr-1:focus{
    margin-right: 0.25rem;
  }

  .tablet\:focus\:mr-2:focus{
    margin-right: 0.5rem;
  }

  .tablet\:focus\:mr-3:focus{
    margin-right: 0.75rem;
  }

  .tablet\:focus\:mr-4:focus{
    margin-right: 1rem;
  }

  .tablet\:focus\:mr-5:focus{
    margin-right: 1.25rem;
  }

  .tablet\:focus\:mr-6:focus{
    margin-right: 1.5rem;
  }

  .tablet\:focus\:mr-7:focus{
    margin-right: 1.75rem;
  }

  .tablet\:focus\:mr-8:focus{
    margin-right: 2rem;
  }

  .tablet\:focus\:mr-9:focus{
    margin-right: 2.25rem;
  }

  .tablet\:focus\:mr-10:focus{
    margin-right: 2.5rem;
  }

  .tablet\:focus\:mr-11:focus{
    margin-right: 2.75rem;
  }

  .tablet\:focus\:mr-12:focus{
    margin-right: 3rem;
  }

  .tablet\:focus\:mr-14:focus{
    margin-right: 3.5rem;
  }

  .tablet\:focus\:mr-16:focus{
    margin-right: 4rem;
  }

  .tablet\:focus\:mr-20:focus{
    margin-right: 5rem;
  }

  .tablet\:focus\:mr-24:focus{
    margin-right: 6rem;
  }

  .tablet\:focus\:mr-28:focus{
    margin-right: 7rem;
  }

  .tablet\:focus\:mr-32:focus{
    margin-right: 8rem;
  }

  .tablet\:focus\:mr-36:focus{
    margin-right: 9rem;
  }

  .tablet\:focus\:mr-40:focus{
    margin-right: 10rem;
  }

  .tablet\:focus\:mr-44:focus{
    margin-right: 11rem;
  }

  .tablet\:focus\:mr-48:focus{
    margin-right: 12rem;
  }

  .tablet\:focus\:mr-52:focus{
    margin-right: 13rem;
  }

  .tablet\:focus\:mr-56:focus{
    margin-right: 14rem;
  }

  .tablet\:focus\:mr-60:focus{
    margin-right: 15rem;
  }

  .tablet\:focus\:mr-64:focus{
    margin-right: 16rem;
  }

  .tablet\:focus\:mr-72:focus{
    margin-right: 18rem;
  }

  .tablet\:focus\:mr-80:focus{
    margin-right: 20rem;
  }

  .tablet\:focus\:mr-96:focus{
    margin-right: 24rem;
  }

  .tablet\:focus\:mr-auto:focus{
    margin-right: auto;
  }

  .tablet\:focus\:mr-px:focus{
    margin-right: 1px;
  }

  .tablet\:focus\:mr-0\.5:focus{
    margin-right: 0.125rem;
  }

  .tablet\:focus\:mr-1\.5:focus{
    margin-right: 0.375rem;
  }

  .tablet\:focus\:mr-2\.5:focus{
    margin-right: 0.625rem;
  }

  .tablet\:focus\:mr-3\.5:focus{
    margin-right: 0.875rem;
  }

  .tablet\:focus\:-mr-0:focus{
    margin-right: 0px;
  }

  .tablet\:focus\:-mr-1:focus{
    margin-right: -0.25rem;
  }

  .tablet\:focus\:-mr-2:focus{
    margin-right: -0.5rem;
  }

  .tablet\:focus\:-mr-3:focus{
    margin-right: -0.75rem;
  }

  .tablet\:focus\:-mr-4:focus{
    margin-right: -1rem;
  }

  .tablet\:focus\:-mr-5:focus{
    margin-right: -1.25rem;
  }

  .tablet\:focus\:-mr-6:focus{
    margin-right: -1.5rem;
  }

  .tablet\:focus\:-mr-7:focus{
    margin-right: -1.75rem;
  }

  .tablet\:focus\:-mr-8:focus{
    margin-right: -2rem;
  }

  .tablet\:focus\:-mr-9:focus{
    margin-right: -2.25rem;
  }

  .tablet\:focus\:-mr-10:focus{
    margin-right: -2.5rem;
  }

  .tablet\:focus\:-mr-11:focus{
    margin-right: -2.75rem;
  }

  .tablet\:focus\:-mr-12:focus{
    margin-right: -3rem;
  }

  .tablet\:focus\:-mr-14:focus{
    margin-right: -3.5rem;
  }

  .tablet\:focus\:-mr-16:focus{
    margin-right: -4rem;
  }

  .tablet\:focus\:-mr-20:focus{
    margin-right: -5rem;
  }

  .tablet\:focus\:-mr-24:focus{
    margin-right: -6rem;
  }

  .tablet\:focus\:-mr-28:focus{
    margin-right: -7rem;
  }

  .tablet\:focus\:-mr-32:focus{
    margin-right: -8rem;
  }

  .tablet\:focus\:-mr-36:focus{
    margin-right: -9rem;
  }

  .tablet\:focus\:-mr-40:focus{
    margin-right: -10rem;
  }

  .tablet\:focus\:-mr-44:focus{
    margin-right: -11rem;
  }

  .tablet\:focus\:-mr-48:focus{
    margin-right: -12rem;
  }

  .tablet\:focus\:-mr-52:focus{
    margin-right: -13rem;
  }

  .tablet\:focus\:-mr-56:focus{
    margin-right: -14rem;
  }

  .tablet\:focus\:-mr-60:focus{
    margin-right: -15rem;
  }

  .tablet\:focus\:-mr-64:focus{
    margin-right: -16rem;
  }

  .tablet\:focus\:-mr-72:focus{
    margin-right: -18rem;
  }

  .tablet\:focus\:-mr-80:focus{
    margin-right: -20rem;
  }

  .tablet\:focus\:-mr-96:focus{
    margin-right: -24rem;
  }

  .tablet\:focus\:-mr-px:focus{
    margin-right: -1px;
  }

  .tablet\:focus\:-mr-0\.5:focus{
    margin-right: -0.125rem;
  }

  .tablet\:focus\:-mr-1\.5:focus{
    margin-right: -0.375rem;
  }

  .tablet\:focus\:-mr-2\.5:focus{
    margin-right: -0.625rem;
  }

  .tablet\:focus\:-mr-3\.5:focus{
    margin-right: -0.875rem;
  }

  .tablet\:focus\:mr-neg1:focus{
    margin-right: -.25rem;
  }

  .tablet\:focus\:mr-neg2:focus{
    margin-right: -.5rem;
  }

  .tablet\:focus\:mr-neg4:focus{
    margin-right: -1.0rem;
  }

  .tablet\:focus\:mr-neg6:focus{
    margin-right: -1.5rem;
  }

  .tablet\:focus\:mr-neg12:focus{
    margin-right: -3rem;
  }

  .tablet\:focus\:mr-neg20:focus{
    margin-right: -5rem;
  }

  .tablet\:focus\:mb-0:focus{
    margin-bottom: 0px;
  }

  .tablet\:focus\:mb-1:focus{
    margin-bottom: 0.25rem;
  }

  .tablet\:focus\:mb-2:focus{
    margin-bottom: 0.5rem;
  }

  .tablet\:focus\:mb-3:focus{
    margin-bottom: 0.75rem;
  }

  .tablet\:focus\:mb-4:focus{
    margin-bottom: 1rem;
  }

  .tablet\:focus\:mb-5:focus{
    margin-bottom: 1.25rem;
  }

  .tablet\:focus\:mb-6:focus{
    margin-bottom: 1.5rem;
  }

  .tablet\:focus\:mb-7:focus{
    margin-bottom: 1.75rem;
  }

  .tablet\:focus\:mb-8:focus{
    margin-bottom: 2rem;
  }

  .tablet\:focus\:mb-9:focus{
    margin-bottom: 2.25rem;
  }

  .tablet\:focus\:mb-10:focus{
    margin-bottom: 2.5rem;
  }

  .tablet\:focus\:mb-11:focus{
    margin-bottom: 2.75rem;
  }

  .tablet\:focus\:mb-12:focus{
    margin-bottom: 3rem;
  }

  .tablet\:focus\:mb-14:focus{
    margin-bottom: 3.5rem;
  }

  .tablet\:focus\:mb-16:focus{
    margin-bottom: 4rem;
  }

  .tablet\:focus\:mb-20:focus{
    margin-bottom: 5rem;
  }

  .tablet\:focus\:mb-24:focus{
    margin-bottom: 6rem;
  }

  .tablet\:focus\:mb-28:focus{
    margin-bottom: 7rem;
  }

  .tablet\:focus\:mb-32:focus{
    margin-bottom: 8rem;
  }

  .tablet\:focus\:mb-36:focus{
    margin-bottom: 9rem;
  }

  .tablet\:focus\:mb-40:focus{
    margin-bottom: 10rem;
  }

  .tablet\:focus\:mb-44:focus{
    margin-bottom: 11rem;
  }

  .tablet\:focus\:mb-48:focus{
    margin-bottom: 12rem;
  }

  .tablet\:focus\:mb-52:focus{
    margin-bottom: 13rem;
  }

  .tablet\:focus\:mb-56:focus{
    margin-bottom: 14rem;
  }

  .tablet\:focus\:mb-60:focus{
    margin-bottom: 15rem;
  }

  .tablet\:focus\:mb-64:focus{
    margin-bottom: 16rem;
  }

  .tablet\:focus\:mb-72:focus{
    margin-bottom: 18rem;
  }

  .tablet\:focus\:mb-80:focus{
    margin-bottom: 20rem;
  }

  .tablet\:focus\:mb-96:focus{
    margin-bottom: 24rem;
  }

  .tablet\:focus\:mb-auto:focus{
    margin-bottom: auto;
  }

  .tablet\:focus\:mb-px:focus{
    margin-bottom: 1px;
  }

  .tablet\:focus\:mb-0\.5:focus{
    margin-bottom: 0.125rem;
  }

  .tablet\:focus\:mb-1\.5:focus{
    margin-bottom: 0.375rem;
  }

  .tablet\:focus\:mb-2\.5:focus{
    margin-bottom: 0.625rem;
  }

  .tablet\:focus\:mb-3\.5:focus{
    margin-bottom: 0.875rem;
  }

  .tablet\:focus\:-mb-0:focus{
    margin-bottom: 0px;
  }

  .tablet\:focus\:-mb-1:focus{
    margin-bottom: -0.25rem;
  }

  .tablet\:focus\:-mb-2:focus{
    margin-bottom: -0.5rem;
  }

  .tablet\:focus\:-mb-3:focus{
    margin-bottom: -0.75rem;
  }

  .tablet\:focus\:-mb-4:focus{
    margin-bottom: -1rem;
  }

  .tablet\:focus\:-mb-5:focus{
    margin-bottom: -1.25rem;
  }

  .tablet\:focus\:-mb-6:focus{
    margin-bottom: -1.5rem;
  }

  .tablet\:focus\:-mb-7:focus{
    margin-bottom: -1.75rem;
  }

  .tablet\:focus\:-mb-8:focus{
    margin-bottom: -2rem;
  }

  .tablet\:focus\:-mb-9:focus{
    margin-bottom: -2.25rem;
  }

  .tablet\:focus\:-mb-10:focus{
    margin-bottom: -2.5rem;
  }

  .tablet\:focus\:-mb-11:focus{
    margin-bottom: -2.75rem;
  }

  .tablet\:focus\:-mb-12:focus{
    margin-bottom: -3rem;
  }

  .tablet\:focus\:-mb-14:focus{
    margin-bottom: -3.5rem;
  }

  .tablet\:focus\:-mb-16:focus{
    margin-bottom: -4rem;
  }

  .tablet\:focus\:-mb-20:focus{
    margin-bottom: -5rem;
  }

  .tablet\:focus\:-mb-24:focus{
    margin-bottom: -6rem;
  }

  .tablet\:focus\:-mb-28:focus{
    margin-bottom: -7rem;
  }

  .tablet\:focus\:-mb-32:focus{
    margin-bottom: -8rem;
  }

  .tablet\:focus\:-mb-36:focus{
    margin-bottom: -9rem;
  }

  .tablet\:focus\:-mb-40:focus{
    margin-bottom: -10rem;
  }

  .tablet\:focus\:-mb-44:focus{
    margin-bottom: -11rem;
  }

  .tablet\:focus\:-mb-48:focus{
    margin-bottom: -12rem;
  }

  .tablet\:focus\:-mb-52:focus{
    margin-bottom: -13rem;
  }

  .tablet\:focus\:-mb-56:focus{
    margin-bottom: -14rem;
  }

  .tablet\:focus\:-mb-60:focus{
    margin-bottom: -15rem;
  }

  .tablet\:focus\:-mb-64:focus{
    margin-bottom: -16rem;
  }

  .tablet\:focus\:-mb-72:focus{
    margin-bottom: -18rem;
  }

  .tablet\:focus\:-mb-80:focus{
    margin-bottom: -20rem;
  }

  .tablet\:focus\:-mb-96:focus{
    margin-bottom: -24rem;
  }

  .tablet\:focus\:-mb-px:focus{
    margin-bottom: -1px;
  }

  .tablet\:focus\:-mb-0\.5:focus{
    margin-bottom: -0.125rem;
  }

  .tablet\:focus\:-mb-1\.5:focus{
    margin-bottom: -0.375rem;
  }

  .tablet\:focus\:-mb-2\.5:focus{
    margin-bottom: -0.625rem;
  }

  .tablet\:focus\:-mb-3\.5:focus{
    margin-bottom: -0.875rem;
  }

  .tablet\:focus\:mb-neg1:focus{
    margin-bottom: -.25rem;
  }

  .tablet\:focus\:mb-neg2:focus{
    margin-bottom: -.5rem;
  }

  .tablet\:focus\:mb-neg4:focus{
    margin-bottom: -1.0rem;
  }

  .tablet\:focus\:mb-neg6:focus{
    margin-bottom: -1.5rem;
  }

  .tablet\:focus\:mb-neg12:focus{
    margin-bottom: -3rem;
  }

  .tablet\:focus\:mb-neg20:focus{
    margin-bottom: -5rem;
  }

  .tablet\:focus\:ml-0:focus{
    margin-left: 0px;
  }

  .tablet\:focus\:ml-1:focus{
    margin-left: 0.25rem;
  }

  .tablet\:focus\:ml-2:focus{
    margin-left: 0.5rem;
  }

  .tablet\:focus\:ml-3:focus{
    margin-left: 0.75rem;
  }

  .tablet\:focus\:ml-4:focus{
    margin-left: 1rem;
  }

  .tablet\:focus\:ml-5:focus{
    margin-left: 1.25rem;
  }

  .tablet\:focus\:ml-6:focus{
    margin-left: 1.5rem;
  }

  .tablet\:focus\:ml-7:focus{
    margin-left: 1.75rem;
  }

  .tablet\:focus\:ml-8:focus{
    margin-left: 2rem;
  }

  .tablet\:focus\:ml-9:focus{
    margin-left: 2.25rem;
  }

  .tablet\:focus\:ml-10:focus{
    margin-left: 2.5rem;
  }

  .tablet\:focus\:ml-11:focus{
    margin-left: 2.75rem;
  }

  .tablet\:focus\:ml-12:focus{
    margin-left: 3rem;
  }

  .tablet\:focus\:ml-14:focus{
    margin-left: 3.5rem;
  }

  .tablet\:focus\:ml-16:focus{
    margin-left: 4rem;
  }

  .tablet\:focus\:ml-20:focus{
    margin-left: 5rem;
  }

  .tablet\:focus\:ml-24:focus{
    margin-left: 6rem;
  }

  .tablet\:focus\:ml-28:focus{
    margin-left: 7rem;
  }

  .tablet\:focus\:ml-32:focus{
    margin-left: 8rem;
  }

  .tablet\:focus\:ml-36:focus{
    margin-left: 9rem;
  }

  .tablet\:focus\:ml-40:focus{
    margin-left: 10rem;
  }

  .tablet\:focus\:ml-44:focus{
    margin-left: 11rem;
  }

  .tablet\:focus\:ml-48:focus{
    margin-left: 12rem;
  }

  .tablet\:focus\:ml-52:focus{
    margin-left: 13rem;
  }

  .tablet\:focus\:ml-56:focus{
    margin-left: 14rem;
  }

  .tablet\:focus\:ml-60:focus{
    margin-left: 15rem;
  }

  .tablet\:focus\:ml-64:focus{
    margin-left: 16rem;
  }

  .tablet\:focus\:ml-72:focus{
    margin-left: 18rem;
  }

  .tablet\:focus\:ml-80:focus{
    margin-left: 20rem;
  }

  .tablet\:focus\:ml-96:focus{
    margin-left: 24rem;
  }

  .tablet\:focus\:ml-auto:focus{
    margin-left: auto;
  }

  .tablet\:focus\:ml-px:focus{
    margin-left: 1px;
  }

  .tablet\:focus\:ml-0\.5:focus{
    margin-left: 0.125rem;
  }

  .tablet\:focus\:ml-1\.5:focus{
    margin-left: 0.375rem;
  }

  .tablet\:focus\:ml-2\.5:focus{
    margin-left: 0.625rem;
  }

  .tablet\:focus\:ml-3\.5:focus{
    margin-left: 0.875rem;
  }

  .tablet\:focus\:-ml-0:focus{
    margin-left: 0px;
  }

  .tablet\:focus\:-ml-1:focus{
    margin-left: -0.25rem;
  }

  .tablet\:focus\:-ml-2:focus{
    margin-left: -0.5rem;
  }

  .tablet\:focus\:-ml-3:focus{
    margin-left: -0.75rem;
  }

  .tablet\:focus\:-ml-4:focus{
    margin-left: -1rem;
  }

  .tablet\:focus\:-ml-5:focus{
    margin-left: -1.25rem;
  }

  .tablet\:focus\:-ml-6:focus{
    margin-left: -1.5rem;
  }

  .tablet\:focus\:-ml-7:focus{
    margin-left: -1.75rem;
  }

  .tablet\:focus\:-ml-8:focus{
    margin-left: -2rem;
  }

  .tablet\:focus\:-ml-9:focus{
    margin-left: -2.25rem;
  }

  .tablet\:focus\:-ml-10:focus{
    margin-left: -2.5rem;
  }

  .tablet\:focus\:-ml-11:focus{
    margin-left: -2.75rem;
  }

  .tablet\:focus\:-ml-12:focus{
    margin-left: -3rem;
  }

  .tablet\:focus\:-ml-14:focus{
    margin-left: -3.5rem;
  }

  .tablet\:focus\:-ml-16:focus{
    margin-left: -4rem;
  }

  .tablet\:focus\:-ml-20:focus{
    margin-left: -5rem;
  }

  .tablet\:focus\:-ml-24:focus{
    margin-left: -6rem;
  }

  .tablet\:focus\:-ml-28:focus{
    margin-left: -7rem;
  }

  .tablet\:focus\:-ml-32:focus{
    margin-left: -8rem;
  }

  .tablet\:focus\:-ml-36:focus{
    margin-left: -9rem;
  }

  .tablet\:focus\:-ml-40:focus{
    margin-left: -10rem;
  }

  .tablet\:focus\:-ml-44:focus{
    margin-left: -11rem;
  }

  .tablet\:focus\:-ml-48:focus{
    margin-left: -12rem;
  }

  .tablet\:focus\:-ml-52:focus{
    margin-left: -13rem;
  }

  .tablet\:focus\:-ml-56:focus{
    margin-left: -14rem;
  }

  .tablet\:focus\:-ml-60:focus{
    margin-left: -15rem;
  }

  .tablet\:focus\:-ml-64:focus{
    margin-left: -16rem;
  }

  .tablet\:focus\:-ml-72:focus{
    margin-left: -18rem;
  }

  .tablet\:focus\:-ml-80:focus{
    margin-left: -20rem;
  }

  .tablet\:focus\:-ml-96:focus{
    margin-left: -24rem;
  }

  .tablet\:focus\:-ml-px:focus{
    margin-left: -1px;
  }

  .tablet\:focus\:-ml-0\.5:focus{
    margin-left: -0.125rem;
  }

  .tablet\:focus\:-ml-1\.5:focus{
    margin-left: -0.375rem;
  }

  .tablet\:focus\:-ml-2\.5:focus{
    margin-left: -0.625rem;
  }

  .tablet\:focus\:-ml-3\.5:focus{
    margin-left: -0.875rem;
  }

  .tablet\:focus\:ml-neg1:focus{
    margin-left: -.25rem;
  }

  .tablet\:focus\:ml-neg2:focus{
    margin-left: -.5rem;
  }

  .tablet\:focus\:ml-neg4:focus{
    margin-left: -1.0rem;
  }

  .tablet\:focus\:ml-neg6:focus{
    margin-left: -1.5rem;
  }

  .tablet\:focus\:ml-neg12:focus{
    margin-left: -3rem;
  }

  .tablet\:focus\:ml-neg20:focus{
    margin-left: -5rem;
  }

  .tablet\:first\:mt-0:first-child{
    margin-top: 0px;
  }

  .tablet\:first\:mt-1:first-child{
    margin-top: 0.25rem;
  }

  .tablet\:first\:mt-2:first-child{
    margin-top: 0.5rem;
  }

  .tablet\:first\:mt-3:first-child{
    margin-top: 0.75rem;
  }

  .tablet\:first\:mt-4:first-child{
    margin-top: 1rem;
  }

  .tablet\:first\:mt-5:first-child{
    margin-top: 1.25rem;
  }

  .tablet\:first\:mt-6:first-child{
    margin-top: 1.5rem;
  }

  .tablet\:first\:mt-7:first-child{
    margin-top: 1.75rem;
  }

  .tablet\:first\:mt-8:first-child{
    margin-top: 2rem;
  }

  .tablet\:first\:mt-9:first-child{
    margin-top: 2.25rem;
  }

  .tablet\:first\:mt-10:first-child{
    margin-top: 2.5rem;
  }

  .tablet\:first\:mt-11:first-child{
    margin-top: 2.75rem;
  }

  .tablet\:first\:mt-12:first-child{
    margin-top: 3rem;
  }

  .tablet\:first\:mt-14:first-child{
    margin-top: 3.5rem;
  }

  .tablet\:first\:mt-16:first-child{
    margin-top: 4rem;
  }

  .tablet\:first\:mt-20:first-child{
    margin-top: 5rem;
  }

  .tablet\:first\:mt-24:first-child{
    margin-top: 6rem;
  }

  .tablet\:first\:mt-28:first-child{
    margin-top: 7rem;
  }

  .tablet\:first\:mt-32:first-child{
    margin-top: 8rem;
  }

  .tablet\:first\:mt-36:first-child{
    margin-top: 9rem;
  }

  .tablet\:first\:mt-40:first-child{
    margin-top: 10rem;
  }

  .tablet\:first\:mt-44:first-child{
    margin-top: 11rem;
  }

  .tablet\:first\:mt-48:first-child{
    margin-top: 12rem;
  }

  .tablet\:first\:mt-52:first-child{
    margin-top: 13rem;
  }

  .tablet\:first\:mt-56:first-child{
    margin-top: 14rem;
  }

  .tablet\:first\:mt-60:first-child{
    margin-top: 15rem;
  }

  .tablet\:first\:mt-64:first-child{
    margin-top: 16rem;
  }

  .tablet\:first\:mt-72:first-child{
    margin-top: 18rem;
  }

  .tablet\:first\:mt-80:first-child{
    margin-top: 20rem;
  }

  .tablet\:first\:mt-96:first-child{
    margin-top: 24rem;
  }

  .tablet\:first\:mt-auto:first-child{
    margin-top: auto;
  }

  .tablet\:first\:mt-px:first-child{
    margin-top: 1px;
  }

  .tablet\:first\:mt-0\.5:first-child{
    margin-top: 0.125rem;
  }

  .tablet\:first\:mt-1\.5:first-child{
    margin-top: 0.375rem;
  }

  .tablet\:first\:mt-2\.5:first-child{
    margin-top: 0.625rem;
  }

  .tablet\:first\:mt-3\.5:first-child{
    margin-top: 0.875rem;
  }

  .tablet\:first\:-mt-0:first-child{
    margin-top: 0px;
  }

  .tablet\:first\:-mt-1:first-child{
    margin-top: -0.25rem;
  }

  .tablet\:first\:-mt-2:first-child{
    margin-top: -0.5rem;
  }

  .tablet\:first\:-mt-3:first-child{
    margin-top: -0.75rem;
  }

  .tablet\:first\:-mt-4:first-child{
    margin-top: -1rem;
  }

  .tablet\:first\:-mt-5:first-child{
    margin-top: -1.25rem;
  }

  .tablet\:first\:-mt-6:first-child{
    margin-top: -1.5rem;
  }

  .tablet\:first\:-mt-7:first-child{
    margin-top: -1.75rem;
  }

  .tablet\:first\:-mt-8:first-child{
    margin-top: -2rem;
  }

  .tablet\:first\:-mt-9:first-child{
    margin-top: -2.25rem;
  }

  .tablet\:first\:-mt-10:first-child{
    margin-top: -2.5rem;
  }

  .tablet\:first\:-mt-11:first-child{
    margin-top: -2.75rem;
  }

  .tablet\:first\:-mt-12:first-child{
    margin-top: -3rem;
  }

  .tablet\:first\:-mt-14:first-child{
    margin-top: -3.5rem;
  }

  .tablet\:first\:-mt-16:first-child{
    margin-top: -4rem;
  }

  .tablet\:first\:-mt-20:first-child{
    margin-top: -5rem;
  }

  .tablet\:first\:-mt-24:first-child{
    margin-top: -6rem;
  }

  .tablet\:first\:-mt-28:first-child{
    margin-top: -7rem;
  }

  .tablet\:first\:-mt-32:first-child{
    margin-top: -8rem;
  }

  .tablet\:first\:-mt-36:first-child{
    margin-top: -9rem;
  }

  .tablet\:first\:-mt-40:first-child{
    margin-top: -10rem;
  }

  .tablet\:first\:-mt-44:first-child{
    margin-top: -11rem;
  }

  .tablet\:first\:-mt-48:first-child{
    margin-top: -12rem;
  }

  .tablet\:first\:-mt-52:first-child{
    margin-top: -13rem;
  }

  .tablet\:first\:-mt-56:first-child{
    margin-top: -14rem;
  }

  .tablet\:first\:-mt-60:first-child{
    margin-top: -15rem;
  }

  .tablet\:first\:-mt-64:first-child{
    margin-top: -16rem;
  }

  .tablet\:first\:-mt-72:first-child{
    margin-top: -18rem;
  }

  .tablet\:first\:-mt-80:first-child{
    margin-top: -20rem;
  }

  .tablet\:first\:-mt-96:first-child{
    margin-top: -24rem;
  }

  .tablet\:first\:-mt-px:first-child{
    margin-top: -1px;
  }

  .tablet\:first\:-mt-0\.5:first-child{
    margin-top: -0.125rem;
  }

  .tablet\:first\:-mt-1\.5:first-child{
    margin-top: -0.375rem;
  }

  .tablet\:first\:-mt-2\.5:first-child{
    margin-top: -0.625rem;
  }

  .tablet\:first\:-mt-3\.5:first-child{
    margin-top: -0.875rem;
  }

  .tablet\:first\:mt-neg1:first-child{
    margin-top: -.25rem;
  }

  .tablet\:first\:mt-neg2:first-child{
    margin-top: -.5rem;
  }

  .tablet\:first\:mt-neg4:first-child{
    margin-top: -1.0rem;
  }

  .tablet\:first\:mt-neg6:first-child{
    margin-top: -1.5rem;
  }

  .tablet\:first\:mt-neg12:first-child{
    margin-top: -3rem;
  }

  .tablet\:first\:mt-neg20:first-child{
    margin-top: -5rem;
  }

  .tablet\:first\:mr-0:first-child{
    margin-right: 0px;
  }

  .tablet\:first\:mr-1:first-child{
    margin-right: 0.25rem;
  }

  .tablet\:first\:mr-2:first-child{
    margin-right: 0.5rem;
  }

  .tablet\:first\:mr-3:first-child{
    margin-right: 0.75rem;
  }

  .tablet\:first\:mr-4:first-child{
    margin-right: 1rem;
  }

  .tablet\:first\:mr-5:first-child{
    margin-right: 1.25rem;
  }

  .tablet\:first\:mr-6:first-child{
    margin-right: 1.5rem;
  }

  .tablet\:first\:mr-7:first-child{
    margin-right: 1.75rem;
  }

  .tablet\:first\:mr-8:first-child{
    margin-right: 2rem;
  }

  .tablet\:first\:mr-9:first-child{
    margin-right: 2.25rem;
  }

  .tablet\:first\:mr-10:first-child{
    margin-right: 2.5rem;
  }

  .tablet\:first\:mr-11:first-child{
    margin-right: 2.75rem;
  }

  .tablet\:first\:mr-12:first-child{
    margin-right: 3rem;
  }

  .tablet\:first\:mr-14:first-child{
    margin-right: 3.5rem;
  }

  .tablet\:first\:mr-16:first-child{
    margin-right: 4rem;
  }

  .tablet\:first\:mr-20:first-child{
    margin-right: 5rem;
  }

  .tablet\:first\:mr-24:first-child{
    margin-right: 6rem;
  }

  .tablet\:first\:mr-28:first-child{
    margin-right: 7rem;
  }

  .tablet\:first\:mr-32:first-child{
    margin-right: 8rem;
  }

  .tablet\:first\:mr-36:first-child{
    margin-right: 9rem;
  }

  .tablet\:first\:mr-40:first-child{
    margin-right: 10rem;
  }

  .tablet\:first\:mr-44:first-child{
    margin-right: 11rem;
  }

  .tablet\:first\:mr-48:first-child{
    margin-right: 12rem;
  }

  .tablet\:first\:mr-52:first-child{
    margin-right: 13rem;
  }

  .tablet\:first\:mr-56:first-child{
    margin-right: 14rem;
  }

  .tablet\:first\:mr-60:first-child{
    margin-right: 15rem;
  }

  .tablet\:first\:mr-64:first-child{
    margin-right: 16rem;
  }

  .tablet\:first\:mr-72:first-child{
    margin-right: 18rem;
  }

  .tablet\:first\:mr-80:first-child{
    margin-right: 20rem;
  }

  .tablet\:first\:mr-96:first-child{
    margin-right: 24rem;
  }

  .tablet\:first\:mr-auto:first-child{
    margin-right: auto;
  }

  .tablet\:first\:mr-px:first-child{
    margin-right: 1px;
  }

  .tablet\:first\:mr-0\.5:first-child{
    margin-right: 0.125rem;
  }

  .tablet\:first\:mr-1\.5:first-child{
    margin-right: 0.375rem;
  }

  .tablet\:first\:mr-2\.5:first-child{
    margin-right: 0.625rem;
  }

  .tablet\:first\:mr-3\.5:first-child{
    margin-right: 0.875rem;
  }

  .tablet\:first\:-mr-0:first-child{
    margin-right: 0px;
  }

  .tablet\:first\:-mr-1:first-child{
    margin-right: -0.25rem;
  }

  .tablet\:first\:-mr-2:first-child{
    margin-right: -0.5rem;
  }

  .tablet\:first\:-mr-3:first-child{
    margin-right: -0.75rem;
  }

  .tablet\:first\:-mr-4:first-child{
    margin-right: -1rem;
  }

  .tablet\:first\:-mr-5:first-child{
    margin-right: -1.25rem;
  }

  .tablet\:first\:-mr-6:first-child{
    margin-right: -1.5rem;
  }

  .tablet\:first\:-mr-7:first-child{
    margin-right: -1.75rem;
  }

  .tablet\:first\:-mr-8:first-child{
    margin-right: -2rem;
  }

  .tablet\:first\:-mr-9:first-child{
    margin-right: -2.25rem;
  }

  .tablet\:first\:-mr-10:first-child{
    margin-right: -2.5rem;
  }

  .tablet\:first\:-mr-11:first-child{
    margin-right: -2.75rem;
  }

  .tablet\:first\:-mr-12:first-child{
    margin-right: -3rem;
  }

  .tablet\:first\:-mr-14:first-child{
    margin-right: -3.5rem;
  }

  .tablet\:first\:-mr-16:first-child{
    margin-right: -4rem;
  }

  .tablet\:first\:-mr-20:first-child{
    margin-right: -5rem;
  }

  .tablet\:first\:-mr-24:first-child{
    margin-right: -6rem;
  }

  .tablet\:first\:-mr-28:first-child{
    margin-right: -7rem;
  }

  .tablet\:first\:-mr-32:first-child{
    margin-right: -8rem;
  }

  .tablet\:first\:-mr-36:first-child{
    margin-right: -9rem;
  }

  .tablet\:first\:-mr-40:first-child{
    margin-right: -10rem;
  }

  .tablet\:first\:-mr-44:first-child{
    margin-right: -11rem;
  }

  .tablet\:first\:-mr-48:first-child{
    margin-right: -12rem;
  }

  .tablet\:first\:-mr-52:first-child{
    margin-right: -13rem;
  }

  .tablet\:first\:-mr-56:first-child{
    margin-right: -14rem;
  }

  .tablet\:first\:-mr-60:first-child{
    margin-right: -15rem;
  }

  .tablet\:first\:-mr-64:first-child{
    margin-right: -16rem;
  }

  .tablet\:first\:-mr-72:first-child{
    margin-right: -18rem;
  }

  .tablet\:first\:-mr-80:first-child{
    margin-right: -20rem;
  }

  .tablet\:first\:-mr-96:first-child{
    margin-right: -24rem;
  }

  .tablet\:first\:-mr-px:first-child{
    margin-right: -1px;
  }

  .tablet\:first\:-mr-0\.5:first-child{
    margin-right: -0.125rem;
  }

  .tablet\:first\:-mr-1\.5:first-child{
    margin-right: -0.375rem;
  }

  .tablet\:first\:-mr-2\.5:first-child{
    margin-right: -0.625rem;
  }

  .tablet\:first\:-mr-3\.5:first-child{
    margin-right: -0.875rem;
  }

  .tablet\:first\:mr-neg1:first-child{
    margin-right: -.25rem;
  }

  .tablet\:first\:mr-neg2:first-child{
    margin-right: -.5rem;
  }

  .tablet\:first\:mr-neg4:first-child{
    margin-right: -1.0rem;
  }

  .tablet\:first\:mr-neg6:first-child{
    margin-right: -1.5rem;
  }

  .tablet\:first\:mr-neg12:first-child{
    margin-right: -3rem;
  }

  .tablet\:first\:mr-neg20:first-child{
    margin-right: -5rem;
  }

  .tablet\:first\:mb-0:first-child{
    margin-bottom: 0px;
  }

  .tablet\:first\:mb-1:first-child{
    margin-bottom: 0.25rem;
  }

  .tablet\:first\:mb-2:first-child{
    margin-bottom: 0.5rem;
  }

  .tablet\:first\:mb-3:first-child{
    margin-bottom: 0.75rem;
  }

  .tablet\:first\:mb-4:first-child{
    margin-bottom: 1rem;
  }

  .tablet\:first\:mb-5:first-child{
    margin-bottom: 1.25rem;
  }

  .tablet\:first\:mb-6:first-child{
    margin-bottom: 1.5rem;
  }

  .tablet\:first\:mb-7:first-child{
    margin-bottom: 1.75rem;
  }

  .tablet\:first\:mb-8:first-child{
    margin-bottom: 2rem;
  }

  .tablet\:first\:mb-9:first-child{
    margin-bottom: 2.25rem;
  }

  .tablet\:first\:mb-10:first-child{
    margin-bottom: 2.5rem;
  }

  .tablet\:first\:mb-11:first-child{
    margin-bottom: 2.75rem;
  }

  .tablet\:first\:mb-12:first-child{
    margin-bottom: 3rem;
  }

  .tablet\:first\:mb-14:first-child{
    margin-bottom: 3.5rem;
  }

  .tablet\:first\:mb-16:first-child{
    margin-bottom: 4rem;
  }

  .tablet\:first\:mb-20:first-child{
    margin-bottom: 5rem;
  }

  .tablet\:first\:mb-24:first-child{
    margin-bottom: 6rem;
  }

  .tablet\:first\:mb-28:first-child{
    margin-bottom: 7rem;
  }

  .tablet\:first\:mb-32:first-child{
    margin-bottom: 8rem;
  }

  .tablet\:first\:mb-36:first-child{
    margin-bottom: 9rem;
  }

  .tablet\:first\:mb-40:first-child{
    margin-bottom: 10rem;
  }

  .tablet\:first\:mb-44:first-child{
    margin-bottom: 11rem;
  }

  .tablet\:first\:mb-48:first-child{
    margin-bottom: 12rem;
  }

  .tablet\:first\:mb-52:first-child{
    margin-bottom: 13rem;
  }

  .tablet\:first\:mb-56:first-child{
    margin-bottom: 14rem;
  }

  .tablet\:first\:mb-60:first-child{
    margin-bottom: 15rem;
  }

  .tablet\:first\:mb-64:first-child{
    margin-bottom: 16rem;
  }

  .tablet\:first\:mb-72:first-child{
    margin-bottom: 18rem;
  }

  .tablet\:first\:mb-80:first-child{
    margin-bottom: 20rem;
  }

  .tablet\:first\:mb-96:first-child{
    margin-bottom: 24rem;
  }

  .tablet\:first\:mb-auto:first-child{
    margin-bottom: auto;
  }

  .tablet\:first\:mb-px:first-child{
    margin-bottom: 1px;
  }

  .tablet\:first\:mb-0\.5:first-child{
    margin-bottom: 0.125rem;
  }

  .tablet\:first\:mb-1\.5:first-child{
    margin-bottom: 0.375rem;
  }

  .tablet\:first\:mb-2\.5:first-child{
    margin-bottom: 0.625rem;
  }

  .tablet\:first\:mb-3\.5:first-child{
    margin-bottom: 0.875rem;
  }

  .tablet\:first\:-mb-0:first-child{
    margin-bottom: 0px;
  }

  .tablet\:first\:-mb-1:first-child{
    margin-bottom: -0.25rem;
  }

  .tablet\:first\:-mb-2:first-child{
    margin-bottom: -0.5rem;
  }

  .tablet\:first\:-mb-3:first-child{
    margin-bottom: -0.75rem;
  }

  .tablet\:first\:-mb-4:first-child{
    margin-bottom: -1rem;
  }

  .tablet\:first\:-mb-5:first-child{
    margin-bottom: -1.25rem;
  }

  .tablet\:first\:-mb-6:first-child{
    margin-bottom: -1.5rem;
  }

  .tablet\:first\:-mb-7:first-child{
    margin-bottom: -1.75rem;
  }

  .tablet\:first\:-mb-8:first-child{
    margin-bottom: -2rem;
  }

  .tablet\:first\:-mb-9:first-child{
    margin-bottom: -2.25rem;
  }

  .tablet\:first\:-mb-10:first-child{
    margin-bottom: -2.5rem;
  }

  .tablet\:first\:-mb-11:first-child{
    margin-bottom: -2.75rem;
  }

  .tablet\:first\:-mb-12:first-child{
    margin-bottom: -3rem;
  }

  .tablet\:first\:-mb-14:first-child{
    margin-bottom: -3.5rem;
  }

  .tablet\:first\:-mb-16:first-child{
    margin-bottom: -4rem;
  }

  .tablet\:first\:-mb-20:first-child{
    margin-bottom: -5rem;
  }

  .tablet\:first\:-mb-24:first-child{
    margin-bottom: -6rem;
  }

  .tablet\:first\:-mb-28:first-child{
    margin-bottom: -7rem;
  }

  .tablet\:first\:-mb-32:first-child{
    margin-bottom: -8rem;
  }

  .tablet\:first\:-mb-36:first-child{
    margin-bottom: -9rem;
  }

  .tablet\:first\:-mb-40:first-child{
    margin-bottom: -10rem;
  }

  .tablet\:first\:-mb-44:first-child{
    margin-bottom: -11rem;
  }

  .tablet\:first\:-mb-48:first-child{
    margin-bottom: -12rem;
  }

  .tablet\:first\:-mb-52:first-child{
    margin-bottom: -13rem;
  }

  .tablet\:first\:-mb-56:first-child{
    margin-bottom: -14rem;
  }

  .tablet\:first\:-mb-60:first-child{
    margin-bottom: -15rem;
  }

  .tablet\:first\:-mb-64:first-child{
    margin-bottom: -16rem;
  }

  .tablet\:first\:-mb-72:first-child{
    margin-bottom: -18rem;
  }

  .tablet\:first\:-mb-80:first-child{
    margin-bottom: -20rem;
  }

  .tablet\:first\:-mb-96:first-child{
    margin-bottom: -24rem;
  }

  .tablet\:first\:-mb-px:first-child{
    margin-bottom: -1px;
  }

  .tablet\:first\:-mb-0\.5:first-child{
    margin-bottom: -0.125rem;
  }

  .tablet\:first\:-mb-1\.5:first-child{
    margin-bottom: -0.375rem;
  }

  .tablet\:first\:-mb-2\.5:first-child{
    margin-bottom: -0.625rem;
  }

  .tablet\:first\:-mb-3\.5:first-child{
    margin-bottom: -0.875rem;
  }

  .tablet\:first\:mb-neg1:first-child{
    margin-bottom: -.25rem;
  }

  .tablet\:first\:mb-neg2:first-child{
    margin-bottom: -.5rem;
  }

  .tablet\:first\:mb-neg4:first-child{
    margin-bottom: -1.0rem;
  }

  .tablet\:first\:mb-neg6:first-child{
    margin-bottom: -1.5rem;
  }

  .tablet\:first\:mb-neg12:first-child{
    margin-bottom: -3rem;
  }

  .tablet\:first\:mb-neg20:first-child{
    margin-bottom: -5rem;
  }

  .tablet\:first\:ml-0:first-child{
    margin-left: 0px;
  }

  .tablet\:first\:ml-1:first-child{
    margin-left: 0.25rem;
  }

  .tablet\:first\:ml-2:first-child{
    margin-left: 0.5rem;
  }

  .tablet\:first\:ml-3:first-child{
    margin-left: 0.75rem;
  }

  .tablet\:first\:ml-4:first-child{
    margin-left: 1rem;
  }

  .tablet\:first\:ml-5:first-child{
    margin-left: 1.25rem;
  }

  .tablet\:first\:ml-6:first-child{
    margin-left: 1.5rem;
  }

  .tablet\:first\:ml-7:first-child{
    margin-left: 1.75rem;
  }

  .tablet\:first\:ml-8:first-child{
    margin-left: 2rem;
  }

  .tablet\:first\:ml-9:first-child{
    margin-left: 2.25rem;
  }

  .tablet\:first\:ml-10:first-child{
    margin-left: 2.5rem;
  }

  .tablet\:first\:ml-11:first-child{
    margin-left: 2.75rem;
  }

  .tablet\:first\:ml-12:first-child{
    margin-left: 3rem;
  }

  .tablet\:first\:ml-14:first-child{
    margin-left: 3.5rem;
  }

  .tablet\:first\:ml-16:first-child{
    margin-left: 4rem;
  }

  .tablet\:first\:ml-20:first-child{
    margin-left: 5rem;
  }

  .tablet\:first\:ml-24:first-child{
    margin-left: 6rem;
  }

  .tablet\:first\:ml-28:first-child{
    margin-left: 7rem;
  }

  .tablet\:first\:ml-32:first-child{
    margin-left: 8rem;
  }

  .tablet\:first\:ml-36:first-child{
    margin-left: 9rem;
  }

  .tablet\:first\:ml-40:first-child{
    margin-left: 10rem;
  }

  .tablet\:first\:ml-44:first-child{
    margin-left: 11rem;
  }

  .tablet\:first\:ml-48:first-child{
    margin-left: 12rem;
  }

  .tablet\:first\:ml-52:first-child{
    margin-left: 13rem;
  }

  .tablet\:first\:ml-56:first-child{
    margin-left: 14rem;
  }

  .tablet\:first\:ml-60:first-child{
    margin-left: 15rem;
  }

  .tablet\:first\:ml-64:first-child{
    margin-left: 16rem;
  }

  .tablet\:first\:ml-72:first-child{
    margin-left: 18rem;
  }

  .tablet\:first\:ml-80:first-child{
    margin-left: 20rem;
  }

  .tablet\:first\:ml-96:first-child{
    margin-left: 24rem;
  }

  .tablet\:first\:ml-auto:first-child{
    margin-left: auto;
  }

  .tablet\:first\:ml-px:first-child{
    margin-left: 1px;
  }

  .tablet\:first\:ml-0\.5:first-child{
    margin-left: 0.125rem;
  }

  .tablet\:first\:ml-1\.5:first-child{
    margin-left: 0.375rem;
  }

  .tablet\:first\:ml-2\.5:first-child{
    margin-left: 0.625rem;
  }

  .tablet\:first\:ml-3\.5:first-child{
    margin-left: 0.875rem;
  }

  .tablet\:first\:-ml-0:first-child{
    margin-left: 0px;
  }

  .tablet\:first\:-ml-1:first-child{
    margin-left: -0.25rem;
  }

  .tablet\:first\:-ml-2:first-child{
    margin-left: -0.5rem;
  }

  .tablet\:first\:-ml-3:first-child{
    margin-left: -0.75rem;
  }

  .tablet\:first\:-ml-4:first-child{
    margin-left: -1rem;
  }

  .tablet\:first\:-ml-5:first-child{
    margin-left: -1.25rem;
  }

  .tablet\:first\:-ml-6:first-child{
    margin-left: -1.5rem;
  }

  .tablet\:first\:-ml-7:first-child{
    margin-left: -1.75rem;
  }

  .tablet\:first\:-ml-8:first-child{
    margin-left: -2rem;
  }

  .tablet\:first\:-ml-9:first-child{
    margin-left: -2.25rem;
  }

  .tablet\:first\:-ml-10:first-child{
    margin-left: -2.5rem;
  }

  .tablet\:first\:-ml-11:first-child{
    margin-left: -2.75rem;
  }

  .tablet\:first\:-ml-12:first-child{
    margin-left: -3rem;
  }

  .tablet\:first\:-ml-14:first-child{
    margin-left: -3.5rem;
  }

  .tablet\:first\:-ml-16:first-child{
    margin-left: -4rem;
  }

  .tablet\:first\:-ml-20:first-child{
    margin-left: -5rem;
  }

  .tablet\:first\:-ml-24:first-child{
    margin-left: -6rem;
  }

  .tablet\:first\:-ml-28:first-child{
    margin-left: -7rem;
  }

  .tablet\:first\:-ml-32:first-child{
    margin-left: -8rem;
  }

  .tablet\:first\:-ml-36:first-child{
    margin-left: -9rem;
  }

  .tablet\:first\:-ml-40:first-child{
    margin-left: -10rem;
  }

  .tablet\:first\:-ml-44:first-child{
    margin-left: -11rem;
  }

  .tablet\:first\:-ml-48:first-child{
    margin-left: -12rem;
  }

  .tablet\:first\:-ml-52:first-child{
    margin-left: -13rem;
  }

  .tablet\:first\:-ml-56:first-child{
    margin-left: -14rem;
  }

  .tablet\:first\:-ml-60:first-child{
    margin-left: -15rem;
  }

  .tablet\:first\:-ml-64:first-child{
    margin-left: -16rem;
  }

  .tablet\:first\:-ml-72:first-child{
    margin-left: -18rem;
  }

  .tablet\:first\:-ml-80:first-child{
    margin-left: -20rem;
  }

  .tablet\:first\:-ml-96:first-child{
    margin-left: -24rem;
  }

  .tablet\:first\:-ml-px:first-child{
    margin-left: -1px;
  }

  .tablet\:first\:-ml-0\.5:first-child{
    margin-left: -0.125rem;
  }

  .tablet\:first\:-ml-1\.5:first-child{
    margin-left: -0.375rem;
  }

  .tablet\:first\:-ml-2\.5:first-child{
    margin-left: -0.625rem;
  }

  .tablet\:first\:-ml-3\.5:first-child{
    margin-left: -0.875rem;
  }

  .tablet\:first\:ml-neg1:first-child{
    margin-left: -.25rem;
  }

  .tablet\:first\:ml-neg2:first-child{
    margin-left: -.5rem;
  }

  .tablet\:first\:ml-neg4:first-child{
    margin-left: -1.0rem;
  }

  .tablet\:first\:ml-neg6:first-child{
    margin-left: -1.5rem;
  }

  .tablet\:first\:ml-neg12:first-child{
    margin-left: -3rem;
  }

  .tablet\:first\:ml-neg20:first-child{
    margin-left: -5rem;
  }

  .tablet\:last\:mt-0:last-child{
    margin-top: 0px;
  }

  .tablet\:last\:mt-1:last-child{
    margin-top: 0.25rem;
  }

  .tablet\:last\:mt-2:last-child{
    margin-top: 0.5rem;
  }

  .tablet\:last\:mt-3:last-child{
    margin-top: 0.75rem;
  }

  .tablet\:last\:mt-4:last-child{
    margin-top: 1rem;
  }

  .tablet\:last\:mt-5:last-child{
    margin-top: 1.25rem;
  }

  .tablet\:last\:mt-6:last-child{
    margin-top: 1.5rem;
  }

  .tablet\:last\:mt-7:last-child{
    margin-top: 1.75rem;
  }

  .tablet\:last\:mt-8:last-child{
    margin-top: 2rem;
  }

  .tablet\:last\:mt-9:last-child{
    margin-top: 2.25rem;
  }

  .tablet\:last\:mt-10:last-child{
    margin-top: 2.5rem;
  }

  .tablet\:last\:mt-11:last-child{
    margin-top: 2.75rem;
  }

  .tablet\:last\:mt-12:last-child{
    margin-top: 3rem;
  }

  .tablet\:last\:mt-14:last-child{
    margin-top: 3.5rem;
  }

  .tablet\:last\:mt-16:last-child{
    margin-top: 4rem;
  }

  .tablet\:last\:mt-20:last-child{
    margin-top: 5rem;
  }

  .tablet\:last\:mt-24:last-child{
    margin-top: 6rem;
  }

  .tablet\:last\:mt-28:last-child{
    margin-top: 7rem;
  }

  .tablet\:last\:mt-32:last-child{
    margin-top: 8rem;
  }

  .tablet\:last\:mt-36:last-child{
    margin-top: 9rem;
  }

  .tablet\:last\:mt-40:last-child{
    margin-top: 10rem;
  }

  .tablet\:last\:mt-44:last-child{
    margin-top: 11rem;
  }

  .tablet\:last\:mt-48:last-child{
    margin-top: 12rem;
  }

  .tablet\:last\:mt-52:last-child{
    margin-top: 13rem;
  }

  .tablet\:last\:mt-56:last-child{
    margin-top: 14rem;
  }

  .tablet\:last\:mt-60:last-child{
    margin-top: 15rem;
  }

  .tablet\:last\:mt-64:last-child{
    margin-top: 16rem;
  }

  .tablet\:last\:mt-72:last-child{
    margin-top: 18rem;
  }

  .tablet\:last\:mt-80:last-child{
    margin-top: 20rem;
  }

  .tablet\:last\:mt-96:last-child{
    margin-top: 24rem;
  }

  .tablet\:last\:mt-auto:last-child{
    margin-top: auto;
  }

  .tablet\:last\:mt-px:last-child{
    margin-top: 1px;
  }

  .tablet\:last\:mt-0\.5:last-child{
    margin-top: 0.125rem;
  }

  .tablet\:last\:mt-1\.5:last-child{
    margin-top: 0.375rem;
  }

  .tablet\:last\:mt-2\.5:last-child{
    margin-top: 0.625rem;
  }

  .tablet\:last\:mt-3\.5:last-child{
    margin-top: 0.875rem;
  }

  .tablet\:last\:-mt-0:last-child{
    margin-top: 0px;
  }

  .tablet\:last\:-mt-1:last-child{
    margin-top: -0.25rem;
  }

  .tablet\:last\:-mt-2:last-child{
    margin-top: -0.5rem;
  }

  .tablet\:last\:-mt-3:last-child{
    margin-top: -0.75rem;
  }

  .tablet\:last\:-mt-4:last-child{
    margin-top: -1rem;
  }

  .tablet\:last\:-mt-5:last-child{
    margin-top: -1.25rem;
  }

  .tablet\:last\:-mt-6:last-child{
    margin-top: -1.5rem;
  }

  .tablet\:last\:-mt-7:last-child{
    margin-top: -1.75rem;
  }

  .tablet\:last\:-mt-8:last-child{
    margin-top: -2rem;
  }

  .tablet\:last\:-mt-9:last-child{
    margin-top: -2.25rem;
  }

  .tablet\:last\:-mt-10:last-child{
    margin-top: -2.5rem;
  }

  .tablet\:last\:-mt-11:last-child{
    margin-top: -2.75rem;
  }

  .tablet\:last\:-mt-12:last-child{
    margin-top: -3rem;
  }

  .tablet\:last\:-mt-14:last-child{
    margin-top: -3.5rem;
  }

  .tablet\:last\:-mt-16:last-child{
    margin-top: -4rem;
  }

  .tablet\:last\:-mt-20:last-child{
    margin-top: -5rem;
  }

  .tablet\:last\:-mt-24:last-child{
    margin-top: -6rem;
  }

  .tablet\:last\:-mt-28:last-child{
    margin-top: -7rem;
  }

  .tablet\:last\:-mt-32:last-child{
    margin-top: -8rem;
  }

  .tablet\:last\:-mt-36:last-child{
    margin-top: -9rem;
  }

  .tablet\:last\:-mt-40:last-child{
    margin-top: -10rem;
  }

  .tablet\:last\:-mt-44:last-child{
    margin-top: -11rem;
  }

  .tablet\:last\:-mt-48:last-child{
    margin-top: -12rem;
  }

  .tablet\:last\:-mt-52:last-child{
    margin-top: -13rem;
  }

  .tablet\:last\:-mt-56:last-child{
    margin-top: -14rem;
  }

  .tablet\:last\:-mt-60:last-child{
    margin-top: -15rem;
  }

  .tablet\:last\:-mt-64:last-child{
    margin-top: -16rem;
  }

  .tablet\:last\:-mt-72:last-child{
    margin-top: -18rem;
  }

  .tablet\:last\:-mt-80:last-child{
    margin-top: -20rem;
  }

  .tablet\:last\:-mt-96:last-child{
    margin-top: -24rem;
  }

  .tablet\:last\:-mt-px:last-child{
    margin-top: -1px;
  }

  .tablet\:last\:-mt-0\.5:last-child{
    margin-top: -0.125rem;
  }

  .tablet\:last\:-mt-1\.5:last-child{
    margin-top: -0.375rem;
  }

  .tablet\:last\:-mt-2\.5:last-child{
    margin-top: -0.625rem;
  }

  .tablet\:last\:-mt-3\.5:last-child{
    margin-top: -0.875rem;
  }

  .tablet\:last\:mt-neg1:last-child{
    margin-top: -.25rem;
  }

  .tablet\:last\:mt-neg2:last-child{
    margin-top: -.5rem;
  }

  .tablet\:last\:mt-neg4:last-child{
    margin-top: -1.0rem;
  }

  .tablet\:last\:mt-neg6:last-child{
    margin-top: -1.5rem;
  }

  .tablet\:last\:mt-neg12:last-child{
    margin-top: -3rem;
  }

  .tablet\:last\:mt-neg20:last-child{
    margin-top: -5rem;
  }

  .tablet\:last\:mr-0:last-child{
    margin-right: 0px;
  }

  .tablet\:last\:mr-1:last-child{
    margin-right: 0.25rem;
  }

  .tablet\:last\:mr-2:last-child{
    margin-right: 0.5rem;
  }

  .tablet\:last\:mr-3:last-child{
    margin-right: 0.75rem;
  }

  .tablet\:last\:mr-4:last-child{
    margin-right: 1rem;
  }

  .tablet\:last\:mr-5:last-child{
    margin-right: 1.25rem;
  }

  .tablet\:last\:mr-6:last-child{
    margin-right: 1.5rem;
  }

  .tablet\:last\:mr-7:last-child{
    margin-right: 1.75rem;
  }

  .tablet\:last\:mr-8:last-child{
    margin-right: 2rem;
  }

  .tablet\:last\:mr-9:last-child{
    margin-right: 2.25rem;
  }

  .tablet\:last\:mr-10:last-child{
    margin-right: 2.5rem;
  }

  .tablet\:last\:mr-11:last-child{
    margin-right: 2.75rem;
  }

  .tablet\:last\:mr-12:last-child{
    margin-right: 3rem;
  }

  .tablet\:last\:mr-14:last-child{
    margin-right: 3.5rem;
  }

  .tablet\:last\:mr-16:last-child{
    margin-right: 4rem;
  }

  .tablet\:last\:mr-20:last-child{
    margin-right: 5rem;
  }

  .tablet\:last\:mr-24:last-child{
    margin-right: 6rem;
  }

  .tablet\:last\:mr-28:last-child{
    margin-right: 7rem;
  }

  .tablet\:last\:mr-32:last-child{
    margin-right: 8rem;
  }

  .tablet\:last\:mr-36:last-child{
    margin-right: 9rem;
  }

  .tablet\:last\:mr-40:last-child{
    margin-right: 10rem;
  }

  .tablet\:last\:mr-44:last-child{
    margin-right: 11rem;
  }

  .tablet\:last\:mr-48:last-child{
    margin-right: 12rem;
  }

  .tablet\:last\:mr-52:last-child{
    margin-right: 13rem;
  }

  .tablet\:last\:mr-56:last-child{
    margin-right: 14rem;
  }

  .tablet\:last\:mr-60:last-child{
    margin-right: 15rem;
  }

  .tablet\:last\:mr-64:last-child{
    margin-right: 16rem;
  }

  .tablet\:last\:mr-72:last-child{
    margin-right: 18rem;
  }

  .tablet\:last\:mr-80:last-child{
    margin-right: 20rem;
  }

  .tablet\:last\:mr-96:last-child{
    margin-right: 24rem;
  }

  .tablet\:last\:mr-auto:last-child{
    margin-right: auto;
  }

  .tablet\:last\:mr-px:last-child{
    margin-right: 1px;
  }

  .tablet\:last\:mr-0\.5:last-child{
    margin-right: 0.125rem;
  }

  .tablet\:last\:mr-1\.5:last-child{
    margin-right: 0.375rem;
  }

  .tablet\:last\:mr-2\.5:last-child{
    margin-right: 0.625rem;
  }

  .tablet\:last\:mr-3\.5:last-child{
    margin-right: 0.875rem;
  }

  .tablet\:last\:-mr-0:last-child{
    margin-right: 0px;
  }

  .tablet\:last\:-mr-1:last-child{
    margin-right: -0.25rem;
  }

  .tablet\:last\:-mr-2:last-child{
    margin-right: -0.5rem;
  }

  .tablet\:last\:-mr-3:last-child{
    margin-right: -0.75rem;
  }

  .tablet\:last\:-mr-4:last-child{
    margin-right: -1rem;
  }

  .tablet\:last\:-mr-5:last-child{
    margin-right: -1.25rem;
  }

  .tablet\:last\:-mr-6:last-child{
    margin-right: -1.5rem;
  }

  .tablet\:last\:-mr-7:last-child{
    margin-right: -1.75rem;
  }

  .tablet\:last\:-mr-8:last-child{
    margin-right: -2rem;
  }

  .tablet\:last\:-mr-9:last-child{
    margin-right: -2.25rem;
  }

  .tablet\:last\:-mr-10:last-child{
    margin-right: -2.5rem;
  }

  .tablet\:last\:-mr-11:last-child{
    margin-right: -2.75rem;
  }

  .tablet\:last\:-mr-12:last-child{
    margin-right: -3rem;
  }

  .tablet\:last\:-mr-14:last-child{
    margin-right: -3.5rem;
  }

  .tablet\:last\:-mr-16:last-child{
    margin-right: -4rem;
  }

  .tablet\:last\:-mr-20:last-child{
    margin-right: -5rem;
  }

  .tablet\:last\:-mr-24:last-child{
    margin-right: -6rem;
  }

  .tablet\:last\:-mr-28:last-child{
    margin-right: -7rem;
  }

  .tablet\:last\:-mr-32:last-child{
    margin-right: -8rem;
  }

  .tablet\:last\:-mr-36:last-child{
    margin-right: -9rem;
  }

  .tablet\:last\:-mr-40:last-child{
    margin-right: -10rem;
  }

  .tablet\:last\:-mr-44:last-child{
    margin-right: -11rem;
  }

  .tablet\:last\:-mr-48:last-child{
    margin-right: -12rem;
  }

  .tablet\:last\:-mr-52:last-child{
    margin-right: -13rem;
  }

  .tablet\:last\:-mr-56:last-child{
    margin-right: -14rem;
  }

  .tablet\:last\:-mr-60:last-child{
    margin-right: -15rem;
  }

  .tablet\:last\:-mr-64:last-child{
    margin-right: -16rem;
  }

  .tablet\:last\:-mr-72:last-child{
    margin-right: -18rem;
  }

  .tablet\:last\:-mr-80:last-child{
    margin-right: -20rem;
  }

  .tablet\:last\:-mr-96:last-child{
    margin-right: -24rem;
  }

  .tablet\:last\:-mr-px:last-child{
    margin-right: -1px;
  }

  .tablet\:last\:-mr-0\.5:last-child{
    margin-right: -0.125rem;
  }

  .tablet\:last\:-mr-1\.5:last-child{
    margin-right: -0.375rem;
  }

  .tablet\:last\:-mr-2\.5:last-child{
    margin-right: -0.625rem;
  }

  .tablet\:last\:-mr-3\.5:last-child{
    margin-right: -0.875rem;
  }

  .tablet\:last\:mr-neg1:last-child{
    margin-right: -.25rem;
  }

  .tablet\:last\:mr-neg2:last-child{
    margin-right: -.5rem;
  }

  .tablet\:last\:mr-neg4:last-child{
    margin-right: -1.0rem;
  }

  .tablet\:last\:mr-neg6:last-child{
    margin-right: -1.5rem;
  }

  .tablet\:last\:mr-neg12:last-child{
    margin-right: -3rem;
  }

  .tablet\:last\:mr-neg20:last-child{
    margin-right: -5rem;
  }

  .tablet\:last\:mb-0:last-child{
    margin-bottom: 0px;
  }

  .tablet\:last\:mb-1:last-child{
    margin-bottom: 0.25rem;
  }

  .tablet\:last\:mb-2:last-child{
    margin-bottom: 0.5rem;
  }

  .tablet\:last\:mb-3:last-child{
    margin-bottom: 0.75rem;
  }

  .tablet\:last\:mb-4:last-child{
    margin-bottom: 1rem;
  }

  .tablet\:last\:mb-5:last-child{
    margin-bottom: 1.25rem;
  }

  .tablet\:last\:mb-6:last-child{
    margin-bottom: 1.5rem;
  }

  .tablet\:last\:mb-7:last-child{
    margin-bottom: 1.75rem;
  }

  .tablet\:last\:mb-8:last-child{
    margin-bottom: 2rem;
  }

  .tablet\:last\:mb-9:last-child{
    margin-bottom: 2.25rem;
  }

  .tablet\:last\:mb-10:last-child{
    margin-bottom: 2.5rem;
  }

  .tablet\:last\:mb-11:last-child{
    margin-bottom: 2.75rem;
  }

  .tablet\:last\:mb-12:last-child{
    margin-bottom: 3rem;
  }

  .tablet\:last\:mb-14:last-child{
    margin-bottom: 3.5rem;
  }

  .tablet\:last\:mb-16:last-child{
    margin-bottom: 4rem;
  }

  .tablet\:last\:mb-20:last-child{
    margin-bottom: 5rem;
  }

  .tablet\:last\:mb-24:last-child{
    margin-bottom: 6rem;
  }

  .tablet\:last\:mb-28:last-child{
    margin-bottom: 7rem;
  }

  .tablet\:last\:mb-32:last-child{
    margin-bottom: 8rem;
  }

  .tablet\:last\:mb-36:last-child{
    margin-bottom: 9rem;
  }

  .tablet\:last\:mb-40:last-child{
    margin-bottom: 10rem;
  }

  .tablet\:last\:mb-44:last-child{
    margin-bottom: 11rem;
  }

  .tablet\:last\:mb-48:last-child{
    margin-bottom: 12rem;
  }

  .tablet\:last\:mb-52:last-child{
    margin-bottom: 13rem;
  }

  .tablet\:last\:mb-56:last-child{
    margin-bottom: 14rem;
  }

  .tablet\:last\:mb-60:last-child{
    margin-bottom: 15rem;
  }

  .tablet\:last\:mb-64:last-child{
    margin-bottom: 16rem;
  }

  .tablet\:last\:mb-72:last-child{
    margin-bottom: 18rem;
  }

  .tablet\:last\:mb-80:last-child{
    margin-bottom: 20rem;
  }

  .tablet\:last\:mb-96:last-child{
    margin-bottom: 24rem;
  }

  .tablet\:last\:mb-auto:last-child{
    margin-bottom: auto;
  }

  .tablet\:last\:mb-px:last-child{
    margin-bottom: 1px;
  }

  .tablet\:last\:mb-0\.5:last-child{
    margin-bottom: 0.125rem;
  }

  .tablet\:last\:mb-1\.5:last-child{
    margin-bottom: 0.375rem;
  }

  .tablet\:last\:mb-2\.5:last-child{
    margin-bottom: 0.625rem;
  }

  .tablet\:last\:mb-3\.5:last-child{
    margin-bottom: 0.875rem;
  }

  .tablet\:last\:-mb-0:last-child{
    margin-bottom: 0px;
  }

  .tablet\:last\:-mb-1:last-child{
    margin-bottom: -0.25rem;
  }

  .tablet\:last\:-mb-2:last-child{
    margin-bottom: -0.5rem;
  }

  .tablet\:last\:-mb-3:last-child{
    margin-bottom: -0.75rem;
  }

  .tablet\:last\:-mb-4:last-child{
    margin-bottom: -1rem;
  }

  .tablet\:last\:-mb-5:last-child{
    margin-bottom: -1.25rem;
  }

  .tablet\:last\:-mb-6:last-child{
    margin-bottom: -1.5rem;
  }

  .tablet\:last\:-mb-7:last-child{
    margin-bottom: -1.75rem;
  }

  .tablet\:last\:-mb-8:last-child{
    margin-bottom: -2rem;
  }

  .tablet\:last\:-mb-9:last-child{
    margin-bottom: -2.25rem;
  }

  .tablet\:last\:-mb-10:last-child{
    margin-bottom: -2.5rem;
  }

  .tablet\:last\:-mb-11:last-child{
    margin-bottom: -2.75rem;
  }

  .tablet\:last\:-mb-12:last-child{
    margin-bottom: -3rem;
  }

  .tablet\:last\:-mb-14:last-child{
    margin-bottom: -3.5rem;
  }

  .tablet\:last\:-mb-16:last-child{
    margin-bottom: -4rem;
  }

  .tablet\:last\:-mb-20:last-child{
    margin-bottom: -5rem;
  }

  .tablet\:last\:-mb-24:last-child{
    margin-bottom: -6rem;
  }

  .tablet\:last\:-mb-28:last-child{
    margin-bottom: -7rem;
  }

  .tablet\:last\:-mb-32:last-child{
    margin-bottom: -8rem;
  }

  .tablet\:last\:-mb-36:last-child{
    margin-bottom: -9rem;
  }

  .tablet\:last\:-mb-40:last-child{
    margin-bottom: -10rem;
  }

  .tablet\:last\:-mb-44:last-child{
    margin-bottom: -11rem;
  }

  .tablet\:last\:-mb-48:last-child{
    margin-bottom: -12rem;
  }

  .tablet\:last\:-mb-52:last-child{
    margin-bottom: -13rem;
  }

  .tablet\:last\:-mb-56:last-child{
    margin-bottom: -14rem;
  }

  .tablet\:last\:-mb-60:last-child{
    margin-bottom: -15rem;
  }

  .tablet\:last\:-mb-64:last-child{
    margin-bottom: -16rem;
  }

  .tablet\:last\:-mb-72:last-child{
    margin-bottom: -18rem;
  }

  .tablet\:last\:-mb-80:last-child{
    margin-bottom: -20rem;
  }

  .tablet\:last\:-mb-96:last-child{
    margin-bottom: -24rem;
  }

  .tablet\:last\:-mb-px:last-child{
    margin-bottom: -1px;
  }

  .tablet\:last\:-mb-0\.5:last-child{
    margin-bottom: -0.125rem;
  }

  .tablet\:last\:-mb-1\.5:last-child{
    margin-bottom: -0.375rem;
  }

  .tablet\:last\:-mb-2\.5:last-child{
    margin-bottom: -0.625rem;
  }

  .tablet\:last\:-mb-3\.5:last-child{
    margin-bottom: -0.875rem;
  }

  .tablet\:last\:mb-neg1:last-child{
    margin-bottom: -.25rem;
  }

  .tablet\:last\:mb-neg2:last-child{
    margin-bottom: -.5rem;
  }

  .tablet\:last\:mb-neg4:last-child{
    margin-bottom: -1.0rem;
  }

  .tablet\:last\:mb-neg6:last-child{
    margin-bottom: -1.5rem;
  }

  .tablet\:last\:mb-neg12:last-child{
    margin-bottom: -3rem;
  }

  .tablet\:last\:mb-neg20:last-child{
    margin-bottom: -5rem;
  }

  .tablet\:last\:ml-0:last-child{
    margin-left: 0px;
  }

  .tablet\:last\:ml-1:last-child{
    margin-left: 0.25rem;
  }

  .tablet\:last\:ml-2:last-child{
    margin-left: 0.5rem;
  }

  .tablet\:last\:ml-3:last-child{
    margin-left: 0.75rem;
  }

  .tablet\:last\:ml-4:last-child{
    margin-left: 1rem;
  }

  .tablet\:last\:ml-5:last-child{
    margin-left: 1.25rem;
  }

  .tablet\:last\:ml-6:last-child{
    margin-left: 1.5rem;
  }

  .tablet\:last\:ml-7:last-child{
    margin-left: 1.75rem;
  }

  .tablet\:last\:ml-8:last-child{
    margin-left: 2rem;
  }

  .tablet\:last\:ml-9:last-child{
    margin-left: 2.25rem;
  }

  .tablet\:last\:ml-10:last-child{
    margin-left: 2.5rem;
  }

  .tablet\:last\:ml-11:last-child{
    margin-left: 2.75rem;
  }

  .tablet\:last\:ml-12:last-child{
    margin-left: 3rem;
  }

  .tablet\:last\:ml-14:last-child{
    margin-left: 3.5rem;
  }

  .tablet\:last\:ml-16:last-child{
    margin-left: 4rem;
  }

  .tablet\:last\:ml-20:last-child{
    margin-left: 5rem;
  }

  .tablet\:last\:ml-24:last-child{
    margin-left: 6rem;
  }

  .tablet\:last\:ml-28:last-child{
    margin-left: 7rem;
  }

  .tablet\:last\:ml-32:last-child{
    margin-left: 8rem;
  }

  .tablet\:last\:ml-36:last-child{
    margin-left: 9rem;
  }

  .tablet\:last\:ml-40:last-child{
    margin-left: 10rem;
  }

  .tablet\:last\:ml-44:last-child{
    margin-left: 11rem;
  }

  .tablet\:last\:ml-48:last-child{
    margin-left: 12rem;
  }

  .tablet\:last\:ml-52:last-child{
    margin-left: 13rem;
  }

  .tablet\:last\:ml-56:last-child{
    margin-left: 14rem;
  }

  .tablet\:last\:ml-60:last-child{
    margin-left: 15rem;
  }

  .tablet\:last\:ml-64:last-child{
    margin-left: 16rem;
  }

  .tablet\:last\:ml-72:last-child{
    margin-left: 18rem;
  }

  .tablet\:last\:ml-80:last-child{
    margin-left: 20rem;
  }

  .tablet\:last\:ml-96:last-child{
    margin-left: 24rem;
  }

  .tablet\:last\:ml-auto:last-child{
    margin-left: auto;
  }

  .tablet\:last\:ml-px:last-child{
    margin-left: 1px;
  }

  .tablet\:last\:ml-0\.5:last-child{
    margin-left: 0.125rem;
  }

  .tablet\:last\:ml-1\.5:last-child{
    margin-left: 0.375rem;
  }

  .tablet\:last\:ml-2\.5:last-child{
    margin-left: 0.625rem;
  }

  .tablet\:last\:ml-3\.5:last-child{
    margin-left: 0.875rem;
  }

  .tablet\:last\:-ml-0:last-child{
    margin-left: 0px;
  }

  .tablet\:last\:-ml-1:last-child{
    margin-left: -0.25rem;
  }

  .tablet\:last\:-ml-2:last-child{
    margin-left: -0.5rem;
  }

  .tablet\:last\:-ml-3:last-child{
    margin-left: -0.75rem;
  }

  .tablet\:last\:-ml-4:last-child{
    margin-left: -1rem;
  }

  .tablet\:last\:-ml-5:last-child{
    margin-left: -1.25rem;
  }

  .tablet\:last\:-ml-6:last-child{
    margin-left: -1.5rem;
  }

  .tablet\:last\:-ml-7:last-child{
    margin-left: -1.75rem;
  }

  .tablet\:last\:-ml-8:last-child{
    margin-left: -2rem;
  }

  .tablet\:last\:-ml-9:last-child{
    margin-left: -2.25rem;
  }

  .tablet\:last\:-ml-10:last-child{
    margin-left: -2.5rem;
  }

  .tablet\:last\:-ml-11:last-child{
    margin-left: -2.75rem;
  }

  .tablet\:last\:-ml-12:last-child{
    margin-left: -3rem;
  }

  .tablet\:last\:-ml-14:last-child{
    margin-left: -3.5rem;
  }

  .tablet\:last\:-ml-16:last-child{
    margin-left: -4rem;
  }

  .tablet\:last\:-ml-20:last-child{
    margin-left: -5rem;
  }

  .tablet\:last\:-ml-24:last-child{
    margin-left: -6rem;
  }

  .tablet\:last\:-ml-28:last-child{
    margin-left: -7rem;
  }

  .tablet\:last\:-ml-32:last-child{
    margin-left: -8rem;
  }

  .tablet\:last\:-ml-36:last-child{
    margin-left: -9rem;
  }

  .tablet\:last\:-ml-40:last-child{
    margin-left: -10rem;
  }

  .tablet\:last\:-ml-44:last-child{
    margin-left: -11rem;
  }

  .tablet\:last\:-ml-48:last-child{
    margin-left: -12rem;
  }

  .tablet\:last\:-ml-52:last-child{
    margin-left: -13rem;
  }

  .tablet\:last\:-ml-56:last-child{
    margin-left: -14rem;
  }

  .tablet\:last\:-ml-60:last-child{
    margin-left: -15rem;
  }

  .tablet\:last\:-ml-64:last-child{
    margin-left: -16rem;
  }

  .tablet\:last\:-ml-72:last-child{
    margin-left: -18rem;
  }

  .tablet\:last\:-ml-80:last-child{
    margin-left: -20rem;
  }

  .tablet\:last\:-ml-96:last-child{
    margin-left: -24rem;
  }

  .tablet\:last\:-ml-px:last-child{
    margin-left: -1px;
  }

  .tablet\:last\:-ml-0\.5:last-child{
    margin-left: -0.125rem;
  }

  .tablet\:last\:-ml-1\.5:last-child{
    margin-left: -0.375rem;
  }

  .tablet\:last\:-ml-2\.5:last-child{
    margin-left: -0.625rem;
  }

  .tablet\:last\:-ml-3\.5:last-child{
    margin-left: -0.875rem;
  }

  .tablet\:last\:ml-neg1:last-child{
    margin-left: -.25rem;
  }

  .tablet\:last\:ml-neg2:last-child{
    margin-left: -.5rem;
  }

  .tablet\:last\:ml-neg4:last-child{
    margin-left: -1.0rem;
  }

  .tablet\:last\:ml-neg6:last-child{
    margin-left: -1.5rem;
  }

  .tablet\:last\:ml-neg12:last-child{
    margin-left: -3rem;
  }

  .tablet\:last\:ml-neg20:last-child{
    margin-left: -5rem;
  }

  .tablet\:box-border{
    box-sizing: border-box;
  }

  .tablet\:box-content{
    box-sizing: content-box;
  }

  .tablet\:block{
    display: block;
  }

  .tablet\:inline-block{
    display: inline-block;
  }

  .tablet\:inline{
    display: inline;
  }

  .tablet\:flex{
    display: flex;
  }

  .tablet\:inline-flex{
    display: inline-flex;
  }

  .tablet\:table{
    display: table;
  }

  .tablet\:inline-table{
    display: inline-table;
  }

  .tablet\:table-caption{
    display: table-caption;
  }

  .tablet\:table-cell{
    display: table-cell;
  }

  .tablet\:table-column{
    display: table-column;
  }

  .tablet\:table-column-group{
    display: table-column-group;
  }

  .tablet\:table-footer-group{
    display: table-footer-group;
  }

  .tablet\:table-header-group{
    display: table-header-group;
  }

  .tablet\:table-row-group{
    display: table-row-group;
  }

  .tablet\:table-row{
    display: table-row;
  }

  .tablet\:flow-root{
    display: flow-root;
  }

  .tablet\:grid{
    display: grid;
  }

  .tablet\:inline-grid{
    display: inline-grid;
  }

  .tablet\:contents{
    display: contents;
  }

  .tablet\:list-item{
    display: list-item;
  }

  .tablet\:hidden{
    display: none;
  }

  .tablet\:h-0{
    height: 0px;
  }

  .tablet\:h-1{
    height: 0.25rem;
  }

  .tablet\:h-2{
    height: 0.5rem;
  }

  .tablet\:h-3{
    height: 0.75rem;
  }

  .tablet\:h-4{
    height: 1rem;
  }

  .tablet\:h-5{
    height: 1.25rem;
  }

  .tablet\:h-6{
    height: 1.5rem;
  }

  .tablet\:h-7{
    height: 1.75rem;
  }

  .tablet\:h-8{
    height: 2rem;
  }

  .tablet\:h-9{
    height: 2.25rem;
  }

  .tablet\:h-10{
    height: 2.5rem;
  }

  .tablet\:h-11{
    height: 2.75rem;
  }

  .tablet\:h-12{
    height: 3rem;
  }

  .tablet\:h-14{
    height: 3.5rem;
  }

  .tablet\:h-16{
    height: 4rem;
  }

  .tablet\:h-20{
    height: 5rem;
  }

  .tablet\:h-24{
    height: 6rem;
  }

  .tablet\:h-28{
    height: 7rem;
  }

  .tablet\:h-32{
    height: 8rem;
  }

  .tablet\:h-36{
    height: 9rem;
  }

  .tablet\:h-40{
    height: 10rem;
  }

  .tablet\:h-44{
    height: 11rem;
  }

  .tablet\:h-48{
    height: 12rem;
  }

  .tablet\:h-52{
    height: 13rem;
  }

  .tablet\:h-56{
    height: 14rem;
  }

  .tablet\:h-60{
    height: 15rem;
  }

  .tablet\:h-64{
    height: 16rem;
  }

  .tablet\:h-72{
    height: 18rem;
  }

  .tablet\:h-80{
    height: 20rem;
  }

  .tablet\:h-96{
    height: 24rem;
  }

  .tablet\:h-auto{
    height: auto;
  }

  .tablet\:h-px{
    height: 1px;
  }

  .tablet\:h-0\.5{
    height: 0.125rem;
  }

  .tablet\:h-1\.5{
    height: 0.375rem;
  }

  .tablet\:h-2\.5{
    height: 0.625rem;
  }

  .tablet\:h-3\.5{
    height: 0.875rem;
  }

  .tablet\:h-1\/2{
    height: 50%;
  }

  .tablet\:h-1\/3{
    height: 33.333333%;
  }

  .tablet\:h-2\/3{
    height: 66.666667%;
  }

  .tablet\:h-1\/4{
    height: 25%;
  }

  .tablet\:h-2\/4{
    height: 50%;
  }

  .tablet\:h-3\/4{
    height: 75%;
  }

  .tablet\:h-1\/5{
    height: 20%;
  }

  .tablet\:h-2\/5{
    height: 40%;
  }

  .tablet\:h-3\/5{
    height: 60%;
  }

  .tablet\:h-4\/5{
    height: 80%;
  }

  .tablet\:h-1\/6{
    height: 16.666667%;
  }

  .tablet\:h-2\/6{
    height: 33.333333%;
  }

  .tablet\:h-3\/6{
    height: 50%;
  }

  .tablet\:h-4\/6{
    height: 66.666667%;
  }

  .tablet\:h-5\/6{
    height: 83.333333%;
  }

  .tablet\:h-full{
    height: 100%;
  }

  .tablet\:h-screen{
    height: 100vh;
  }

  .tablet\:max-h-0{
    max-height: 0;
  }

  .tablet\:max-h-1{
    max-height: 0.25rem;
  }

  .tablet\:max-h-2{
    max-height: 0.5rem;
  }

  .tablet\:max-h-3{
    max-height: 0.75rem;
  }

  .tablet\:max-h-4{
    max-height: 1rem;
  }

  .tablet\:max-h-5{
    max-height: 1.25rem;
  }

  .tablet\:max-h-6{
    max-height: 1.5rem;
  }

  .tablet\:max-h-7{
    max-height: 1.75rem;
  }

  .tablet\:max-h-8{
    max-height: 2rem;
  }

  .tablet\:max-h-9{
    max-height: 2.25rem;
  }

  .tablet\:max-h-10{
    max-height: 2.5rem;
  }

  .tablet\:max-h-11{
    max-height: 2.75rem;
  }

  .tablet\:max-h-12{
    max-height: 3rem;
  }

  .tablet\:max-h-14{
    max-height: 3.5rem;
  }

  .tablet\:max-h-16{
    max-height: 4rem;
  }

  .tablet\:max-h-20{
    max-height: 5rem;
  }

  .tablet\:max-h-24{
    max-height: 6rem;
  }

  .tablet\:max-h-28{
    max-height: 7rem;
  }

  .tablet\:max-h-32{
    max-height: 8rem;
  }

  .tablet\:max-h-36{
    max-height: 9rem;
  }

  .tablet\:max-h-40{
    max-height: 10rem;
  }

  .tablet\:max-h-44{
    max-height: 11rem;
  }

  .tablet\:max-h-48{
    max-height: 12rem;
  }

  .tablet\:max-h-52{
    max-height: 13rem;
  }

  .tablet\:max-h-56{
    max-height: 14rem;
  }

  .tablet\:max-h-60{
    max-height: 15rem;
  }

  .tablet\:max-h-64{
    max-height: 16rem;
  }

  .tablet\:max-h-72{
    max-height: 18rem;
  }

  .tablet\:max-h-80{
    max-height: 20rem;
  }

  .tablet\:max-h-96{
    max-height: 24rem;
  }

  .tablet\:max-h-px{
    max-height: 1px;
  }

  .tablet\:max-h-0\.5{
    max-height: 0.125rem;
  }

  .tablet\:max-h-1\.5{
    max-height: 0.375rem;
  }

  .tablet\:max-h-2\.5{
    max-height: 0.625rem;
  }

  .tablet\:max-h-3\.5{
    max-height: 0.875rem;
  }

  .tablet\:max-h-full{
    max-height: 100%;
  }

  .tablet\:max-h-screen{
    max-height: 100vh;
  }

  .tablet\:min-h-0{
    min-height: 0px;
  }

  .tablet\:min-h-full{
    min-height: 100%;
  }

  .tablet\:min-h-screen{
    min-height: 100vh;
  }

  .tablet\:w-0{
    width: 0px;
  }

  .tablet\:w-1{
    width: 0.25rem;
  }

  .tablet\:w-2{
    width: 0.5rem;
  }

  .tablet\:w-3{
    width: 0.75rem;
  }

  .tablet\:w-4{
    width: 1rem;
  }

  .tablet\:w-5{
    width: 1.25rem;
  }

  .tablet\:w-6{
    width: 1.5rem;
  }

  .tablet\:w-7{
    width: 1.75rem;
  }

  .tablet\:w-8{
    width: 2rem;
  }

  .tablet\:w-9{
    width: 2.25rem;
  }

  .tablet\:w-10{
    width: 2.5rem;
  }

  .tablet\:w-11{
    width: 2.75rem;
  }

  .tablet\:w-12{
    width: 3rem;
  }

  .tablet\:w-14{
    width: 3.5rem;
  }

  .tablet\:w-16{
    width: 4rem;
  }

  .tablet\:w-20{
    width: 5rem;
  }

  .tablet\:w-24{
    width: 6rem;
  }

  .tablet\:w-28{
    width: 7rem;
  }

  .tablet\:w-32{
    width: 8rem;
  }

  .tablet\:w-36{
    width: 9rem;
  }

  .tablet\:w-40{
    width: 10rem;
  }

  .tablet\:w-44{
    width: 11rem;
  }

  .tablet\:w-48{
    width: 12rem;
  }

  .tablet\:w-52{
    width: 13rem;
  }

  .tablet\:w-56{
    width: 14rem;
  }

  .tablet\:w-60{
    width: 15rem;
  }

  .tablet\:w-64{
    width: 16rem;
  }

  .tablet\:w-72{
    width: 18rem;
  }

  .tablet\:w-80{
    width: 20rem;
  }

  .tablet\:w-96{
    width: 24rem;
  }

  .tablet\:w-auto{
    width: auto;
  }

  .tablet\:w-px{
    width: 1px;
  }

  .tablet\:w-0\.5{
    width: 0.125rem;
  }

  .tablet\:w-1\.5{
    width: 0.375rem;
  }

  .tablet\:w-2\.5{
    width: 0.625rem;
  }

  .tablet\:w-3\.5{
    width: 0.875rem;
  }

  .tablet\:w-1\/2{
    width: 50%;
  }

  .tablet\:w-1\/3{
    width: 33.333333%;
  }

  .tablet\:w-2\/3{
    width: 66.666667%;
  }

  .tablet\:w-1\/4{
    width: 25%;
  }

  .tablet\:w-2\/4{
    width: 50%;
  }

  .tablet\:w-3\/4{
    width: 75%;
  }

  .tablet\:w-1\/5{
    width: 20%;
  }

  .tablet\:w-2\/5{
    width: 40%;
  }

  .tablet\:w-3\/5{
    width: 60%;
  }

  .tablet\:w-4\/5{
    width: 80%;
  }

  .tablet\:w-1\/6{
    width: 16.666667%;
  }

  .tablet\:w-2\/6{
    width: 33.333333%;
  }

  .tablet\:w-3\/6{
    width: 50%;
  }

  .tablet\:w-4\/6{
    width: 66.666667%;
  }

  .tablet\:w-5\/6{
    width: 83.333333%;
  }

  .tablet\:w-1\/12{
    width: 8.333333%;
  }

  .tablet\:w-2\/12{
    width: 16.666667%;
  }

  .tablet\:w-3\/12{
    width: 25%;
  }

  .tablet\:w-4\/12{
    width: 33.333333%;
  }

  .tablet\:w-5\/12{
    width: 41.666667%;
  }

  .tablet\:w-6\/12{
    width: 50%;
  }

  .tablet\:w-7\/12{
    width: 58.333333%;
  }

  .tablet\:w-8\/12{
    width: 66.666667%;
  }

  .tablet\:w-9\/12{
    width: 75%;
  }

  .tablet\:w-10\/12{
    width: 83.333333%;
  }

  .tablet\:w-11\/12{
    width: 91.666667%;
  }

  .tablet\:w-full{
    width: 100%;
  }

  .tablet\:w-screen{
    width: 100vw;
  }

  .tablet\:w-min{
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }

  .tablet\:w-max{
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .tablet\:min-w-0{
    min-width: 0px;
  }

  .tablet\:min-w-full{
    min-width: 100%;
  }

  .tablet\:min-w-min{
    min-width: -webkit-min-content;
    min-width: -moz-min-content;
    min-width: min-content;
  }

  .tablet\:min-w-max{
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }

  .tablet\:max-w-0{
    max-width: 0rem;
  }

  .tablet\:max-w-none{
    max-width: none;
  }

  .tablet\:max-w-xs{
    max-width: 20rem;
  }

  .tablet\:max-w-sm{
    max-width: 24rem;
  }

  .tablet\:max-w-md{
    max-width: 28rem;
  }

  .tablet\:max-w-lg{
    max-width: 32rem;
  }

  .tablet\:max-w-xl{
    max-width: 36rem;
  }

  .tablet\:max-w-2xl{
    max-width: 42rem;
  }

  .tablet\:max-w-3xl{
    max-width: 48rem;
  }

  .tablet\:max-w-4xl{
    max-width: 56rem;
  }

  .tablet\:max-w-5xl{
    max-width: 64rem;
  }

  .tablet\:max-w-6xl{
    max-width: 72rem;
  }

  .tablet\:max-w-7xl{
    max-width: 80rem;
  }

  .tablet\:max-w-full{
    max-width: 100%;
  }

  .tablet\:max-w-min{
    max-width: -webkit-min-content;
    max-width: -moz-min-content;
    max-width: min-content;
  }

  .tablet\:max-w-max{
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }

  .tablet\:max-w-prose{
    max-width: 65ch;
  }

  .tablet\:max-w-1\/4{
    max-width: 25%;
  }

  .tablet\:max-w-3\/10{
    max-width: 30%;
  }

  .tablet\:max-w-1\/2{
    max-width: 50%;
  }

  .tablet\:flex-1{
    flex: 1 1 0%;
  }

  .tablet\:flex-auto{
    flex: 1 1 auto;
  }

  .tablet\:flex-initial{
    flex: 0 1 auto;
  }

  .tablet\:flex-none{
    flex: none;
  }

  .tablet\:flex-shrink-0{
    flex-shrink: 0;
  }

  .tablet\:flex-shrink{
    flex-shrink: 1;
  }

  .tablet\:flex-grow-0{
    flex-grow: 0;
  }

  .tablet\:flex-grow{
    flex-grow: 1;
  }

  .tablet\:table-auto{
    table-layout: auto;
  }

  .tablet\:table-fixed{
    table-layout: fixed;
  }

  .tablet\:border-collapse{
    border-collapse: collapse;
  }

  .tablet\:border-separate{
    border-collapse: separate;
  }

  .tablet\:origin-center{
    transform-origin: center;
  }

  .tablet\:origin-top{
    transform-origin: top;
  }

  .tablet\:origin-top-right{
    transform-origin: top right;
  }

  .tablet\:origin-right{
    transform-origin: right;
  }

  .tablet\:origin-bottom-right{
    transform-origin: bottom right;
  }

  .tablet\:origin-bottom{
    transform-origin: bottom;
  }

  .tablet\:origin-bottom-left{
    transform-origin: bottom left;
  }

  .tablet\:origin-left{
    transform-origin: left;
  }

  .tablet\:origin-top-left{
    transform-origin: top left;
  }

  .tablet\:transform{
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .tablet\:transform-gpu{
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .tablet\:transform-none{
    transform: none;
  }

  .tablet\:translate-x-0{
    --tw-translate-x: 0px;
  }

  .tablet\:translate-x-1{
    --tw-translate-x: 0.25rem;
  }

  .tablet\:translate-x-2{
    --tw-translate-x: 0.5rem;
  }

  .tablet\:translate-x-3{
    --tw-translate-x: 0.75rem;
  }

  .tablet\:translate-x-4{
    --tw-translate-x: 1rem;
  }

  .tablet\:translate-x-5{
    --tw-translate-x: 1.25rem;
  }

  .tablet\:translate-x-6{
    --tw-translate-x: 1.5rem;
  }

  .tablet\:translate-x-7{
    --tw-translate-x: 1.75rem;
  }

  .tablet\:translate-x-8{
    --tw-translate-x: 2rem;
  }

  .tablet\:translate-x-9{
    --tw-translate-x: 2.25rem;
  }

  .tablet\:translate-x-10{
    --tw-translate-x: 2.5rem;
  }

  .tablet\:translate-x-11{
    --tw-translate-x: 2.75rem;
  }

  .tablet\:translate-x-12{
    --tw-translate-x: 3rem;
  }

  .tablet\:translate-x-14{
    --tw-translate-x: 3.5rem;
  }

  .tablet\:translate-x-16{
    --tw-translate-x: 4rem;
  }

  .tablet\:translate-x-20{
    --tw-translate-x: 5rem;
  }

  .tablet\:translate-x-24{
    --tw-translate-x: 6rem;
  }

  .tablet\:translate-x-28{
    --tw-translate-x: 7rem;
  }

  .tablet\:translate-x-32{
    --tw-translate-x: 8rem;
  }

  .tablet\:translate-x-36{
    --tw-translate-x: 9rem;
  }

  .tablet\:translate-x-40{
    --tw-translate-x: 10rem;
  }

  .tablet\:translate-x-44{
    --tw-translate-x: 11rem;
  }

  .tablet\:translate-x-48{
    --tw-translate-x: 12rem;
  }

  .tablet\:translate-x-52{
    --tw-translate-x: 13rem;
  }

  .tablet\:translate-x-56{
    --tw-translate-x: 14rem;
  }

  .tablet\:translate-x-60{
    --tw-translate-x: 15rem;
  }

  .tablet\:translate-x-64{
    --tw-translate-x: 16rem;
  }

  .tablet\:translate-x-72{
    --tw-translate-x: 18rem;
  }

  .tablet\:translate-x-80{
    --tw-translate-x: 20rem;
  }

  .tablet\:translate-x-96{
    --tw-translate-x: 24rem;
  }

  .tablet\:translate-x-px{
    --tw-translate-x: 1px;
  }

  .tablet\:translate-x-0\.5{
    --tw-translate-x: 0.125rem;
  }

  .tablet\:translate-x-1\.5{
    --tw-translate-x: 0.375rem;
  }

  .tablet\:translate-x-2\.5{
    --tw-translate-x: 0.625rem;
  }

  .tablet\:translate-x-3\.5{
    --tw-translate-x: 0.875rem;
  }

  .tablet\:-translate-x-0{
    --tw-translate-x: 0px;
  }

  .tablet\:-translate-x-1{
    --tw-translate-x: -0.25rem;
  }

  .tablet\:-translate-x-2{
    --tw-translate-x: -0.5rem;
  }

  .tablet\:-translate-x-3{
    --tw-translate-x: -0.75rem;
  }

  .tablet\:-translate-x-4{
    --tw-translate-x: -1rem;
  }

  .tablet\:-translate-x-5{
    --tw-translate-x: -1.25rem;
  }

  .tablet\:-translate-x-6{
    --tw-translate-x: -1.5rem;
  }

  .tablet\:-translate-x-7{
    --tw-translate-x: -1.75rem;
  }

  .tablet\:-translate-x-8{
    --tw-translate-x: -2rem;
  }

  .tablet\:-translate-x-9{
    --tw-translate-x: -2.25rem;
  }

  .tablet\:-translate-x-10{
    --tw-translate-x: -2.5rem;
  }

  .tablet\:-translate-x-11{
    --tw-translate-x: -2.75rem;
  }

  .tablet\:-translate-x-12{
    --tw-translate-x: -3rem;
  }

  .tablet\:-translate-x-14{
    --tw-translate-x: -3.5rem;
  }

  .tablet\:-translate-x-16{
    --tw-translate-x: -4rem;
  }

  .tablet\:-translate-x-20{
    --tw-translate-x: -5rem;
  }

  .tablet\:-translate-x-24{
    --tw-translate-x: -6rem;
  }

  .tablet\:-translate-x-28{
    --tw-translate-x: -7rem;
  }

  .tablet\:-translate-x-32{
    --tw-translate-x: -8rem;
  }

  .tablet\:-translate-x-36{
    --tw-translate-x: -9rem;
  }

  .tablet\:-translate-x-40{
    --tw-translate-x: -10rem;
  }

  .tablet\:-translate-x-44{
    --tw-translate-x: -11rem;
  }

  .tablet\:-translate-x-48{
    --tw-translate-x: -12rem;
  }

  .tablet\:-translate-x-52{
    --tw-translate-x: -13rem;
  }

  .tablet\:-translate-x-56{
    --tw-translate-x: -14rem;
  }

  .tablet\:-translate-x-60{
    --tw-translate-x: -15rem;
  }

  .tablet\:-translate-x-64{
    --tw-translate-x: -16rem;
  }

  .tablet\:-translate-x-72{
    --tw-translate-x: -18rem;
  }

  .tablet\:-translate-x-80{
    --tw-translate-x: -20rem;
  }

  .tablet\:-translate-x-96{
    --tw-translate-x: -24rem;
  }

  .tablet\:-translate-x-px{
    --tw-translate-x: -1px;
  }

  .tablet\:-translate-x-0\.5{
    --tw-translate-x: -0.125rem;
  }

  .tablet\:-translate-x-1\.5{
    --tw-translate-x: -0.375rem;
  }

  .tablet\:-translate-x-2\.5{
    --tw-translate-x: -0.625rem;
  }

  .tablet\:-translate-x-3\.5{
    --tw-translate-x: -0.875rem;
  }

  .tablet\:translate-x-1\/2{
    --tw-translate-x: 50%;
  }

  .tablet\:translate-x-1\/3{
    --tw-translate-x: 33.333333%;
  }

  .tablet\:translate-x-2\/3{
    --tw-translate-x: 66.666667%;
  }

  .tablet\:translate-x-1\/4{
    --tw-translate-x: 25%;
  }

  .tablet\:translate-x-2\/4{
    --tw-translate-x: 50%;
  }

  .tablet\:translate-x-3\/4{
    --tw-translate-x: 75%;
  }

  .tablet\:translate-x-full{
    --tw-translate-x: 100%;
  }

  .tablet\:-translate-x-1\/2{
    --tw-translate-x: -50%;
  }

  .tablet\:-translate-x-1\/3{
    --tw-translate-x: -33.333333%;
  }

  .tablet\:-translate-x-2\/3{
    --tw-translate-x: -66.666667%;
  }

  .tablet\:-translate-x-1\/4{
    --tw-translate-x: -25%;
  }

  .tablet\:-translate-x-2\/4{
    --tw-translate-x: -50%;
  }

  .tablet\:-translate-x-3\/4{
    --tw-translate-x: -75%;
  }

  .tablet\:-translate-x-full{
    --tw-translate-x: -100%;
  }

  .tablet\:translate-x-neg1\/2{
    --tw-translate-x: -50%;
  }

  .tablet\:translate-x-neg3\/4{
    --tw-translate-x: -75%;
  }

  .tablet\:translate-y-0{
    --tw-translate-y: 0px;
  }

  .tablet\:translate-y-1{
    --tw-translate-y: 0.25rem;
  }

  .tablet\:translate-y-2{
    --tw-translate-y: 0.5rem;
  }

  .tablet\:translate-y-3{
    --tw-translate-y: 0.75rem;
  }

  .tablet\:translate-y-4{
    --tw-translate-y: 1rem;
  }

  .tablet\:translate-y-5{
    --tw-translate-y: 1.25rem;
  }

  .tablet\:translate-y-6{
    --tw-translate-y: 1.5rem;
  }

  .tablet\:translate-y-7{
    --tw-translate-y: 1.75rem;
  }

  .tablet\:translate-y-8{
    --tw-translate-y: 2rem;
  }

  .tablet\:translate-y-9{
    --tw-translate-y: 2.25rem;
  }

  .tablet\:translate-y-10{
    --tw-translate-y: 2.5rem;
  }

  .tablet\:translate-y-11{
    --tw-translate-y: 2.75rem;
  }

  .tablet\:translate-y-12{
    --tw-translate-y: 3rem;
  }

  .tablet\:translate-y-14{
    --tw-translate-y: 3.5rem;
  }

  .tablet\:translate-y-16{
    --tw-translate-y: 4rem;
  }

  .tablet\:translate-y-20{
    --tw-translate-y: 5rem;
  }

  .tablet\:translate-y-24{
    --tw-translate-y: 6rem;
  }

  .tablet\:translate-y-28{
    --tw-translate-y: 7rem;
  }

  .tablet\:translate-y-32{
    --tw-translate-y: 8rem;
  }

  .tablet\:translate-y-36{
    --tw-translate-y: 9rem;
  }

  .tablet\:translate-y-40{
    --tw-translate-y: 10rem;
  }

  .tablet\:translate-y-44{
    --tw-translate-y: 11rem;
  }

  .tablet\:translate-y-48{
    --tw-translate-y: 12rem;
  }

  .tablet\:translate-y-52{
    --tw-translate-y: 13rem;
  }

  .tablet\:translate-y-56{
    --tw-translate-y: 14rem;
  }

  .tablet\:translate-y-60{
    --tw-translate-y: 15rem;
  }

  .tablet\:translate-y-64{
    --tw-translate-y: 16rem;
  }

  .tablet\:translate-y-72{
    --tw-translate-y: 18rem;
  }

  .tablet\:translate-y-80{
    --tw-translate-y: 20rem;
  }

  .tablet\:translate-y-96{
    --tw-translate-y: 24rem;
  }

  .tablet\:translate-y-px{
    --tw-translate-y: 1px;
  }

  .tablet\:translate-y-0\.5{
    --tw-translate-y: 0.125rem;
  }

  .tablet\:translate-y-1\.5{
    --tw-translate-y: 0.375rem;
  }

  .tablet\:translate-y-2\.5{
    --tw-translate-y: 0.625rem;
  }

  .tablet\:translate-y-3\.5{
    --tw-translate-y: 0.875rem;
  }

  .tablet\:-translate-y-0{
    --tw-translate-y: 0px;
  }

  .tablet\:-translate-y-1{
    --tw-translate-y: -0.25rem;
  }

  .tablet\:-translate-y-2{
    --tw-translate-y: -0.5rem;
  }

  .tablet\:-translate-y-3{
    --tw-translate-y: -0.75rem;
  }

  .tablet\:-translate-y-4{
    --tw-translate-y: -1rem;
  }

  .tablet\:-translate-y-5{
    --tw-translate-y: -1.25rem;
  }

  .tablet\:-translate-y-6{
    --tw-translate-y: -1.5rem;
  }

  .tablet\:-translate-y-7{
    --tw-translate-y: -1.75rem;
  }

  .tablet\:-translate-y-8{
    --tw-translate-y: -2rem;
  }

  .tablet\:-translate-y-9{
    --tw-translate-y: -2.25rem;
  }

  .tablet\:-translate-y-10{
    --tw-translate-y: -2.5rem;
  }

  .tablet\:-translate-y-11{
    --tw-translate-y: -2.75rem;
  }

  .tablet\:-translate-y-12{
    --tw-translate-y: -3rem;
  }

  .tablet\:-translate-y-14{
    --tw-translate-y: -3.5rem;
  }

  .tablet\:-translate-y-16{
    --tw-translate-y: -4rem;
  }

  .tablet\:-translate-y-20{
    --tw-translate-y: -5rem;
  }

  .tablet\:-translate-y-24{
    --tw-translate-y: -6rem;
  }

  .tablet\:-translate-y-28{
    --tw-translate-y: -7rem;
  }

  .tablet\:-translate-y-32{
    --tw-translate-y: -8rem;
  }

  .tablet\:-translate-y-36{
    --tw-translate-y: -9rem;
  }

  .tablet\:-translate-y-40{
    --tw-translate-y: -10rem;
  }

  .tablet\:-translate-y-44{
    --tw-translate-y: -11rem;
  }

  .tablet\:-translate-y-48{
    --tw-translate-y: -12rem;
  }

  .tablet\:-translate-y-52{
    --tw-translate-y: -13rem;
  }

  .tablet\:-translate-y-56{
    --tw-translate-y: -14rem;
  }

  .tablet\:-translate-y-60{
    --tw-translate-y: -15rem;
  }

  .tablet\:-translate-y-64{
    --tw-translate-y: -16rem;
  }

  .tablet\:-translate-y-72{
    --tw-translate-y: -18rem;
  }

  .tablet\:-translate-y-80{
    --tw-translate-y: -20rem;
  }

  .tablet\:-translate-y-96{
    --tw-translate-y: -24rem;
  }

  .tablet\:-translate-y-px{
    --tw-translate-y: -1px;
  }

  .tablet\:-translate-y-0\.5{
    --tw-translate-y: -0.125rem;
  }

  .tablet\:-translate-y-1\.5{
    --tw-translate-y: -0.375rem;
  }

  .tablet\:-translate-y-2\.5{
    --tw-translate-y: -0.625rem;
  }

  .tablet\:-translate-y-3\.5{
    --tw-translate-y: -0.875rem;
  }

  .tablet\:translate-y-1\/2{
    --tw-translate-y: 50%;
  }

  .tablet\:translate-y-1\/3{
    --tw-translate-y: 33.333333%;
  }

  .tablet\:translate-y-2\/3{
    --tw-translate-y: 66.666667%;
  }

  .tablet\:translate-y-1\/4{
    --tw-translate-y: 25%;
  }

  .tablet\:translate-y-2\/4{
    --tw-translate-y: 50%;
  }

  .tablet\:translate-y-3\/4{
    --tw-translate-y: 75%;
  }

  .tablet\:translate-y-full{
    --tw-translate-y: 100%;
  }

  .tablet\:-translate-y-1\/2{
    --tw-translate-y: -50%;
  }

  .tablet\:-translate-y-1\/3{
    --tw-translate-y: -33.333333%;
  }

  .tablet\:-translate-y-2\/3{
    --tw-translate-y: -66.666667%;
  }

  .tablet\:-translate-y-1\/4{
    --tw-translate-y: -25%;
  }

  .tablet\:-translate-y-2\/4{
    --tw-translate-y: -50%;
  }

  .tablet\:-translate-y-3\/4{
    --tw-translate-y: -75%;
  }

  .tablet\:-translate-y-full{
    --tw-translate-y: -100%;
  }

  .tablet\:translate-y-neg1\/2{
    --tw-translate-y: -50%;
  }

  .tablet\:translate-y-neg3\/4{
    --tw-translate-y: -75%;
  }

  .tablet\:hover\:translate-x-0:hover{
    --tw-translate-x: 0px;
  }

  .tablet\:hover\:translate-x-1:hover{
    --tw-translate-x: 0.25rem;
  }

  .tablet\:hover\:translate-x-2:hover{
    --tw-translate-x: 0.5rem;
  }

  .tablet\:hover\:translate-x-3:hover{
    --tw-translate-x: 0.75rem;
  }

  .tablet\:hover\:translate-x-4:hover{
    --tw-translate-x: 1rem;
  }

  .tablet\:hover\:translate-x-5:hover{
    --tw-translate-x: 1.25rem;
  }

  .tablet\:hover\:translate-x-6:hover{
    --tw-translate-x: 1.5rem;
  }

  .tablet\:hover\:translate-x-7:hover{
    --tw-translate-x: 1.75rem;
  }

  .tablet\:hover\:translate-x-8:hover{
    --tw-translate-x: 2rem;
  }

  .tablet\:hover\:translate-x-9:hover{
    --tw-translate-x: 2.25rem;
  }

  .tablet\:hover\:translate-x-10:hover{
    --tw-translate-x: 2.5rem;
  }

  .tablet\:hover\:translate-x-11:hover{
    --tw-translate-x: 2.75rem;
  }

  .tablet\:hover\:translate-x-12:hover{
    --tw-translate-x: 3rem;
  }

  .tablet\:hover\:translate-x-14:hover{
    --tw-translate-x: 3.5rem;
  }

  .tablet\:hover\:translate-x-16:hover{
    --tw-translate-x: 4rem;
  }

  .tablet\:hover\:translate-x-20:hover{
    --tw-translate-x: 5rem;
  }

  .tablet\:hover\:translate-x-24:hover{
    --tw-translate-x: 6rem;
  }

  .tablet\:hover\:translate-x-28:hover{
    --tw-translate-x: 7rem;
  }

  .tablet\:hover\:translate-x-32:hover{
    --tw-translate-x: 8rem;
  }

  .tablet\:hover\:translate-x-36:hover{
    --tw-translate-x: 9rem;
  }

  .tablet\:hover\:translate-x-40:hover{
    --tw-translate-x: 10rem;
  }

  .tablet\:hover\:translate-x-44:hover{
    --tw-translate-x: 11rem;
  }

  .tablet\:hover\:translate-x-48:hover{
    --tw-translate-x: 12rem;
  }

  .tablet\:hover\:translate-x-52:hover{
    --tw-translate-x: 13rem;
  }

  .tablet\:hover\:translate-x-56:hover{
    --tw-translate-x: 14rem;
  }

  .tablet\:hover\:translate-x-60:hover{
    --tw-translate-x: 15rem;
  }

  .tablet\:hover\:translate-x-64:hover{
    --tw-translate-x: 16rem;
  }

  .tablet\:hover\:translate-x-72:hover{
    --tw-translate-x: 18rem;
  }

  .tablet\:hover\:translate-x-80:hover{
    --tw-translate-x: 20rem;
  }

  .tablet\:hover\:translate-x-96:hover{
    --tw-translate-x: 24rem;
  }

  .tablet\:hover\:translate-x-px:hover{
    --tw-translate-x: 1px;
  }

  .tablet\:hover\:translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem;
  }

  .tablet\:hover\:translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem;
  }

  .tablet\:hover\:translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem;
  }

  .tablet\:hover\:translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem;
  }

  .tablet\:hover\:-translate-x-0:hover{
    --tw-translate-x: 0px;
  }

  .tablet\:hover\:-translate-x-1:hover{
    --tw-translate-x: -0.25rem;
  }

  .tablet\:hover\:-translate-x-2:hover{
    --tw-translate-x: -0.5rem;
  }

  .tablet\:hover\:-translate-x-3:hover{
    --tw-translate-x: -0.75rem;
  }

  .tablet\:hover\:-translate-x-4:hover{
    --tw-translate-x: -1rem;
  }

  .tablet\:hover\:-translate-x-5:hover{
    --tw-translate-x: -1.25rem;
  }

  .tablet\:hover\:-translate-x-6:hover{
    --tw-translate-x: -1.5rem;
  }

  .tablet\:hover\:-translate-x-7:hover{
    --tw-translate-x: -1.75rem;
  }

  .tablet\:hover\:-translate-x-8:hover{
    --tw-translate-x: -2rem;
  }

  .tablet\:hover\:-translate-x-9:hover{
    --tw-translate-x: -2.25rem;
  }

  .tablet\:hover\:-translate-x-10:hover{
    --tw-translate-x: -2.5rem;
  }

  .tablet\:hover\:-translate-x-11:hover{
    --tw-translate-x: -2.75rem;
  }

  .tablet\:hover\:-translate-x-12:hover{
    --tw-translate-x: -3rem;
  }

  .tablet\:hover\:-translate-x-14:hover{
    --tw-translate-x: -3.5rem;
  }

  .tablet\:hover\:-translate-x-16:hover{
    --tw-translate-x: -4rem;
  }

  .tablet\:hover\:-translate-x-20:hover{
    --tw-translate-x: -5rem;
  }

  .tablet\:hover\:-translate-x-24:hover{
    --tw-translate-x: -6rem;
  }

  .tablet\:hover\:-translate-x-28:hover{
    --tw-translate-x: -7rem;
  }

  .tablet\:hover\:-translate-x-32:hover{
    --tw-translate-x: -8rem;
  }

  .tablet\:hover\:-translate-x-36:hover{
    --tw-translate-x: -9rem;
  }

  .tablet\:hover\:-translate-x-40:hover{
    --tw-translate-x: -10rem;
  }

  .tablet\:hover\:-translate-x-44:hover{
    --tw-translate-x: -11rem;
  }

  .tablet\:hover\:-translate-x-48:hover{
    --tw-translate-x: -12rem;
  }

  .tablet\:hover\:-translate-x-52:hover{
    --tw-translate-x: -13rem;
  }

  .tablet\:hover\:-translate-x-56:hover{
    --tw-translate-x: -14rem;
  }

  .tablet\:hover\:-translate-x-60:hover{
    --tw-translate-x: -15rem;
  }

  .tablet\:hover\:-translate-x-64:hover{
    --tw-translate-x: -16rem;
  }

  .tablet\:hover\:-translate-x-72:hover{
    --tw-translate-x: -18rem;
  }

  .tablet\:hover\:-translate-x-80:hover{
    --tw-translate-x: -20rem;
  }

  .tablet\:hover\:-translate-x-96:hover{
    --tw-translate-x: -24rem;
  }

  .tablet\:hover\:-translate-x-px:hover{
    --tw-translate-x: -1px;
  }

  .tablet\:hover\:-translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem;
  }

  .tablet\:hover\:-translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem;
  }

  .tablet\:hover\:-translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem;
  }

  .tablet\:hover\:-translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem;
  }

  .tablet\:hover\:translate-x-1\/2:hover{
    --tw-translate-x: 50%;
  }

  .tablet\:hover\:translate-x-1\/3:hover{
    --tw-translate-x: 33.333333%;
  }

  .tablet\:hover\:translate-x-2\/3:hover{
    --tw-translate-x: 66.666667%;
  }

  .tablet\:hover\:translate-x-1\/4:hover{
    --tw-translate-x: 25%;
  }

  .tablet\:hover\:translate-x-2\/4:hover{
    --tw-translate-x: 50%;
  }

  .tablet\:hover\:translate-x-3\/4:hover{
    --tw-translate-x: 75%;
  }

  .tablet\:hover\:translate-x-full:hover{
    --tw-translate-x: 100%;
  }

  .tablet\:hover\:-translate-x-1\/2:hover{
    --tw-translate-x: -50%;
  }

  .tablet\:hover\:-translate-x-1\/3:hover{
    --tw-translate-x: -33.333333%;
  }

  .tablet\:hover\:-translate-x-2\/3:hover{
    --tw-translate-x: -66.666667%;
  }

  .tablet\:hover\:-translate-x-1\/4:hover{
    --tw-translate-x: -25%;
  }

  .tablet\:hover\:-translate-x-2\/4:hover{
    --tw-translate-x: -50%;
  }

  .tablet\:hover\:-translate-x-3\/4:hover{
    --tw-translate-x: -75%;
  }

  .tablet\:hover\:-translate-x-full:hover{
    --tw-translate-x: -100%;
  }

  .tablet\:hover\:translate-x-neg1\/2:hover{
    --tw-translate-x: -50%;
  }

  .tablet\:hover\:translate-x-neg3\/4:hover{
    --tw-translate-x: -75%;
  }

  .tablet\:hover\:translate-y-0:hover{
    --tw-translate-y: 0px;
  }

  .tablet\:hover\:translate-y-1:hover{
    --tw-translate-y: 0.25rem;
  }

  .tablet\:hover\:translate-y-2:hover{
    --tw-translate-y: 0.5rem;
  }

  .tablet\:hover\:translate-y-3:hover{
    --tw-translate-y: 0.75rem;
  }

  .tablet\:hover\:translate-y-4:hover{
    --tw-translate-y: 1rem;
  }

  .tablet\:hover\:translate-y-5:hover{
    --tw-translate-y: 1.25rem;
  }

  .tablet\:hover\:translate-y-6:hover{
    --tw-translate-y: 1.5rem;
  }

  .tablet\:hover\:translate-y-7:hover{
    --tw-translate-y: 1.75rem;
  }

  .tablet\:hover\:translate-y-8:hover{
    --tw-translate-y: 2rem;
  }

  .tablet\:hover\:translate-y-9:hover{
    --tw-translate-y: 2.25rem;
  }

  .tablet\:hover\:translate-y-10:hover{
    --tw-translate-y: 2.5rem;
  }

  .tablet\:hover\:translate-y-11:hover{
    --tw-translate-y: 2.75rem;
  }

  .tablet\:hover\:translate-y-12:hover{
    --tw-translate-y: 3rem;
  }

  .tablet\:hover\:translate-y-14:hover{
    --tw-translate-y: 3.5rem;
  }

  .tablet\:hover\:translate-y-16:hover{
    --tw-translate-y: 4rem;
  }

  .tablet\:hover\:translate-y-20:hover{
    --tw-translate-y: 5rem;
  }

  .tablet\:hover\:translate-y-24:hover{
    --tw-translate-y: 6rem;
  }

  .tablet\:hover\:translate-y-28:hover{
    --tw-translate-y: 7rem;
  }

  .tablet\:hover\:translate-y-32:hover{
    --tw-translate-y: 8rem;
  }

  .tablet\:hover\:translate-y-36:hover{
    --tw-translate-y: 9rem;
  }

  .tablet\:hover\:translate-y-40:hover{
    --tw-translate-y: 10rem;
  }

  .tablet\:hover\:translate-y-44:hover{
    --tw-translate-y: 11rem;
  }

  .tablet\:hover\:translate-y-48:hover{
    --tw-translate-y: 12rem;
  }

  .tablet\:hover\:translate-y-52:hover{
    --tw-translate-y: 13rem;
  }

  .tablet\:hover\:translate-y-56:hover{
    --tw-translate-y: 14rem;
  }

  .tablet\:hover\:translate-y-60:hover{
    --tw-translate-y: 15rem;
  }

  .tablet\:hover\:translate-y-64:hover{
    --tw-translate-y: 16rem;
  }

  .tablet\:hover\:translate-y-72:hover{
    --tw-translate-y: 18rem;
  }

  .tablet\:hover\:translate-y-80:hover{
    --tw-translate-y: 20rem;
  }

  .tablet\:hover\:translate-y-96:hover{
    --tw-translate-y: 24rem;
  }

  .tablet\:hover\:translate-y-px:hover{
    --tw-translate-y: 1px;
  }

  .tablet\:hover\:translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem;
  }

  .tablet\:hover\:translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem;
  }

  .tablet\:hover\:translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem;
  }

  .tablet\:hover\:translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem;
  }

  .tablet\:hover\:-translate-y-0:hover{
    --tw-translate-y: 0px;
  }

  .tablet\:hover\:-translate-y-1:hover{
    --tw-translate-y: -0.25rem;
  }

  .tablet\:hover\:-translate-y-2:hover{
    --tw-translate-y: -0.5rem;
  }

  .tablet\:hover\:-translate-y-3:hover{
    --tw-translate-y: -0.75rem;
  }

  .tablet\:hover\:-translate-y-4:hover{
    --tw-translate-y: -1rem;
  }

  .tablet\:hover\:-translate-y-5:hover{
    --tw-translate-y: -1.25rem;
  }

  .tablet\:hover\:-translate-y-6:hover{
    --tw-translate-y: -1.5rem;
  }

  .tablet\:hover\:-translate-y-7:hover{
    --tw-translate-y: -1.75rem;
  }

  .tablet\:hover\:-translate-y-8:hover{
    --tw-translate-y: -2rem;
  }

  .tablet\:hover\:-translate-y-9:hover{
    --tw-translate-y: -2.25rem;
  }

  .tablet\:hover\:-translate-y-10:hover{
    --tw-translate-y: -2.5rem;
  }

  .tablet\:hover\:-translate-y-11:hover{
    --tw-translate-y: -2.75rem;
  }

  .tablet\:hover\:-translate-y-12:hover{
    --tw-translate-y: -3rem;
  }

  .tablet\:hover\:-translate-y-14:hover{
    --tw-translate-y: -3.5rem;
  }

  .tablet\:hover\:-translate-y-16:hover{
    --tw-translate-y: -4rem;
  }

  .tablet\:hover\:-translate-y-20:hover{
    --tw-translate-y: -5rem;
  }

  .tablet\:hover\:-translate-y-24:hover{
    --tw-translate-y: -6rem;
  }

  .tablet\:hover\:-translate-y-28:hover{
    --tw-translate-y: -7rem;
  }

  .tablet\:hover\:-translate-y-32:hover{
    --tw-translate-y: -8rem;
  }

  .tablet\:hover\:-translate-y-36:hover{
    --tw-translate-y: -9rem;
  }

  .tablet\:hover\:-translate-y-40:hover{
    --tw-translate-y: -10rem;
  }

  .tablet\:hover\:-translate-y-44:hover{
    --tw-translate-y: -11rem;
  }

  .tablet\:hover\:-translate-y-48:hover{
    --tw-translate-y: -12rem;
  }

  .tablet\:hover\:-translate-y-52:hover{
    --tw-translate-y: -13rem;
  }

  .tablet\:hover\:-translate-y-56:hover{
    --tw-translate-y: -14rem;
  }

  .tablet\:hover\:-translate-y-60:hover{
    --tw-translate-y: -15rem;
  }

  .tablet\:hover\:-translate-y-64:hover{
    --tw-translate-y: -16rem;
  }

  .tablet\:hover\:-translate-y-72:hover{
    --tw-translate-y: -18rem;
  }

  .tablet\:hover\:-translate-y-80:hover{
    --tw-translate-y: -20rem;
  }

  .tablet\:hover\:-translate-y-96:hover{
    --tw-translate-y: -24rem;
  }

  .tablet\:hover\:-translate-y-px:hover{
    --tw-translate-y: -1px;
  }

  .tablet\:hover\:-translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem;
  }

  .tablet\:hover\:-translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem;
  }

  .tablet\:hover\:-translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem;
  }

  .tablet\:hover\:-translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem;
  }

  .tablet\:hover\:translate-y-1\/2:hover{
    --tw-translate-y: 50%;
  }

  .tablet\:hover\:translate-y-1\/3:hover{
    --tw-translate-y: 33.333333%;
  }

  .tablet\:hover\:translate-y-2\/3:hover{
    --tw-translate-y: 66.666667%;
  }

  .tablet\:hover\:translate-y-1\/4:hover{
    --tw-translate-y: 25%;
  }

  .tablet\:hover\:translate-y-2\/4:hover{
    --tw-translate-y: 50%;
  }

  .tablet\:hover\:translate-y-3\/4:hover{
    --tw-translate-y: 75%;
  }

  .tablet\:hover\:translate-y-full:hover{
    --tw-translate-y: 100%;
  }

  .tablet\:hover\:-translate-y-1\/2:hover{
    --tw-translate-y: -50%;
  }

  .tablet\:hover\:-translate-y-1\/3:hover{
    --tw-translate-y: -33.333333%;
  }

  .tablet\:hover\:-translate-y-2\/3:hover{
    --tw-translate-y: -66.666667%;
  }

  .tablet\:hover\:-translate-y-1\/4:hover{
    --tw-translate-y: -25%;
  }

  .tablet\:hover\:-translate-y-2\/4:hover{
    --tw-translate-y: -50%;
  }

  .tablet\:hover\:-translate-y-3\/4:hover{
    --tw-translate-y: -75%;
  }

  .tablet\:hover\:-translate-y-full:hover{
    --tw-translate-y: -100%;
  }

  .tablet\:hover\:translate-y-neg1\/2:hover{
    --tw-translate-y: -50%;
  }

  .tablet\:hover\:translate-y-neg3\/4:hover{
    --tw-translate-y: -75%;
  }

  .tablet\:focus\:translate-x-0:focus{
    --tw-translate-x: 0px;
  }

  .tablet\:focus\:translate-x-1:focus{
    --tw-translate-x: 0.25rem;
  }

  .tablet\:focus\:translate-x-2:focus{
    --tw-translate-x: 0.5rem;
  }

  .tablet\:focus\:translate-x-3:focus{
    --tw-translate-x: 0.75rem;
  }

  .tablet\:focus\:translate-x-4:focus{
    --tw-translate-x: 1rem;
  }

  .tablet\:focus\:translate-x-5:focus{
    --tw-translate-x: 1.25rem;
  }

  .tablet\:focus\:translate-x-6:focus{
    --tw-translate-x: 1.5rem;
  }

  .tablet\:focus\:translate-x-7:focus{
    --tw-translate-x: 1.75rem;
  }

  .tablet\:focus\:translate-x-8:focus{
    --tw-translate-x: 2rem;
  }

  .tablet\:focus\:translate-x-9:focus{
    --tw-translate-x: 2.25rem;
  }

  .tablet\:focus\:translate-x-10:focus{
    --tw-translate-x: 2.5rem;
  }

  .tablet\:focus\:translate-x-11:focus{
    --tw-translate-x: 2.75rem;
  }

  .tablet\:focus\:translate-x-12:focus{
    --tw-translate-x: 3rem;
  }

  .tablet\:focus\:translate-x-14:focus{
    --tw-translate-x: 3.5rem;
  }

  .tablet\:focus\:translate-x-16:focus{
    --tw-translate-x: 4rem;
  }

  .tablet\:focus\:translate-x-20:focus{
    --tw-translate-x: 5rem;
  }

  .tablet\:focus\:translate-x-24:focus{
    --tw-translate-x: 6rem;
  }

  .tablet\:focus\:translate-x-28:focus{
    --tw-translate-x: 7rem;
  }

  .tablet\:focus\:translate-x-32:focus{
    --tw-translate-x: 8rem;
  }

  .tablet\:focus\:translate-x-36:focus{
    --tw-translate-x: 9rem;
  }

  .tablet\:focus\:translate-x-40:focus{
    --tw-translate-x: 10rem;
  }

  .tablet\:focus\:translate-x-44:focus{
    --tw-translate-x: 11rem;
  }

  .tablet\:focus\:translate-x-48:focus{
    --tw-translate-x: 12rem;
  }

  .tablet\:focus\:translate-x-52:focus{
    --tw-translate-x: 13rem;
  }

  .tablet\:focus\:translate-x-56:focus{
    --tw-translate-x: 14rem;
  }

  .tablet\:focus\:translate-x-60:focus{
    --tw-translate-x: 15rem;
  }

  .tablet\:focus\:translate-x-64:focus{
    --tw-translate-x: 16rem;
  }

  .tablet\:focus\:translate-x-72:focus{
    --tw-translate-x: 18rem;
  }

  .tablet\:focus\:translate-x-80:focus{
    --tw-translate-x: 20rem;
  }

  .tablet\:focus\:translate-x-96:focus{
    --tw-translate-x: 24rem;
  }

  .tablet\:focus\:translate-x-px:focus{
    --tw-translate-x: 1px;
  }

  .tablet\:focus\:translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem;
  }

  .tablet\:focus\:translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem;
  }

  .tablet\:focus\:translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem;
  }

  .tablet\:focus\:translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem;
  }

  .tablet\:focus\:-translate-x-0:focus{
    --tw-translate-x: 0px;
  }

  .tablet\:focus\:-translate-x-1:focus{
    --tw-translate-x: -0.25rem;
  }

  .tablet\:focus\:-translate-x-2:focus{
    --tw-translate-x: -0.5rem;
  }

  .tablet\:focus\:-translate-x-3:focus{
    --tw-translate-x: -0.75rem;
  }

  .tablet\:focus\:-translate-x-4:focus{
    --tw-translate-x: -1rem;
  }

  .tablet\:focus\:-translate-x-5:focus{
    --tw-translate-x: -1.25rem;
  }

  .tablet\:focus\:-translate-x-6:focus{
    --tw-translate-x: -1.5rem;
  }

  .tablet\:focus\:-translate-x-7:focus{
    --tw-translate-x: -1.75rem;
  }

  .tablet\:focus\:-translate-x-8:focus{
    --tw-translate-x: -2rem;
  }

  .tablet\:focus\:-translate-x-9:focus{
    --tw-translate-x: -2.25rem;
  }

  .tablet\:focus\:-translate-x-10:focus{
    --tw-translate-x: -2.5rem;
  }

  .tablet\:focus\:-translate-x-11:focus{
    --tw-translate-x: -2.75rem;
  }

  .tablet\:focus\:-translate-x-12:focus{
    --tw-translate-x: -3rem;
  }

  .tablet\:focus\:-translate-x-14:focus{
    --tw-translate-x: -3.5rem;
  }

  .tablet\:focus\:-translate-x-16:focus{
    --tw-translate-x: -4rem;
  }

  .tablet\:focus\:-translate-x-20:focus{
    --tw-translate-x: -5rem;
  }

  .tablet\:focus\:-translate-x-24:focus{
    --tw-translate-x: -6rem;
  }

  .tablet\:focus\:-translate-x-28:focus{
    --tw-translate-x: -7rem;
  }

  .tablet\:focus\:-translate-x-32:focus{
    --tw-translate-x: -8rem;
  }

  .tablet\:focus\:-translate-x-36:focus{
    --tw-translate-x: -9rem;
  }

  .tablet\:focus\:-translate-x-40:focus{
    --tw-translate-x: -10rem;
  }

  .tablet\:focus\:-translate-x-44:focus{
    --tw-translate-x: -11rem;
  }

  .tablet\:focus\:-translate-x-48:focus{
    --tw-translate-x: -12rem;
  }

  .tablet\:focus\:-translate-x-52:focus{
    --tw-translate-x: -13rem;
  }

  .tablet\:focus\:-translate-x-56:focus{
    --tw-translate-x: -14rem;
  }

  .tablet\:focus\:-translate-x-60:focus{
    --tw-translate-x: -15rem;
  }

  .tablet\:focus\:-translate-x-64:focus{
    --tw-translate-x: -16rem;
  }

  .tablet\:focus\:-translate-x-72:focus{
    --tw-translate-x: -18rem;
  }

  .tablet\:focus\:-translate-x-80:focus{
    --tw-translate-x: -20rem;
  }

  .tablet\:focus\:-translate-x-96:focus{
    --tw-translate-x: -24rem;
  }

  .tablet\:focus\:-translate-x-px:focus{
    --tw-translate-x: -1px;
  }

  .tablet\:focus\:-translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem;
  }

  .tablet\:focus\:-translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem;
  }

  .tablet\:focus\:-translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem;
  }

  .tablet\:focus\:-translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem;
  }

  .tablet\:focus\:translate-x-1\/2:focus{
    --tw-translate-x: 50%;
  }

  .tablet\:focus\:translate-x-1\/3:focus{
    --tw-translate-x: 33.333333%;
  }

  .tablet\:focus\:translate-x-2\/3:focus{
    --tw-translate-x: 66.666667%;
  }

  .tablet\:focus\:translate-x-1\/4:focus{
    --tw-translate-x: 25%;
  }

  .tablet\:focus\:translate-x-2\/4:focus{
    --tw-translate-x: 50%;
  }

  .tablet\:focus\:translate-x-3\/4:focus{
    --tw-translate-x: 75%;
  }

  .tablet\:focus\:translate-x-full:focus{
    --tw-translate-x: 100%;
  }

  .tablet\:focus\:-translate-x-1\/2:focus{
    --tw-translate-x: -50%;
  }

  .tablet\:focus\:-translate-x-1\/3:focus{
    --tw-translate-x: -33.333333%;
  }

  .tablet\:focus\:-translate-x-2\/3:focus{
    --tw-translate-x: -66.666667%;
  }

  .tablet\:focus\:-translate-x-1\/4:focus{
    --tw-translate-x: -25%;
  }

  .tablet\:focus\:-translate-x-2\/4:focus{
    --tw-translate-x: -50%;
  }

  .tablet\:focus\:-translate-x-3\/4:focus{
    --tw-translate-x: -75%;
  }

  .tablet\:focus\:-translate-x-full:focus{
    --tw-translate-x: -100%;
  }

  .tablet\:focus\:translate-x-neg1\/2:focus{
    --tw-translate-x: -50%;
  }

  .tablet\:focus\:translate-x-neg3\/4:focus{
    --tw-translate-x: -75%;
  }

  .tablet\:focus\:translate-y-0:focus{
    --tw-translate-y: 0px;
  }

  .tablet\:focus\:translate-y-1:focus{
    --tw-translate-y: 0.25rem;
  }

  .tablet\:focus\:translate-y-2:focus{
    --tw-translate-y: 0.5rem;
  }

  .tablet\:focus\:translate-y-3:focus{
    --tw-translate-y: 0.75rem;
  }

  .tablet\:focus\:translate-y-4:focus{
    --tw-translate-y: 1rem;
  }

  .tablet\:focus\:translate-y-5:focus{
    --tw-translate-y: 1.25rem;
  }

  .tablet\:focus\:translate-y-6:focus{
    --tw-translate-y: 1.5rem;
  }

  .tablet\:focus\:translate-y-7:focus{
    --tw-translate-y: 1.75rem;
  }

  .tablet\:focus\:translate-y-8:focus{
    --tw-translate-y: 2rem;
  }

  .tablet\:focus\:translate-y-9:focus{
    --tw-translate-y: 2.25rem;
  }

  .tablet\:focus\:translate-y-10:focus{
    --tw-translate-y: 2.5rem;
  }

  .tablet\:focus\:translate-y-11:focus{
    --tw-translate-y: 2.75rem;
  }

  .tablet\:focus\:translate-y-12:focus{
    --tw-translate-y: 3rem;
  }

  .tablet\:focus\:translate-y-14:focus{
    --tw-translate-y: 3.5rem;
  }

  .tablet\:focus\:translate-y-16:focus{
    --tw-translate-y: 4rem;
  }

  .tablet\:focus\:translate-y-20:focus{
    --tw-translate-y: 5rem;
  }

  .tablet\:focus\:translate-y-24:focus{
    --tw-translate-y: 6rem;
  }

  .tablet\:focus\:translate-y-28:focus{
    --tw-translate-y: 7rem;
  }

  .tablet\:focus\:translate-y-32:focus{
    --tw-translate-y: 8rem;
  }

  .tablet\:focus\:translate-y-36:focus{
    --tw-translate-y: 9rem;
  }

  .tablet\:focus\:translate-y-40:focus{
    --tw-translate-y: 10rem;
  }

  .tablet\:focus\:translate-y-44:focus{
    --tw-translate-y: 11rem;
  }

  .tablet\:focus\:translate-y-48:focus{
    --tw-translate-y: 12rem;
  }

  .tablet\:focus\:translate-y-52:focus{
    --tw-translate-y: 13rem;
  }

  .tablet\:focus\:translate-y-56:focus{
    --tw-translate-y: 14rem;
  }

  .tablet\:focus\:translate-y-60:focus{
    --tw-translate-y: 15rem;
  }

  .tablet\:focus\:translate-y-64:focus{
    --tw-translate-y: 16rem;
  }

  .tablet\:focus\:translate-y-72:focus{
    --tw-translate-y: 18rem;
  }

  .tablet\:focus\:translate-y-80:focus{
    --tw-translate-y: 20rem;
  }

  .tablet\:focus\:translate-y-96:focus{
    --tw-translate-y: 24rem;
  }

  .tablet\:focus\:translate-y-px:focus{
    --tw-translate-y: 1px;
  }

  .tablet\:focus\:translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem;
  }

  .tablet\:focus\:translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem;
  }

  .tablet\:focus\:translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem;
  }

  .tablet\:focus\:translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem;
  }

  .tablet\:focus\:-translate-y-0:focus{
    --tw-translate-y: 0px;
  }

  .tablet\:focus\:-translate-y-1:focus{
    --tw-translate-y: -0.25rem;
  }

  .tablet\:focus\:-translate-y-2:focus{
    --tw-translate-y: -0.5rem;
  }

  .tablet\:focus\:-translate-y-3:focus{
    --tw-translate-y: -0.75rem;
  }

  .tablet\:focus\:-translate-y-4:focus{
    --tw-translate-y: -1rem;
  }

  .tablet\:focus\:-translate-y-5:focus{
    --tw-translate-y: -1.25rem;
  }

  .tablet\:focus\:-translate-y-6:focus{
    --tw-translate-y: -1.5rem;
  }

  .tablet\:focus\:-translate-y-7:focus{
    --tw-translate-y: -1.75rem;
  }

  .tablet\:focus\:-translate-y-8:focus{
    --tw-translate-y: -2rem;
  }

  .tablet\:focus\:-translate-y-9:focus{
    --tw-translate-y: -2.25rem;
  }

  .tablet\:focus\:-translate-y-10:focus{
    --tw-translate-y: -2.5rem;
  }

  .tablet\:focus\:-translate-y-11:focus{
    --tw-translate-y: -2.75rem;
  }

  .tablet\:focus\:-translate-y-12:focus{
    --tw-translate-y: -3rem;
  }

  .tablet\:focus\:-translate-y-14:focus{
    --tw-translate-y: -3.5rem;
  }

  .tablet\:focus\:-translate-y-16:focus{
    --tw-translate-y: -4rem;
  }

  .tablet\:focus\:-translate-y-20:focus{
    --tw-translate-y: -5rem;
  }

  .tablet\:focus\:-translate-y-24:focus{
    --tw-translate-y: -6rem;
  }

  .tablet\:focus\:-translate-y-28:focus{
    --tw-translate-y: -7rem;
  }

  .tablet\:focus\:-translate-y-32:focus{
    --tw-translate-y: -8rem;
  }

  .tablet\:focus\:-translate-y-36:focus{
    --tw-translate-y: -9rem;
  }

  .tablet\:focus\:-translate-y-40:focus{
    --tw-translate-y: -10rem;
  }

  .tablet\:focus\:-translate-y-44:focus{
    --tw-translate-y: -11rem;
  }

  .tablet\:focus\:-translate-y-48:focus{
    --tw-translate-y: -12rem;
  }

  .tablet\:focus\:-translate-y-52:focus{
    --tw-translate-y: -13rem;
  }

  .tablet\:focus\:-translate-y-56:focus{
    --tw-translate-y: -14rem;
  }

  .tablet\:focus\:-translate-y-60:focus{
    --tw-translate-y: -15rem;
  }

  .tablet\:focus\:-translate-y-64:focus{
    --tw-translate-y: -16rem;
  }

  .tablet\:focus\:-translate-y-72:focus{
    --tw-translate-y: -18rem;
  }

  .tablet\:focus\:-translate-y-80:focus{
    --tw-translate-y: -20rem;
  }

  .tablet\:focus\:-translate-y-96:focus{
    --tw-translate-y: -24rem;
  }

  .tablet\:focus\:-translate-y-px:focus{
    --tw-translate-y: -1px;
  }

  .tablet\:focus\:-translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem;
  }

  .tablet\:focus\:-translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem;
  }

  .tablet\:focus\:-translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem;
  }

  .tablet\:focus\:-translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem;
  }

  .tablet\:focus\:translate-y-1\/2:focus{
    --tw-translate-y: 50%;
  }

  .tablet\:focus\:translate-y-1\/3:focus{
    --tw-translate-y: 33.333333%;
  }

  .tablet\:focus\:translate-y-2\/3:focus{
    --tw-translate-y: 66.666667%;
  }

  .tablet\:focus\:translate-y-1\/4:focus{
    --tw-translate-y: 25%;
  }

  .tablet\:focus\:translate-y-2\/4:focus{
    --tw-translate-y: 50%;
  }

  .tablet\:focus\:translate-y-3\/4:focus{
    --tw-translate-y: 75%;
  }

  .tablet\:focus\:translate-y-full:focus{
    --tw-translate-y: 100%;
  }

  .tablet\:focus\:-translate-y-1\/2:focus{
    --tw-translate-y: -50%;
  }

  .tablet\:focus\:-translate-y-1\/3:focus{
    --tw-translate-y: -33.333333%;
  }

  .tablet\:focus\:-translate-y-2\/3:focus{
    --tw-translate-y: -66.666667%;
  }

  .tablet\:focus\:-translate-y-1\/4:focus{
    --tw-translate-y: -25%;
  }

  .tablet\:focus\:-translate-y-2\/4:focus{
    --tw-translate-y: -50%;
  }

  .tablet\:focus\:-translate-y-3\/4:focus{
    --tw-translate-y: -75%;
  }

  .tablet\:focus\:-translate-y-full:focus{
    --tw-translate-y: -100%;
  }

  .tablet\:focus\:translate-y-neg1\/2:focus{
    --tw-translate-y: -50%;
  }

  .tablet\:focus\:translate-y-neg3\/4:focus{
    --tw-translate-y: -75%;
  }

  .tablet\:rotate-0{
    --tw-rotate: 0deg;
  }

  .tablet\:rotate-1{
    --tw-rotate: 1deg;
  }

  .tablet\:rotate-2{
    --tw-rotate: 2deg;
  }

  .tablet\:rotate-3{
    --tw-rotate: 3deg;
  }

  .tablet\:rotate-6{
    --tw-rotate: 6deg;
  }

  .tablet\:rotate-12{
    --tw-rotate: 12deg;
  }

  .tablet\:rotate-45{
    --tw-rotate: 45deg;
  }

  .tablet\:rotate-90{
    --tw-rotate: 90deg;
  }

  .tablet\:rotate-180{
    --tw-rotate: 180deg;
  }

  .tablet\:-rotate-180{
    --tw-rotate: -180deg;
  }

  .tablet\:-rotate-90{
    --tw-rotate: -90deg;
  }

  .tablet\:-rotate-45{
    --tw-rotate: -45deg;
  }

  .tablet\:-rotate-12{
    --tw-rotate: -12deg;
  }

  .tablet\:-rotate-6{
    --tw-rotate: -6deg;
  }

  .tablet\:-rotate-3{
    --tw-rotate: -3deg;
  }

  .tablet\:-rotate-2{
    --tw-rotate: -2deg;
  }

  .tablet\:-rotate-1{
    --tw-rotate: -1deg;
  }

  .tablet\:hover\:rotate-0:hover{
    --tw-rotate: 0deg;
  }

  .tablet\:hover\:rotate-1:hover{
    --tw-rotate: 1deg;
  }

  .tablet\:hover\:rotate-2:hover{
    --tw-rotate: 2deg;
  }

  .tablet\:hover\:rotate-3:hover{
    --tw-rotate: 3deg;
  }

  .tablet\:hover\:rotate-6:hover{
    --tw-rotate: 6deg;
  }

  .tablet\:hover\:rotate-12:hover{
    --tw-rotate: 12deg;
  }

  .tablet\:hover\:rotate-45:hover{
    --tw-rotate: 45deg;
  }

  .tablet\:hover\:rotate-90:hover{
    --tw-rotate: 90deg;
  }

  .tablet\:hover\:rotate-180:hover{
    --tw-rotate: 180deg;
  }

  .tablet\:hover\:-rotate-180:hover{
    --tw-rotate: -180deg;
  }

  .tablet\:hover\:-rotate-90:hover{
    --tw-rotate: -90deg;
  }

  .tablet\:hover\:-rotate-45:hover{
    --tw-rotate: -45deg;
  }

  .tablet\:hover\:-rotate-12:hover{
    --tw-rotate: -12deg;
  }

  .tablet\:hover\:-rotate-6:hover{
    --tw-rotate: -6deg;
  }

  .tablet\:hover\:-rotate-3:hover{
    --tw-rotate: -3deg;
  }

  .tablet\:hover\:-rotate-2:hover{
    --tw-rotate: -2deg;
  }

  .tablet\:hover\:-rotate-1:hover{
    --tw-rotate: -1deg;
  }

  .tablet\:focus\:rotate-0:focus{
    --tw-rotate: 0deg;
  }

  .tablet\:focus\:rotate-1:focus{
    --tw-rotate: 1deg;
  }

  .tablet\:focus\:rotate-2:focus{
    --tw-rotate: 2deg;
  }

  .tablet\:focus\:rotate-3:focus{
    --tw-rotate: 3deg;
  }

  .tablet\:focus\:rotate-6:focus{
    --tw-rotate: 6deg;
  }

  .tablet\:focus\:rotate-12:focus{
    --tw-rotate: 12deg;
  }

  .tablet\:focus\:rotate-45:focus{
    --tw-rotate: 45deg;
  }

  .tablet\:focus\:rotate-90:focus{
    --tw-rotate: 90deg;
  }

  .tablet\:focus\:rotate-180:focus{
    --tw-rotate: 180deg;
  }

  .tablet\:focus\:-rotate-180:focus{
    --tw-rotate: -180deg;
  }

  .tablet\:focus\:-rotate-90:focus{
    --tw-rotate: -90deg;
  }

  .tablet\:focus\:-rotate-45:focus{
    --tw-rotate: -45deg;
  }

  .tablet\:focus\:-rotate-12:focus{
    --tw-rotate: -12deg;
  }

  .tablet\:focus\:-rotate-6:focus{
    --tw-rotate: -6deg;
  }

  .tablet\:focus\:-rotate-3:focus{
    --tw-rotate: -3deg;
  }

  .tablet\:focus\:-rotate-2:focus{
    --tw-rotate: -2deg;
  }

  .tablet\:focus\:-rotate-1:focus{
    --tw-rotate: -1deg;
  }

  .tablet\:skew-x-0{
    --tw-skew-x: 0deg;
  }

  .tablet\:skew-x-1{
    --tw-skew-x: 1deg;
  }

  .tablet\:skew-x-2{
    --tw-skew-x: 2deg;
  }

  .tablet\:skew-x-3{
    --tw-skew-x: 3deg;
  }

  .tablet\:skew-x-6{
    --tw-skew-x: 6deg;
  }

  .tablet\:skew-x-12{
    --tw-skew-x: 12deg;
  }

  .tablet\:-skew-x-12{
    --tw-skew-x: -12deg;
  }

  .tablet\:-skew-x-6{
    --tw-skew-x: -6deg;
  }

  .tablet\:-skew-x-3{
    --tw-skew-x: -3deg;
  }

  .tablet\:-skew-x-2{
    --tw-skew-x: -2deg;
  }

  .tablet\:-skew-x-1{
    --tw-skew-x: -1deg;
  }

  .tablet\:skew-y-0{
    --tw-skew-y: 0deg;
  }

  .tablet\:skew-y-1{
    --tw-skew-y: 1deg;
  }

  .tablet\:skew-y-2{
    --tw-skew-y: 2deg;
  }

  .tablet\:skew-y-3{
    --tw-skew-y: 3deg;
  }

  .tablet\:skew-y-6{
    --tw-skew-y: 6deg;
  }

  .tablet\:skew-y-12{
    --tw-skew-y: 12deg;
  }

  .tablet\:-skew-y-12{
    --tw-skew-y: -12deg;
  }

  .tablet\:-skew-y-6{
    --tw-skew-y: -6deg;
  }

  .tablet\:-skew-y-3{
    --tw-skew-y: -3deg;
  }

  .tablet\:-skew-y-2{
    --tw-skew-y: -2deg;
  }

  .tablet\:-skew-y-1{
    --tw-skew-y: -1deg;
  }

  .tablet\:hover\:skew-x-0:hover{
    --tw-skew-x: 0deg;
  }

  .tablet\:hover\:skew-x-1:hover{
    --tw-skew-x: 1deg;
  }

  .tablet\:hover\:skew-x-2:hover{
    --tw-skew-x: 2deg;
  }

  .tablet\:hover\:skew-x-3:hover{
    --tw-skew-x: 3deg;
  }

  .tablet\:hover\:skew-x-6:hover{
    --tw-skew-x: 6deg;
  }

  .tablet\:hover\:skew-x-12:hover{
    --tw-skew-x: 12deg;
  }

  .tablet\:hover\:-skew-x-12:hover{
    --tw-skew-x: -12deg;
  }

  .tablet\:hover\:-skew-x-6:hover{
    --tw-skew-x: -6deg;
  }

  .tablet\:hover\:-skew-x-3:hover{
    --tw-skew-x: -3deg;
  }

  .tablet\:hover\:-skew-x-2:hover{
    --tw-skew-x: -2deg;
  }

  .tablet\:hover\:-skew-x-1:hover{
    --tw-skew-x: -1deg;
  }

  .tablet\:hover\:skew-y-0:hover{
    --tw-skew-y: 0deg;
  }

  .tablet\:hover\:skew-y-1:hover{
    --tw-skew-y: 1deg;
  }

  .tablet\:hover\:skew-y-2:hover{
    --tw-skew-y: 2deg;
  }

  .tablet\:hover\:skew-y-3:hover{
    --tw-skew-y: 3deg;
  }

  .tablet\:hover\:skew-y-6:hover{
    --tw-skew-y: 6deg;
  }

  .tablet\:hover\:skew-y-12:hover{
    --tw-skew-y: 12deg;
  }

  .tablet\:hover\:-skew-y-12:hover{
    --tw-skew-y: -12deg;
  }

  .tablet\:hover\:-skew-y-6:hover{
    --tw-skew-y: -6deg;
  }

  .tablet\:hover\:-skew-y-3:hover{
    --tw-skew-y: -3deg;
  }

  .tablet\:hover\:-skew-y-2:hover{
    --tw-skew-y: -2deg;
  }

  .tablet\:hover\:-skew-y-1:hover{
    --tw-skew-y: -1deg;
  }

  .tablet\:focus\:skew-x-0:focus{
    --tw-skew-x: 0deg;
  }

  .tablet\:focus\:skew-x-1:focus{
    --tw-skew-x: 1deg;
  }

  .tablet\:focus\:skew-x-2:focus{
    --tw-skew-x: 2deg;
  }

  .tablet\:focus\:skew-x-3:focus{
    --tw-skew-x: 3deg;
  }

  .tablet\:focus\:skew-x-6:focus{
    --tw-skew-x: 6deg;
  }

  .tablet\:focus\:skew-x-12:focus{
    --tw-skew-x: 12deg;
  }

  .tablet\:focus\:-skew-x-12:focus{
    --tw-skew-x: -12deg;
  }

  .tablet\:focus\:-skew-x-6:focus{
    --tw-skew-x: -6deg;
  }

  .tablet\:focus\:-skew-x-3:focus{
    --tw-skew-x: -3deg;
  }

  .tablet\:focus\:-skew-x-2:focus{
    --tw-skew-x: -2deg;
  }

  .tablet\:focus\:-skew-x-1:focus{
    --tw-skew-x: -1deg;
  }

  .tablet\:focus\:skew-y-0:focus{
    --tw-skew-y: 0deg;
  }

  .tablet\:focus\:skew-y-1:focus{
    --tw-skew-y: 1deg;
  }

  .tablet\:focus\:skew-y-2:focus{
    --tw-skew-y: 2deg;
  }

  .tablet\:focus\:skew-y-3:focus{
    --tw-skew-y: 3deg;
  }

  .tablet\:focus\:skew-y-6:focus{
    --tw-skew-y: 6deg;
  }

  .tablet\:focus\:skew-y-12:focus{
    --tw-skew-y: 12deg;
  }

  .tablet\:focus\:-skew-y-12:focus{
    --tw-skew-y: -12deg;
  }

  .tablet\:focus\:-skew-y-6:focus{
    --tw-skew-y: -6deg;
  }

  .tablet\:focus\:-skew-y-3:focus{
    --tw-skew-y: -3deg;
  }

  .tablet\:focus\:-skew-y-2:focus{
    --tw-skew-y: -2deg;
  }

  .tablet\:focus\:-skew-y-1:focus{
    --tw-skew-y: -1deg;
  }

  .tablet\:scale-0{
    --tw-scale-x: 0;
    --tw-scale-y: 0;
  }

  .tablet\:scale-50{
    --tw-scale-x: .5;
    --tw-scale-y: .5;
  }

  .tablet\:scale-75{
    --tw-scale-x: .75;
    --tw-scale-y: .75;
  }

  .tablet\:scale-90{
    --tw-scale-x: .9;
    --tw-scale-y: .9;
  }

  .tablet\:scale-95{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
  }

  .tablet\:scale-100{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
  }

  .tablet\:scale-105{
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
  }

  .tablet\:scale-110{
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
  }

  .tablet\:scale-125{
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
  }

  .tablet\:scale-150{
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
  }

  .tablet\:hover\:scale-0:hover{
    --tw-scale-x: 0;
    --tw-scale-y: 0;
  }

  .tablet\:hover\:scale-50:hover{
    --tw-scale-x: .5;
    --tw-scale-y: .5;
  }

  .tablet\:hover\:scale-75:hover{
    --tw-scale-x: .75;
    --tw-scale-y: .75;
  }

  .tablet\:hover\:scale-90:hover{
    --tw-scale-x: .9;
    --tw-scale-y: .9;
  }

  .tablet\:hover\:scale-95:hover{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
  }

  .tablet\:hover\:scale-100:hover{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
  }

  .tablet\:hover\:scale-105:hover{
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
  }

  .tablet\:hover\:scale-110:hover{
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
  }

  .tablet\:hover\:scale-125:hover{
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
  }

  .tablet\:hover\:scale-150:hover{
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
  }

  .tablet\:focus\:scale-0:focus{
    --tw-scale-x: 0;
    --tw-scale-y: 0;
  }

  .tablet\:focus\:scale-50:focus{
    --tw-scale-x: .5;
    --tw-scale-y: .5;
  }

  .tablet\:focus\:scale-75:focus{
    --tw-scale-x: .75;
    --tw-scale-y: .75;
  }

  .tablet\:focus\:scale-90:focus{
    --tw-scale-x: .9;
    --tw-scale-y: .9;
  }

  .tablet\:focus\:scale-95:focus{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
  }

  .tablet\:focus\:scale-100:focus{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
  }

  .tablet\:focus\:scale-105:focus{
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
  }

  .tablet\:focus\:scale-110:focus{
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
  }

  .tablet\:focus\:scale-125:focus{
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
  }

  .tablet\:focus\:scale-150:focus{
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
  }

  .tablet\:scale-x-0{
    --tw-scale-x: 0;
  }

  .tablet\:scale-x-50{
    --tw-scale-x: .5;
  }

  .tablet\:scale-x-75{
    --tw-scale-x: .75;
  }

  .tablet\:scale-x-90{
    --tw-scale-x: .9;
  }

  .tablet\:scale-x-95{
    --tw-scale-x: .95;
  }

  .tablet\:scale-x-100{
    --tw-scale-x: 1;
  }

  .tablet\:scale-x-105{
    --tw-scale-x: 1.05;
  }

  .tablet\:scale-x-110{
    --tw-scale-x: 1.1;
  }

  .tablet\:scale-x-125{
    --tw-scale-x: 1.25;
  }

  .tablet\:scale-x-150{
    --tw-scale-x: 1.5;
  }

  .tablet\:scale-y-0{
    --tw-scale-y: 0;
  }

  .tablet\:scale-y-50{
    --tw-scale-y: .5;
  }

  .tablet\:scale-y-75{
    --tw-scale-y: .75;
  }

  .tablet\:scale-y-90{
    --tw-scale-y: .9;
  }

  .tablet\:scale-y-95{
    --tw-scale-y: .95;
  }

  .tablet\:scale-y-100{
    --tw-scale-y: 1;
  }

  .tablet\:scale-y-105{
    --tw-scale-y: 1.05;
  }

  .tablet\:scale-y-110{
    --tw-scale-y: 1.1;
  }

  .tablet\:scale-y-125{
    --tw-scale-y: 1.25;
  }

  .tablet\:scale-y-150{
    --tw-scale-y: 1.5;
  }

  .tablet\:hover\:scale-x-0:hover{
    --tw-scale-x: 0;
  }

  .tablet\:hover\:scale-x-50:hover{
    --tw-scale-x: .5;
  }

  .tablet\:hover\:scale-x-75:hover{
    --tw-scale-x: .75;
  }

  .tablet\:hover\:scale-x-90:hover{
    --tw-scale-x: .9;
  }

  .tablet\:hover\:scale-x-95:hover{
    --tw-scale-x: .95;
  }

  .tablet\:hover\:scale-x-100:hover{
    --tw-scale-x: 1;
  }

  .tablet\:hover\:scale-x-105:hover{
    --tw-scale-x: 1.05;
  }

  .tablet\:hover\:scale-x-110:hover{
    --tw-scale-x: 1.1;
  }

  .tablet\:hover\:scale-x-125:hover{
    --tw-scale-x: 1.25;
  }

  .tablet\:hover\:scale-x-150:hover{
    --tw-scale-x: 1.5;
  }

  .tablet\:hover\:scale-y-0:hover{
    --tw-scale-y: 0;
  }

  .tablet\:hover\:scale-y-50:hover{
    --tw-scale-y: .5;
  }

  .tablet\:hover\:scale-y-75:hover{
    --tw-scale-y: .75;
  }

  .tablet\:hover\:scale-y-90:hover{
    --tw-scale-y: .9;
  }

  .tablet\:hover\:scale-y-95:hover{
    --tw-scale-y: .95;
  }

  .tablet\:hover\:scale-y-100:hover{
    --tw-scale-y: 1;
  }

  .tablet\:hover\:scale-y-105:hover{
    --tw-scale-y: 1.05;
  }

  .tablet\:hover\:scale-y-110:hover{
    --tw-scale-y: 1.1;
  }

  .tablet\:hover\:scale-y-125:hover{
    --tw-scale-y: 1.25;
  }

  .tablet\:hover\:scale-y-150:hover{
    --tw-scale-y: 1.5;
  }

  .tablet\:focus\:scale-x-0:focus{
    --tw-scale-x: 0;
  }

  .tablet\:focus\:scale-x-50:focus{
    --tw-scale-x: .5;
  }

  .tablet\:focus\:scale-x-75:focus{
    --tw-scale-x: .75;
  }

  .tablet\:focus\:scale-x-90:focus{
    --tw-scale-x: .9;
  }

  .tablet\:focus\:scale-x-95:focus{
    --tw-scale-x: .95;
  }

  .tablet\:focus\:scale-x-100:focus{
    --tw-scale-x: 1;
  }

  .tablet\:focus\:scale-x-105:focus{
    --tw-scale-x: 1.05;
  }

  .tablet\:focus\:scale-x-110:focus{
    --tw-scale-x: 1.1;
  }

  .tablet\:focus\:scale-x-125:focus{
    --tw-scale-x: 1.25;
  }

  .tablet\:focus\:scale-x-150:focus{
    --tw-scale-x: 1.5;
  }

  .tablet\:focus\:scale-y-0:focus{
    --tw-scale-y: 0;
  }

  .tablet\:focus\:scale-y-50:focus{
    --tw-scale-y: .5;
  }

  .tablet\:focus\:scale-y-75:focus{
    --tw-scale-y: .75;
  }

  .tablet\:focus\:scale-y-90:focus{
    --tw-scale-y: .9;
  }

  .tablet\:focus\:scale-y-95:focus{
    --tw-scale-y: .95;
  }

  .tablet\:focus\:scale-y-100:focus{
    --tw-scale-y: 1;
  }

  .tablet\:focus\:scale-y-105:focus{
    --tw-scale-y: 1.05;
  }

  .tablet\:focus\:scale-y-110:focus{
    --tw-scale-y: 1.1;
  }

  .tablet\:focus\:scale-y-125:focus{
    --tw-scale-y: 1.25;
  }

  .tablet\:focus\:scale-y-150:focus{
    --tw-scale-y: 1.5;
  }

  .tablet\:animate-none{
    -webkit-animation: none;
            animation: none;
  }

  .tablet\:animate-spin{
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
  }

  .tablet\:animate-ping{
    -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  }

  .tablet\:animate-pulse{
    -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .tablet\:animate-bounce{
    -webkit-animation: bounce 1s infinite;
            animation: bounce 1s infinite;
  }

  .tablet\:cursor-auto{
    cursor: auto;
  }

  .tablet\:cursor-default{
    cursor: default;
  }

  .tablet\:cursor-pointer{
    cursor: pointer;
  }

  .tablet\:cursor-wait{
    cursor: wait;
  }

  .tablet\:cursor-text{
    cursor: text;
  }

  .tablet\:cursor-move{
    cursor: move;
  }

  .tablet\:cursor-help{
    cursor: help;
  }

  .tablet\:cursor-not-allowed{
    cursor: not-allowed;
  }

  .tablet\:select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .tablet\:select-text{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .tablet\:select-all{
    -webkit-user-select: all;
       -moz-user-select: all;
            user-select: all;
  }

  .tablet\:select-auto{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .tablet\:resize-none{
    resize: none;
  }

  .tablet\:resize-y{
    resize: vertical;
  }

  .tablet\:resize-x{
    resize: horizontal;
  }

  .tablet\:resize{
    resize: both;
  }

  .tablet\:list-inside{
    list-style-position: inside;
  }

  .tablet\:list-outside{
    list-style-position: outside;
  }

  .tablet\:list-none{
    list-style-type: none;
  }

  .tablet\:list-disc{
    list-style-type: disc;
  }

  .tablet\:list-decimal{
    list-style-type: decimal;
  }

  .tablet\:appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .tablet\:auto-cols-auto{
    grid-auto-columns: auto;
  }

  .tablet\:auto-cols-min{
    grid-auto-columns: -webkit-min-content;
    grid-auto-columns: min-content;
  }

  .tablet\:auto-cols-max{
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
  }

  .tablet\:auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr);
  }

  .tablet\:grid-flow-row{
    grid-auto-flow: row;
  }

  .tablet\:grid-flow-col{
    grid-auto-flow: column;
  }

  .tablet\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }

  .tablet\:grid-flow-col-dense{
    grid-auto-flow: column dense;
  }

  .tablet\:auto-rows-auto{
    grid-auto-rows: auto;
  }

  .tablet\:auto-rows-min{
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
  }

  .tablet\:auto-rows-max{
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
  }

  .tablet\:auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr);
  }

  .tablet\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .tablet\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tablet\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tablet\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tablet\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .tablet\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .tablet\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .tablet\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .tablet\:grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .tablet\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .tablet\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .tablet\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .tablet\:grid-cols-none{
    grid-template-columns: none;
  }

  .tablet\:grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .tablet\:grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .tablet\:grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .tablet\:grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .tablet\:grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .tablet\:grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .tablet\:grid-rows-none{
    grid-template-rows: none;
  }

  .tablet\:flex-row{
    flex-direction: row;
  }

  .tablet\:flex-row-reverse{
    flex-direction: row-reverse;
  }

  .tablet\:flex-col{
    flex-direction: column;
  }

  .tablet\:flex-col-reverse{
    flex-direction: column-reverse;
  }

  .tablet\:flex-wrap{
    flex-wrap: wrap;
  }

  .tablet\:flex-wrap-reverse{
    flex-wrap: wrap-reverse;
  }

  .tablet\:flex-nowrap{
    flex-wrap: nowrap;
  }

  .tablet\:place-content-center{
    place-content: center;
  }

  .tablet\:place-content-start{
    place-content: start;
  }

  .tablet\:place-content-end{
    place-content: end;
  }

  .tablet\:place-content-between{
    place-content: space-between;
  }

  .tablet\:place-content-around{
    place-content: space-around;
  }

  .tablet\:place-content-evenly{
    place-content: space-evenly;
  }

  .tablet\:place-content-stretch{
    place-content: stretch;
  }

  .tablet\:place-items-start{
    place-items: start;
  }

  .tablet\:place-items-end{
    place-items: end;
  }

  .tablet\:place-items-center{
    place-items: center;
  }

  .tablet\:place-items-stretch{
    place-items: stretch;
  }

  .tablet\:content-center{
    align-content: center;
  }

  .tablet\:content-start{
    align-content: flex-start;
  }

  .tablet\:content-end{
    align-content: flex-end;
  }

  .tablet\:content-between{
    align-content: space-between;
  }

  .tablet\:content-around{
    align-content: space-around;
  }

  .tablet\:content-evenly{
    align-content: space-evenly;
  }

  .tablet\:items-start{
    align-items: flex-start;
  }

  .tablet\:items-end{
    align-items: flex-end;
  }

  .tablet\:items-center{
    align-items: center;
  }

  .tablet\:items-baseline{
    align-items: baseline;
  }

  .tablet\:items-stretch{
    align-items: stretch;
  }

  .tablet\:justify-start{
    justify-content: flex-start;
  }

  .tablet\:justify-end{
    justify-content: flex-end;
  }

  .tablet\:justify-center{
    justify-content: center;
  }

  .tablet\:justify-between{
    justify-content: space-between;
  }

  .tablet\:justify-around{
    justify-content: space-around;
  }

  .tablet\:justify-evenly{
    justify-content: space-evenly;
  }

  .tablet\:justify-items-start{
    justify-items: start;
  }

  .tablet\:justify-items-end{
    justify-items: end;
  }

  .tablet\:justify-items-center{
    justify-items: center;
  }

  .tablet\:justify-items-stretch{
    justify-items: stretch;
  }

  .tablet\:gap-0{
    gap: 0px;
  }

  .tablet\:gap-1{
    gap: 0.25rem;
  }

  .tablet\:gap-2{
    gap: 0.5rem;
  }

  .tablet\:gap-3{
    gap: 0.75rem;
  }

  .tablet\:gap-4{
    gap: 1rem;
  }

  .tablet\:gap-5{
    gap: 1.25rem;
  }

  .tablet\:gap-6{
    gap: 1.5rem;
  }

  .tablet\:gap-7{
    gap: 1.75rem;
  }

  .tablet\:gap-8{
    gap: 2rem;
  }

  .tablet\:gap-9{
    gap: 2.25rem;
  }

  .tablet\:gap-10{
    gap: 2.5rem;
  }

  .tablet\:gap-11{
    gap: 2.75rem;
  }

  .tablet\:gap-12{
    gap: 3rem;
  }

  .tablet\:gap-14{
    gap: 3.5rem;
  }

  .tablet\:gap-16{
    gap: 4rem;
  }

  .tablet\:gap-20{
    gap: 5rem;
  }

  .tablet\:gap-24{
    gap: 6rem;
  }

  .tablet\:gap-28{
    gap: 7rem;
  }

  .tablet\:gap-32{
    gap: 8rem;
  }

  .tablet\:gap-36{
    gap: 9rem;
  }

  .tablet\:gap-40{
    gap: 10rem;
  }

  .tablet\:gap-44{
    gap: 11rem;
  }

  .tablet\:gap-48{
    gap: 12rem;
  }

  .tablet\:gap-52{
    gap: 13rem;
  }

  .tablet\:gap-56{
    gap: 14rem;
  }

  .tablet\:gap-60{
    gap: 15rem;
  }

  .tablet\:gap-64{
    gap: 16rem;
  }

  .tablet\:gap-72{
    gap: 18rem;
  }

  .tablet\:gap-80{
    gap: 20rem;
  }

  .tablet\:gap-96{
    gap: 24rem;
  }

  .tablet\:gap-px{
    gap: 1px;
  }

  .tablet\:gap-0\.5{
    gap: 0.125rem;
  }

  .tablet\:gap-1\.5{
    gap: 0.375rem;
  }

  .tablet\:gap-2\.5{
    gap: 0.625rem;
  }

  .tablet\:gap-3\.5{
    gap: 0.875rem;
  }

  .tablet\:gap-x-0{
    -moz-column-gap: 0px;
         column-gap: 0px;
  }

  .tablet\:gap-x-1{
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .tablet\:gap-x-2{
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .tablet\:gap-x-3{
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .tablet\:gap-x-4{
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .tablet\:gap-x-5{
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .tablet\:gap-x-6{
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .tablet\:gap-x-7{
    -moz-column-gap: 1.75rem;
         column-gap: 1.75rem;
  }

  .tablet\:gap-x-8{
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .tablet\:gap-x-9{
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }

  .tablet\:gap-x-10{
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .tablet\:gap-x-11{
    -moz-column-gap: 2.75rem;
         column-gap: 2.75rem;
  }

  .tablet\:gap-x-12{
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .tablet\:gap-x-14{
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .tablet\:gap-x-16{
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .tablet\:gap-x-20{
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .tablet\:gap-x-24{
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .tablet\:gap-x-28{
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }

  .tablet\:gap-x-32{
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .tablet\:gap-x-36{
    -moz-column-gap: 9rem;
         column-gap: 9rem;
  }

  .tablet\:gap-x-40{
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .tablet\:gap-x-44{
    -moz-column-gap: 11rem;
         column-gap: 11rem;
  }

  .tablet\:gap-x-48{
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .tablet\:gap-x-52{
    -moz-column-gap: 13rem;
         column-gap: 13rem;
  }

  .tablet\:gap-x-56{
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .tablet\:gap-x-60{
    -moz-column-gap: 15rem;
         column-gap: 15rem;
  }

  .tablet\:gap-x-64{
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .tablet\:gap-x-72{
    -moz-column-gap: 18rem;
         column-gap: 18rem;
  }

  .tablet\:gap-x-80{
    -moz-column-gap: 20rem;
         column-gap: 20rem;
  }

  .tablet\:gap-x-96{
    -moz-column-gap: 24rem;
         column-gap: 24rem;
  }

  .tablet\:gap-x-px{
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .tablet\:gap-x-0\.5{
    -moz-column-gap: 0.125rem;
         column-gap: 0.125rem;
  }

  .tablet\:gap-x-1\.5{
    -moz-column-gap: 0.375rem;
         column-gap: 0.375rem;
  }

  .tablet\:gap-x-2\.5{
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }

  .tablet\:gap-x-3\.5{
    -moz-column-gap: 0.875rem;
         column-gap: 0.875rem;
  }

  .tablet\:gap-y-0{
    row-gap: 0px;
  }

  .tablet\:gap-y-1{
    row-gap: 0.25rem;
  }

  .tablet\:gap-y-2{
    row-gap: 0.5rem;
  }

  .tablet\:gap-y-3{
    row-gap: 0.75rem;
  }

  .tablet\:gap-y-4{
    row-gap: 1rem;
  }

  .tablet\:gap-y-5{
    row-gap: 1.25rem;
  }

  .tablet\:gap-y-6{
    row-gap: 1.5rem;
  }

  .tablet\:gap-y-7{
    row-gap: 1.75rem;
  }

  .tablet\:gap-y-8{
    row-gap: 2rem;
  }

  .tablet\:gap-y-9{
    row-gap: 2.25rem;
  }

  .tablet\:gap-y-10{
    row-gap: 2.5rem;
  }

  .tablet\:gap-y-11{
    row-gap: 2.75rem;
  }

  .tablet\:gap-y-12{
    row-gap: 3rem;
  }

  .tablet\:gap-y-14{
    row-gap: 3.5rem;
  }

  .tablet\:gap-y-16{
    row-gap: 4rem;
  }

  .tablet\:gap-y-20{
    row-gap: 5rem;
  }

  .tablet\:gap-y-24{
    row-gap: 6rem;
  }

  .tablet\:gap-y-28{
    row-gap: 7rem;
  }

  .tablet\:gap-y-32{
    row-gap: 8rem;
  }

  .tablet\:gap-y-36{
    row-gap: 9rem;
  }

  .tablet\:gap-y-40{
    row-gap: 10rem;
  }

  .tablet\:gap-y-44{
    row-gap: 11rem;
  }

  .tablet\:gap-y-48{
    row-gap: 12rem;
  }

  .tablet\:gap-y-52{
    row-gap: 13rem;
  }

  .tablet\:gap-y-56{
    row-gap: 14rem;
  }

  .tablet\:gap-y-60{
    row-gap: 15rem;
  }

  .tablet\:gap-y-64{
    row-gap: 16rem;
  }

  .tablet\:gap-y-72{
    row-gap: 18rem;
  }

  .tablet\:gap-y-80{
    row-gap: 20rem;
  }

  .tablet\:gap-y-96{
    row-gap: 24rem;
  }

  .tablet\:gap-y-px{
    row-gap: 1px;
  }

  .tablet\:gap-y-0\.5{
    row-gap: 0.125rem;
  }

  .tablet\:gap-y-1\.5{
    row-gap: 0.375rem;
  }

  .tablet\:gap-y-2\.5{
    row-gap: 0.625rem;
  }

  .tablet\:gap-y-3\.5{
    row-gap: 0.875rem;
  }

  .tablet\:space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0px * var(--tw-space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.75rem * var(--tw-space-x-reverse));
    margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2.25rem * var(--tw-space-x-reverse));
    margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2.75rem * var(--tw-space-x-reverse));
    margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(3rem * var(--tw-space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--tw-space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(4rem * var(--tw-space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(5rem * var(--tw-space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(6rem * var(--tw-space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(7rem * var(--tw-space-x-reverse));
    margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(8rem * var(--tw-space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(9rem * var(--tw-space-x-reverse));
    margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(10rem * var(--tw-space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(11rem * var(--tw-space-x-reverse));
    margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(12rem * var(--tw-space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(13rem * var(--tw-space-x-reverse));
    margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(14rem * var(--tw-space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(15rem * var(--tw-space-x-reverse));
    margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(16rem * var(--tw-space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(18rem * var(--tw-space-x-reverse));
    margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(20rem * var(--tw-space-x-reverse));
    margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(24rem * var(--tw-space-x-reverse));
    margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1px * var(--tw-space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.125rem * var(--tw-space-x-reverse));
    margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse));
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse));
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.875rem * var(--tw-space-x-reverse));
    margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0px * var(--tw-space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1rem * var(--tw-space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1.75rem * var(--tw-space-x-reverse));
    margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-2rem * var(--tw-space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-2.25rem * var(--tw-space-x-reverse));
    margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--tw-space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-2.75rem * var(--tw-space-x-reverse));
    margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-3rem * var(--tw-space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--tw-space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-4rem * var(--tw-space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-5rem * var(--tw-space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-6rem * var(--tw-space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-7rem * var(--tw-space-x-reverse));
    margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-8rem * var(--tw-space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-9rem * var(--tw-space-x-reverse));
    margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-10rem * var(--tw-space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-11rem * var(--tw-space-x-reverse));
    margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-12rem * var(--tw-space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-13rem * var(--tw-space-x-reverse));
    margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-14rem * var(--tw-space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-15rem * var(--tw-space-x-reverse));
    margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-16rem * var(--tw-space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-18rem * var(--tw-space-x-reverse));
    margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-20rem * var(--tw-space-x-reverse));
    margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-24rem * var(--tw-space-x-reverse));
    margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1px * var(--tw-space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.125rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.375rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.625rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.875rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .tablet\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.75rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2.25rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2.75rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(3rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(4rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(5rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(6rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(7rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(8rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(9rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(10rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(11rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(12rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(13rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(14rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(15rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(16rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(18rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(20rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(24rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1px * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.875rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-2rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-3rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-4rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-5rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-6rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-7rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-8rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-9rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-10rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-11rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-12rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-13rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-14rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-15rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-16rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-18rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-20rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-24rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1px * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse));
  }

  .tablet\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse));
  }

  .tablet\:space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1;
  }

  .tablet\:space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1;
  }

  .tablet\:divide-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(0px * var(--tw-divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .tablet\:divide-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(2px * var(--tw-divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .tablet\:divide-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(4px * var(--tw-divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .tablet\:divide-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(8px * var(--tw-divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .tablet\:divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .tablet\:divide-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
  }

  .tablet\:divide-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(2px * var(--tw-divide-y-reverse));
  }

  .tablet\:divide-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(4px * var(--tw-divide-y-reverse));
  }

  .tablet\:divide-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(8px * var(--tw-divide-y-reverse));
  }

  .tablet\:divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  }

  .tablet\:divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1;
  }

  .tablet\:divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1;
  }

  .tablet\:divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid;
  }

  .tablet\:divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed;
  }

  .tablet\:divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted;
  }

  .tablet\:divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double;
  }

  .tablet\:divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none;
  }

  .tablet\:divide-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent;
  }

  .tablet\:divide-current > :not([hidden]) ~ :not([hidden]){
    border-color: currentColor;
  }

  .tablet\:divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity));
  }

  .tablet\:divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity));
  }

  .tablet\:divide-gray-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-divide-opacity));
  }

  .tablet\:divide-gray-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-divide-opacity));
  }

  .tablet\:divide-gray-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-divide-opacity));
  }

  .tablet\:divide-gray-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-divide-opacity));
  }

  .tablet\:divide-gray-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-divide-opacity));
  }

  .tablet\:divide-gray-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-divide-opacity));
  }

  .tablet\:divide-gray-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-divide-opacity));
  }

  .tablet\:divide-gray-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-divide-opacity));
  }

  .tablet\:divide-gray-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-divide-opacity));
  }

  .tablet\:divide-gray-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-divide-opacity));
  }

  .tablet\:divide-red-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-divide-opacity));
  }

  .tablet\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-divide-opacity));
  }

  .tablet\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-divide-opacity));
  }

  .tablet\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-divide-opacity));
  }

  .tablet\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-divide-opacity));
  }

  .tablet\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-divide-opacity));
  }

  .tablet\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-divide-opacity));
  }

  .tablet\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-divide-opacity));
  }

  .tablet\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-divide-opacity));
  }

  .tablet\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-divide-opacity));
  }

  .tablet\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-divide-opacity));
  }

  .tablet\:divide-green-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-divide-opacity));
  }

  .tablet\:divide-blue-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-divide-opacity));
  }

  .tablet\:divide-blue-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-divide-opacity));
  }

  .tablet\:divide-blue-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-divide-opacity));
  }

  .tablet\:divide-blue-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-divide-opacity));
  }

  .tablet\:divide-blue-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-divide-opacity));
  }

  .tablet\:divide-blue-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-divide-opacity));
  }

  .tablet\:divide-blue-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-divide-opacity));
  }

  .tablet\:divide-blue-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-divide-opacity));
  }

  .tablet\:divide-blue-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-divide-opacity));
  }

  .tablet\:divide-blue-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-divide-opacity));
  }

  .tablet\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-divide-opacity));
  }

  .tablet\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-divide-opacity));
  }

  .tablet\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-divide-opacity));
  }

  .tablet\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-divide-opacity));
  }

  .tablet\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-divide-opacity));
  }

  .tablet\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-divide-opacity));
  }

  .tablet\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-divide-opacity));
  }

  .tablet\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-divide-opacity));
  }

  .tablet\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-divide-opacity));
  }

  .tablet\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-divide-opacity));
  }

  .tablet\:divide-purple-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-divide-opacity));
  }

  .tablet\:divide-purple-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-divide-opacity));
  }

  .tablet\:divide-purple-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-divide-opacity));
  }

  .tablet\:divide-purple-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-divide-opacity));
  }

  .tablet\:divide-purple-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-divide-opacity));
  }

  .tablet\:divide-purple-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-divide-opacity));
  }

  .tablet\:divide-purple-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-divide-opacity));
  }

  .tablet\:divide-purple-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-divide-opacity));
  }

  .tablet\:divide-purple-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-divide-opacity));
  }

  .tablet\:divide-purple-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-divide-opacity));
  }

  .tablet\:divide-pink-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-divide-opacity));
  }

  .tablet\:divide-pink-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-divide-opacity));
  }

  .tablet\:divide-pink-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-divide-opacity));
  }

  .tablet\:divide-pink-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-divide-opacity));
  }

  .tablet\:divide-pink-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-divide-opacity));
  }

  .tablet\:divide-pink-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-divide-opacity));
  }

  .tablet\:divide-pink-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-divide-opacity));
  }

  .tablet\:divide-pink-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-divide-opacity));
  }

  .tablet\:divide-pink-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-divide-opacity));
  }

  .tablet\:divide-pink-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-divide-opacity));
  }

  .tablet\:divide-brown-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-divide-opacity));
  }

  .tablet\:divide-brown-semi > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-divide-opacity));
  }

  .tablet\:divide-brown-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-divide-opacity));
  }

  .tablet\:divide-brown-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-divide-opacity));
  }

  .tablet\:divide-success-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-divide-opacity));
  }

  .tablet\:divide-success-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-divide-opacity));
  }

  .tablet\:divide-success-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-divide-opacity));
  }

  .tablet\:divide-error-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-divide-opacity));
  }

  .tablet\:divide-error-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-divide-opacity));
  }

  .tablet\:divide-error-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-divide-opacity));
  }

  .tablet\:divide-navigation-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-divide-opacity));
  }

  .tablet\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0;
  }

  .tablet\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05;
  }

  .tablet\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1;
  }

  .tablet\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2;
  }

  .tablet\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25;
  }

  .tablet\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3;
  }

  .tablet\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4;
  }

  .tablet\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5;
  }

  .tablet\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6;
  }

  .tablet\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7;
  }

  .tablet\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75;
  }

  .tablet\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8;
  }

  .tablet\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9;
  }

  .tablet\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95;
  }

  .tablet\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
  }

  .tablet\:place-self-auto{
    place-self: auto;
  }

  .tablet\:place-self-start{
    place-self: start;
  }

  .tablet\:place-self-end{
    place-self: end;
  }

  .tablet\:place-self-center{
    place-self: center;
  }

  .tablet\:place-self-stretch{
    place-self: stretch;
  }

  .tablet\:self-auto{
    align-self: auto;
  }

  .tablet\:self-start{
    align-self: flex-start;
  }

  .tablet\:self-end{
    align-self: flex-end;
  }

  .tablet\:self-center{
    align-self: center;
  }

  .tablet\:self-stretch{
    align-self: stretch;
  }

  .tablet\:self-baseline{
    align-self: baseline;
  }

  .tablet\:justify-self-auto{
    justify-self: auto;
  }

  .tablet\:justify-self-start{
    justify-self: start;
  }

  .tablet\:justify-self-end{
    justify-self: end;
  }

  .tablet\:justify-self-center{
    justify-self: center;
  }

  .tablet\:justify-self-stretch{
    justify-self: stretch;
  }

  .tablet\:overflow-auto{
    overflow: auto;
  }

  .tablet\:overflow-hidden{
    overflow: hidden;
  }

  .tablet\:overflow-visible{
    overflow: visible;
  }

  .tablet\:overflow-scroll{
    overflow: scroll;
  }

  .tablet\:overflow-x-auto{
    overflow-x: auto;
  }

  .tablet\:overflow-y-auto{
    overflow-y: auto;
  }

  .tablet\:overflow-x-hidden{
    overflow-x: hidden;
  }

  .tablet\:overflow-y-hidden{
    overflow-y: hidden;
  }

  .tablet\:overflow-x-visible{
    overflow-x: visible;
  }

  .tablet\:overflow-y-visible{
    overflow-y: visible;
  }

  .tablet\:overflow-x-scroll{
    overflow-x: scroll;
  }

  .tablet\:overflow-y-scroll{
    overflow-y: scroll;
  }

  .tablet\:overscroll-auto{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .tablet\:overscroll-contain{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .tablet\:overscroll-none{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .tablet\:overscroll-y-auto{
    overscroll-behavior-y: auto;
  }

  .tablet\:overscroll-y-contain{
    overscroll-behavior-y: contain;
  }

  .tablet\:overscroll-y-none{
    overscroll-behavior-y: none;
  }

  .tablet\:overscroll-x-auto{
    overscroll-behavior-x: auto;
  }

  .tablet\:overscroll-x-contain{
    overscroll-behavior-x: contain;
  }

  .tablet\:overscroll-x-none{
    overscroll-behavior-x: none;
  }

  .tablet\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tablet\:overflow-ellipsis{
    text-overflow: ellipsis;
  }

  .tablet\:overflow-clip{
    text-overflow: clip;
  }

  .tablet\:whitespace-normal{
    white-space: normal;
  }

  .tablet\:whitespace-nowrap{
    white-space: nowrap;
  }

  .tablet\:whitespace-pre{
    white-space: pre;
  }

  .tablet\:whitespace-pre-line{
    white-space: pre-line;
  }

  .tablet\:whitespace-pre-wrap{
    white-space: pre-wrap;
  }

  .tablet\:break-normal{
    overflow-wrap: normal;
    word-break: normal;
  }

  .tablet\:break-words{
    overflow-wrap: break-word;
  }

  .tablet\:break-all{
    word-break: break-all;
  }

  .tablet\:rounded-none{
    border-radius: 0px;
  }

  .tablet\:rounded-sm{
    border-radius: 0.125rem;
  }

  .tablet\:rounded{
    border-radius: 0.25rem;
  }

  .tablet\:rounded-md{
    border-radius: 0.375rem;
  }

  .tablet\:rounded-lg{
    border-radius: 0.5rem;
  }

  .tablet\:rounded-xl{
    border-radius: 0.75rem;
  }

  .tablet\:rounded-2xl{
    border-radius: 1rem;
  }

  .tablet\:rounded-3xl{
    border-radius: 1.5rem;
  }

  .tablet\:rounded-full{
    border-radius: 9999px;
  }

  .tablet\:rounded-t-none{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }

  .tablet\:rounded-t-sm{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .tablet\:rounded-t{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .tablet\:rounded-t-md{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .tablet\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .tablet\:rounded-t-xl{
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
  }

  .tablet\:rounded-t-2xl{
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .tablet\:rounded-t-3xl{
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
  }

  .tablet\:rounded-t-full{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .tablet\:rounded-r-none{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .tablet\:rounded-r-sm{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .tablet\:rounded-r{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .tablet\:rounded-r-md{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .tablet\:rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .tablet\:rounded-r-xl{
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
  }

  .tablet\:rounded-r-2xl{
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }

  .tablet\:rounded-r-3xl{
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }

  .tablet\:rounded-r-full{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .tablet\:rounded-b-none{
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .tablet\:rounded-b-sm{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .tablet\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .tablet\:rounded-b-md{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .tablet\:rounded-b-lg{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .tablet\:rounded-b-xl{
    border-bottom-right-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
  }

  .tablet\:rounded-b-2xl{
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }

  .tablet\:rounded-b-3xl{
    border-bottom-right-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
  }

  .tablet\:rounded-b-full{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .tablet\:rounded-l-none{
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .tablet\:rounded-l-sm{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .tablet\:rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .tablet\:rounded-l-md{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .tablet\:rounded-l-lg{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .tablet\:rounded-l-xl{
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
  }

  .tablet\:rounded-l-2xl{
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }

  .tablet\:rounded-l-3xl{
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
  }

  .tablet\:rounded-l-full{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .tablet\:rounded-tl-none{
    border-top-left-radius: 0px;
  }

  .tablet\:rounded-tl-sm{
    border-top-left-radius: 0.125rem;
  }

  .tablet\:rounded-tl{
    border-top-left-radius: 0.25rem;
  }

  .tablet\:rounded-tl-md{
    border-top-left-radius: 0.375rem;
  }

  .tablet\:rounded-tl-lg{
    border-top-left-radius: 0.5rem;
  }

  .tablet\:rounded-tl-xl{
    border-top-left-radius: 0.75rem;
  }

  .tablet\:rounded-tl-2xl{
    border-top-left-radius: 1rem;
  }

  .tablet\:rounded-tl-3xl{
    border-top-left-radius: 1.5rem;
  }

  .tablet\:rounded-tl-full{
    border-top-left-radius: 9999px;
  }

  .tablet\:rounded-tr-none{
    border-top-right-radius: 0px;
  }

  .tablet\:rounded-tr-sm{
    border-top-right-radius: 0.125rem;
  }

  .tablet\:rounded-tr{
    border-top-right-radius: 0.25rem;
  }

  .tablet\:rounded-tr-md{
    border-top-right-radius: 0.375rem;
  }

  .tablet\:rounded-tr-lg{
    border-top-right-radius: 0.5rem;
  }

  .tablet\:rounded-tr-xl{
    border-top-right-radius: 0.75rem;
  }

  .tablet\:rounded-tr-2xl{
    border-top-right-radius: 1rem;
  }

  .tablet\:rounded-tr-3xl{
    border-top-right-radius: 1.5rem;
  }

  .tablet\:rounded-tr-full{
    border-top-right-radius: 9999px;
  }

  .tablet\:rounded-br-none{
    border-bottom-right-radius: 0px;
  }

  .tablet\:rounded-br-sm{
    border-bottom-right-radius: 0.125rem;
  }

  .tablet\:rounded-br{
    border-bottom-right-radius: 0.25rem;
  }

  .tablet\:rounded-br-md{
    border-bottom-right-radius: 0.375rem;
  }

  .tablet\:rounded-br-lg{
    border-bottom-right-radius: 0.5rem;
  }

  .tablet\:rounded-br-xl{
    border-bottom-right-radius: 0.75rem;
  }

  .tablet\:rounded-br-2xl{
    border-bottom-right-radius: 1rem;
  }

  .tablet\:rounded-br-3xl{
    border-bottom-right-radius: 1.5rem;
  }

  .tablet\:rounded-br-full{
    border-bottom-right-radius: 9999px;
  }

  .tablet\:rounded-bl-none{
    border-bottom-left-radius: 0px;
  }

  .tablet\:rounded-bl-sm{
    border-bottom-left-radius: 0.125rem;
  }

  .tablet\:rounded-bl{
    border-bottom-left-radius: 0.25rem;
  }

  .tablet\:rounded-bl-md{
    border-bottom-left-radius: 0.375rem;
  }

  .tablet\:rounded-bl-lg{
    border-bottom-left-radius: 0.5rem;
  }

  .tablet\:rounded-bl-xl{
    border-bottom-left-radius: 0.75rem;
  }

  .tablet\:rounded-bl-2xl{
    border-bottom-left-radius: 1rem;
  }

  .tablet\:rounded-bl-3xl{
    border-bottom-left-radius: 1.5rem;
  }

  .tablet\:rounded-bl-full{
    border-bottom-left-radius: 9999px;
  }

  .tablet\:border-0{
    border-width: 0px;
  }

  .tablet\:border-2{
    border-width: 2px;
  }

  .tablet\:border-4{
    border-width: 4px;
  }

  .tablet\:border-8{
    border-width: 8px;
  }

  .tablet\:border{
    border-width: 1px;
  }

  .tablet\:border-t-0{
    border-top-width: 0px;
  }

  .tablet\:border-t-2{
    border-top-width: 2px;
  }

  .tablet\:border-t-4{
    border-top-width: 4px;
  }

  .tablet\:border-t-8{
    border-top-width: 8px;
  }

  .tablet\:border-t{
    border-top-width: 1px;
  }

  .tablet\:border-r-0{
    border-right-width: 0px;
  }

  .tablet\:border-r-2{
    border-right-width: 2px;
  }

  .tablet\:border-r-4{
    border-right-width: 4px;
  }

  .tablet\:border-r-8{
    border-right-width: 8px;
  }

  .tablet\:border-r{
    border-right-width: 1px;
  }

  .tablet\:border-b-0{
    border-bottom-width: 0px;
  }

  .tablet\:border-b-2{
    border-bottom-width: 2px;
  }

  .tablet\:border-b-4{
    border-bottom-width: 4px;
  }

  .tablet\:border-b-8{
    border-bottom-width: 8px;
  }

  .tablet\:border-b{
    border-bottom-width: 1px;
  }

  .tablet\:border-l-0{
    border-left-width: 0px;
  }

  .tablet\:border-l-2{
    border-left-width: 2px;
  }

  .tablet\:border-l-4{
    border-left-width: 4px;
  }

  .tablet\:border-l-8{
    border-left-width: 8px;
  }

  .tablet\:border-l{
    border-left-width: 1px;
  }

  .tablet\:border-solid{
    border-style: solid;
  }

  .tablet\:border-dashed{
    border-style: dashed;
  }

  .tablet\:border-dotted{
    border-style: dotted;
  }

  .tablet\:border-double{
    border-style: double;
  }

  .tablet\:border-none{
    border-style: none;
  }

  .tablet\:border-transparent{
    border-color: transparent;
  }

  .tablet\:border-current{
    border-color: currentColor;
  }

  .tablet\:border-black{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:border-white{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .tablet\:border-gray-50{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .tablet\:border-gray-100{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .tablet\:border-gray-200{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .tablet\:border-gray-300{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .tablet\:border-gray-400{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .tablet\:border-gray-500{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .tablet\:border-gray-600{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .tablet\:border-gray-700{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .tablet\:border-gray-800{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .tablet\:border-gray-900{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .tablet\:border-red-50{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .tablet\:border-red-100{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .tablet\:border-red-200{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .tablet\:border-red-300{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .tablet\:border-red-400{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .tablet\:border-red-500{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .tablet\:border-red-600{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .tablet\:border-red-700{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .tablet\:border-red-800{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .tablet\:border-red-900{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .tablet\:border-red-light{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .tablet\:border-red-default{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:border-red-dark{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:border-yellow-50{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .tablet\:border-yellow-100{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .tablet\:border-yellow-200{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .tablet\:border-yellow-300{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .tablet\:border-yellow-400{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .tablet\:border-yellow-500{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .tablet\:border-yellow-600{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .tablet\:border-yellow-700{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .tablet\:border-yellow-800{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .tablet\:border-yellow-900{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .tablet\:border-green-50{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .tablet\:border-green-100{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .tablet\:border-green-200{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .tablet\:border-green-300{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .tablet\:border-green-400{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .tablet\:border-green-500{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .tablet\:border-green-600{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .tablet\:border-green-700{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .tablet\:border-green-800{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .tablet\:border-green-900{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .tablet\:border-green-light{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .tablet\:border-green-default{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .tablet\:border-green-dark{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .tablet\:border-blue-50{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .tablet\:border-blue-100{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .tablet\:border-blue-200{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .tablet\:border-blue-300{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .tablet\:border-blue-400{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .tablet\:border-blue-500{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .tablet\:border-blue-600{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .tablet\:border-blue-700{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .tablet\:border-blue-800{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .tablet\:border-blue-900{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .tablet\:border-indigo-50{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .tablet\:border-indigo-100{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .tablet\:border-indigo-200{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .tablet\:border-indigo-300{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .tablet\:border-indigo-400{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .tablet\:border-indigo-500{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .tablet\:border-indigo-600{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .tablet\:border-indigo-700{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .tablet\:border-indigo-800{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .tablet\:border-indigo-900{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .tablet\:border-purple-50{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .tablet\:border-purple-100{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .tablet\:border-purple-200{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .tablet\:border-purple-300{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .tablet\:border-purple-400{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .tablet\:border-purple-500{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .tablet\:border-purple-600{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .tablet\:border-purple-700{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .tablet\:border-purple-800{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .tablet\:border-purple-900{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .tablet\:border-pink-50{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .tablet\:border-pink-100{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .tablet\:border-pink-200{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .tablet\:border-pink-300{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .tablet\:border-pink-400{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .tablet\:border-pink-500{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .tablet\:border-pink-600{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .tablet\:border-pink-700{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .tablet\:border-pink-800{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .tablet\:border-pink-900{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .tablet\:border-brown-light{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .tablet\:border-brown-semi{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .tablet\:border-brown-default{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .tablet\:border-brown-dark{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .tablet\:border-success-light{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .tablet\:border-success-default{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .tablet\:border-success-dark{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .tablet\:border-error-light{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .tablet\:border-error-default{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .tablet\:border-error-dark{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:border-navigation-dark{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-transparent{
    border-color: transparent;
  }

  .group:hover .tablet\:group-hover\:border-current{
    border-color: currentColor;
  }

  .group:hover .tablet\:group-hover\:border-black{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-white{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-gray-50{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-gray-100{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-gray-200{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-gray-300{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-gray-400{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-gray-500{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-gray-600{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-gray-700{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-gray-800{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-gray-900{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-50{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-100{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-200{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-300{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-400{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-500{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-600{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-700{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-800{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-900{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-light{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-default{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-red-dark{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-yellow-50{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-yellow-100{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-yellow-200{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-yellow-300{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-yellow-400{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-yellow-500{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-yellow-600{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-yellow-700{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-yellow-800{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-yellow-900{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-50{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-100{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-200{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-300{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-400{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-500{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-600{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-700{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-800{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-900{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-light{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-default{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-green-dark{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-blue-50{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-blue-100{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-blue-200{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-blue-300{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-blue-400{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-blue-500{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-blue-600{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-blue-700{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-blue-800{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-blue-900{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-indigo-50{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-indigo-100{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-indigo-200{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-indigo-300{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-indigo-400{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-indigo-500{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-indigo-600{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-indigo-700{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-indigo-800{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-indigo-900{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-purple-50{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-purple-100{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-purple-200{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-purple-300{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-purple-400{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-purple-500{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-purple-600{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-purple-700{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-purple-800{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-purple-900{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-pink-50{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-pink-100{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-pink-200{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-pink-300{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-pink-400{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-pink-500{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-pink-600{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-pink-700{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-pink-800{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-pink-900{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-brown-light{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-brown-semi{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-brown-default{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-brown-dark{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-success-light{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-success-default{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-success-dark{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-error-light{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-error-default{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-error-dark{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .group:hover .tablet\:group-hover\:border-navigation-dark{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-transparent:focus-within{
    border-color: transparent;
  }

  .tablet\:focus-within\:border-current:focus-within{
    border-color: currentColor;
  }

  .tablet\:focus-within\:border-black:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-white:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-gray-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-gray-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-gray-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-gray-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-gray-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-gray-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-gray-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-gray-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-gray-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-gray-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-red-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-yellow-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-yellow-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-yellow-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-yellow-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-yellow-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-yellow-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-yellow-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-yellow-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-yellow-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-yellow-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-green-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-blue-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-blue-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-blue-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-blue-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-blue-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-blue-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-blue-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-blue-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-blue-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-blue-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-indigo-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-indigo-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-indigo-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-indigo-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-indigo-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-indigo-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-indigo-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-indigo-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-indigo-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-indigo-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-purple-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-purple-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-purple-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-purple-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-purple-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-purple-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-purple-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-purple-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-purple-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-purple-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-pink-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-pink-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-pink-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-pink-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-pink-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-pink-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-pink-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-pink-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-pink-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-pink-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-brown-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-brown-semi:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-brown-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-brown-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-success-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-success-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-success-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-error-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-error-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-error-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:focus-within\:border-navigation-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .tablet\:hover\:border-current:hover{
    border-color: currentColor;
  }

  .tablet\:hover\:border-black:hover{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-white:hover{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-gray-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-gray-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-gray-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-gray-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-gray-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-gray-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-gray-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-gray-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-gray-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-gray-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-red-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-yellow-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-yellow-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-yellow-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-yellow-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-yellow-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-yellow-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-yellow-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-yellow-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-yellow-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-yellow-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-green-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-blue-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-blue-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-blue-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-blue-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-blue-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-blue-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-blue-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-blue-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-blue-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-blue-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-indigo-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-indigo-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-indigo-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-indigo-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-indigo-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-indigo-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-indigo-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-indigo-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-indigo-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-indigo-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-purple-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-purple-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-purple-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-purple-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-purple-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-purple-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-purple-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-purple-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-purple-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-purple-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-pink-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-pink-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-pink-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-pink-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-pink-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-pink-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-pink-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-pink-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-pink-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-pink-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-brown-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-brown-semi:hover{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-brown-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-brown-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-success-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-success-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-success-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-error-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-error-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-error-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:hover\:border-navigation-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .tablet\:focus\:border-current:focus{
    border-color: currentColor;
  }

  .tablet\:focus\:border-black:focus{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-white:focus{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-gray-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-gray-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-gray-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-gray-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-gray-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-gray-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-gray-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-gray-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-gray-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-gray-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-red-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-yellow-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-yellow-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-yellow-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-yellow-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-yellow-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-yellow-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-yellow-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-yellow-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-yellow-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-yellow-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-green-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-blue-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-blue-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-blue-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-blue-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-blue-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-blue-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-blue-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-blue-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-blue-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-blue-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-indigo-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-indigo-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-indigo-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-indigo-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-indigo-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-indigo-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-indigo-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-indigo-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-indigo-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-indigo-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-purple-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-purple-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-purple-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-purple-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-purple-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-purple-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-purple-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-purple-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-purple-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-purple-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-pink-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-pink-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-pink-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-pink-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-pink-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-pink-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-pink-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-pink-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-pink-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-pink-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-brown-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-brown-semi:focus{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-brown-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-brown-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-success-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-success-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-success-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-error-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-error-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-error-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .tablet\:focus\:border-navigation-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .tablet\:border-opacity-0{
    --tw-border-opacity: 0;
  }

  .tablet\:border-opacity-5{
    --tw-border-opacity: 0.05;
  }

  .tablet\:border-opacity-10{
    --tw-border-opacity: 0.1;
  }

  .tablet\:border-opacity-20{
    --tw-border-opacity: 0.2;
  }

  .tablet\:border-opacity-25{
    --tw-border-opacity: 0.25;
  }

  .tablet\:border-opacity-30{
    --tw-border-opacity: 0.3;
  }

  .tablet\:border-opacity-40{
    --tw-border-opacity: 0.4;
  }

  .tablet\:border-opacity-50{
    --tw-border-opacity: 0.5;
  }

  .tablet\:border-opacity-60{
    --tw-border-opacity: 0.6;
  }

  .tablet\:border-opacity-70{
    --tw-border-opacity: 0.7;
  }

  .tablet\:border-opacity-75{
    --tw-border-opacity: 0.75;
  }

  .tablet\:border-opacity-80{
    --tw-border-opacity: 0.8;
  }

  .tablet\:border-opacity-90{
    --tw-border-opacity: 0.9;
  }

  .tablet\:border-opacity-95{
    --tw-border-opacity: 0.95;
  }

  .tablet\:border-opacity-100{
    --tw-border-opacity: 1;
  }

  .group:hover .tablet\:group-hover\:border-opacity-0{
    --tw-border-opacity: 0;
  }

  .group:hover .tablet\:group-hover\:border-opacity-5{
    --tw-border-opacity: 0.05;
  }

  .group:hover .tablet\:group-hover\:border-opacity-10{
    --tw-border-opacity: 0.1;
  }

  .group:hover .tablet\:group-hover\:border-opacity-20{
    --tw-border-opacity: 0.2;
  }

  .group:hover .tablet\:group-hover\:border-opacity-25{
    --tw-border-opacity: 0.25;
  }

  .group:hover .tablet\:group-hover\:border-opacity-30{
    --tw-border-opacity: 0.3;
  }

  .group:hover .tablet\:group-hover\:border-opacity-40{
    --tw-border-opacity: 0.4;
  }

  .group:hover .tablet\:group-hover\:border-opacity-50{
    --tw-border-opacity: 0.5;
  }

  .group:hover .tablet\:group-hover\:border-opacity-60{
    --tw-border-opacity: 0.6;
  }

  .group:hover .tablet\:group-hover\:border-opacity-70{
    --tw-border-opacity: 0.7;
  }

  .group:hover .tablet\:group-hover\:border-opacity-75{
    --tw-border-opacity: 0.75;
  }

  .group:hover .tablet\:group-hover\:border-opacity-80{
    --tw-border-opacity: 0.8;
  }

  .group:hover .tablet\:group-hover\:border-opacity-90{
    --tw-border-opacity: 0.9;
  }

  .group:hover .tablet\:group-hover\:border-opacity-95{
    --tw-border-opacity: 0.95;
  }

  .group:hover .tablet\:group-hover\:border-opacity-100{
    --tw-border-opacity: 1;
  }

  .tablet\:focus-within\:border-opacity-0:focus-within{
    --tw-border-opacity: 0;
  }

  .tablet\:focus-within\:border-opacity-5:focus-within{
    --tw-border-opacity: 0.05;
  }

  .tablet\:focus-within\:border-opacity-10:focus-within{
    --tw-border-opacity: 0.1;
  }

  .tablet\:focus-within\:border-opacity-20:focus-within{
    --tw-border-opacity: 0.2;
  }

  .tablet\:focus-within\:border-opacity-25:focus-within{
    --tw-border-opacity: 0.25;
  }

  .tablet\:focus-within\:border-opacity-30:focus-within{
    --tw-border-opacity: 0.3;
  }

  .tablet\:focus-within\:border-opacity-40:focus-within{
    --tw-border-opacity: 0.4;
  }

  .tablet\:focus-within\:border-opacity-50:focus-within{
    --tw-border-opacity: 0.5;
  }

  .tablet\:focus-within\:border-opacity-60:focus-within{
    --tw-border-opacity: 0.6;
  }

  .tablet\:focus-within\:border-opacity-70:focus-within{
    --tw-border-opacity: 0.7;
  }

  .tablet\:focus-within\:border-opacity-75:focus-within{
    --tw-border-opacity: 0.75;
  }

  .tablet\:focus-within\:border-opacity-80:focus-within{
    --tw-border-opacity: 0.8;
  }

  .tablet\:focus-within\:border-opacity-90:focus-within{
    --tw-border-opacity: 0.9;
  }

  .tablet\:focus-within\:border-opacity-95:focus-within{
    --tw-border-opacity: 0.95;
  }

  .tablet\:focus-within\:border-opacity-100:focus-within{
    --tw-border-opacity: 1;
  }

  .tablet\:hover\:border-opacity-0:hover{
    --tw-border-opacity: 0;
  }

  .tablet\:hover\:border-opacity-5:hover{
    --tw-border-opacity: 0.05;
  }

  .tablet\:hover\:border-opacity-10:hover{
    --tw-border-opacity: 0.1;
  }

  .tablet\:hover\:border-opacity-20:hover{
    --tw-border-opacity: 0.2;
  }

  .tablet\:hover\:border-opacity-25:hover{
    --tw-border-opacity: 0.25;
  }

  .tablet\:hover\:border-opacity-30:hover{
    --tw-border-opacity: 0.3;
  }

  .tablet\:hover\:border-opacity-40:hover{
    --tw-border-opacity: 0.4;
  }

  .tablet\:hover\:border-opacity-50:hover{
    --tw-border-opacity: 0.5;
  }

  .tablet\:hover\:border-opacity-60:hover{
    --tw-border-opacity: 0.6;
  }

  .tablet\:hover\:border-opacity-70:hover{
    --tw-border-opacity: 0.7;
  }

  .tablet\:hover\:border-opacity-75:hover{
    --tw-border-opacity: 0.75;
  }

  .tablet\:hover\:border-opacity-80:hover{
    --tw-border-opacity: 0.8;
  }

  .tablet\:hover\:border-opacity-90:hover{
    --tw-border-opacity: 0.9;
  }

  .tablet\:hover\:border-opacity-95:hover{
    --tw-border-opacity: 0.95;
  }

  .tablet\:hover\:border-opacity-100:hover{
    --tw-border-opacity: 1;
  }

  .tablet\:focus\:border-opacity-0:focus{
    --tw-border-opacity: 0;
  }

  .tablet\:focus\:border-opacity-5:focus{
    --tw-border-opacity: 0.05;
  }

  .tablet\:focus\:border-opacity-10:focus{
    --tw-border-opacity: 0.1;
  }

  .tablet\:focus\:border-opacity-20:focus{
    --tw-border-opacity: 0.2;
  }

  .tablet\:focus\:border-opacity-25:focus{
    --tw-border-opacity: 0.25;
  }

  .tablet\:focus\:border-opacity-30:focus{
    --tw-border-opacity: 0.3;
  }

  .tablet\:focus\:border-opacity-40:focus{
    --tw-border-opacity: 0.4;
  }

  .tablet\:focus\:border-opacity-50:focus{
    --tw-border-opacity: 0.5;
  }

  .tablet\:focus\:border-opacity-60:focus{
    --tw-border-opacity: 0.6;
  }

  .tablet\:focus\:border-opacity-70:focus{
    --tw-border-opacity: 0.7;
  }

  .tablet\:focus\:border-opacity-75:focus{
    --tw-border-opacity: 0.75;
  }

  .tablet\:focus\:border-opacity-80:focus{
    --tw-border-opacity: 0.8;
  }

  .tablet\:focus\:border-opacity-90:focus{
    --tw-border-opacity: 0.9;
  }

  .tablet\:focus\:border-opacity-95:focus{
    --tw-border-opacity: 0.95;
  }

  .tablet\:focus\:border-opacity-100:focus{
    --tw-border-opacity: 1;
  }

  .tablet\:bg-transparent{
    background-color: transparent;
  }

  .tablet\:bg-current{
    background-color: currentColor;
  }

  .tablet\:bg-black{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .tablet\:bg-gray-50{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .tablet\:bg-gray-100{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .tablet\:bg-gray-200{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .tablet\:bg-gray-300{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .tablet\:bg-gray-400{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .tablet\:bg-gray-500{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .tablet\:bg-gray-600{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .tablet\:bg-gray-700{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .tablet\:bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .tablet\:bg-gray-900{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-50{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-100{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-200{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-300{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-400{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-500{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-600{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-700{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-800{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-900{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-light{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-default{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:bg-red-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:bg-yellow-50{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .tablet\:bg-yellow-100{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .tablet\:bg-yellow-200{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .tablet\:bg-yellow-300{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .tablet\:bg-yellow-400{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .tablet\:bg-yellow-500{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .tablet\:bg-yellow-600{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .tablet\:bg-yellow-700{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .tablet\:bg-yellow-800{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .tablet\:bg-yellow-900{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-50{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-100{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-200{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-300{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-400{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-500{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-600{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-700{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-800{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-900{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-light{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-default{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .tablet\:bg-green-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .tablet\:bg-blue-50{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .tablet\:bg-blue-100{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .tablet\:bg-blue-200{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .tablet\:bg-blue-300{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .tablet\:bg-blue-400{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .tablet\:bg-blue-500{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .tablet\:bg-blue-600{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .tablet\:bg-blue-700{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .tablet\:bg-blue-800{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .tablet\:bg-blue-900{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .tablet\:bg-indigo-50{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .tablet\:bg-indigo-100{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .tablet\:bg-indigo-200{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .tablet\:bg-indigo-300{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .tablet\:bg-indigo-400{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .tablet\:bg-indigo-500{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .tablet\:bg-indigo-600{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .tablet\:bg-indigo-700{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .tablet\:bg-indigo-800{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .tablet\:bg-indigo-900{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .tablet\:bg-purple-50{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .tablet\:bg-purple-100{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .tablet\:bg-purple-200{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .tablet\:bg-purple-300{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .tablet\:bg-purple-400{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .tablet\:bg-purple-500{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .tablet\:bg-purple-600{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .tablet\:bg-purple-700{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .tablet\:bg-purple-800{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .tablet\:bg-purple-900{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .tablet\:bg-pink-50{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .tablet\:bg-pink-100{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .tablet\:bg-pink-200{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .tablet\:bg-pink-300{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .tablet\:bg-pink-400{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .tablet\:bg-pink-500{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .tablet\:bg-pink-600{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .tablet\:bg-pink-700{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .tablet\:bg-pink-800{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .tablet\:bg-pink-900{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .tablet\:bg-brown-light{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .tablet\:bg-brown-semi{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .tablet\:bg-brown-default{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .tablet\:bg-brown-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .tablet\:bg-success-light{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .tablet\:bg-success-default{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .tablet\:bg-success-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .tablet\:bg-error-light{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .tablet\:bg-error-default{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .tablet\:bg-error-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:bg-navigation-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-transparent{
    background-color: transparent;
  }

  .group:hover .tablet\:group-hover\:bg-current{
    background-color: currentColor;
  }

  .group:hover .tablet\:group-hover\:bg-black{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-gray-50{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-gray-100{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-gray-200{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-gray-300{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-gray-400{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-gray-500{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-gray-600{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-gray-700{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-gray-900{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-50{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-100{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-200{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-300{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-400{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-500{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-600{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-700{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-800{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-900{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-light{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-default{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-red-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-yellow-50{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-yellow-100{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-yellow-200{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-yellow-300{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-yellow-400{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-yellow-500{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-yellow-600{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-yellow-700{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-yellow-800{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-yellow-900{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-50{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-100{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-200{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-300{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-400{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-500{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-600{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-700{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-800{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-900{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-light{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-default{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-green-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-blue-50{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-blue-100{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-blue-200{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-blue-300{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-blue-400{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-blue-500{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-blue-600{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-blue-700{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-blue-800{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-blue-900{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-indigo-50{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-indigo-100{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-indigo-200{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-indigo-300{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-indigo-400{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-indigo-500{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-indigo-600{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-indigo-700{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-indigo-800{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-indigo-900{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-purple-50{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-purple-100{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-purple-200{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-purple-300{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-purple-400{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-purple-500{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-purple-600{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-purple-700{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-purple-800{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-purple-900{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-pink-50{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-pink-100{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-pink-200{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-pink-300{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-pink-400{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-pink-500{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-pink-600{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-pink-700{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-pink-800{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-pink-900{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-brown-light{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-brown-semi{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-brown-default{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-brown-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-success-light{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-success-default{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-success-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-error-light{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-error-default{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-error-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .group:hover .tablet\:group-hover\:bg-navigation-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-transparent:focus-within{
    background-color: transparent;
  }

  .tablet\:focus-within\:bg-current:focus-within{
    background-color: currentColor;
  }

  .tablet\:focus-within\:bg-black:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-white:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-gray-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-gray-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-gray-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-gray-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-gray-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-gray-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-gray-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-gray-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-gray-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-gray-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-red-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-yellow-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-yellow-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-yellow-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-yellow-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-yellow-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-yellow-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-yellow-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-yellow-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-yellow-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-yellow-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-green-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-blue-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-blue-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-blue-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-blue-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-blue-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-blue-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-blue-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-blue-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-blue-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-blue-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-indigo-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-indigo-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-indigo-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-indigo-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-indigo-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-indigo-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-indigo-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-indigo-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-indigo-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-indigo-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-purple-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-purple-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-purple-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-purple-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-purple-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-purple-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-purple-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-purple-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-purple-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-purple-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-pink-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-pink-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-pink-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-pink-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-pink-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-pink-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-pink-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-pink-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-pink-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-pink-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-brown-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-brown-semi:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-brown-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-brown-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-success-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-success-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-success-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-error-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-error-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-error-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:focus-within\:bg-navigation-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .tablet\:hover\:bg-current:hover{
    background-color: currentColor;
  }

  .tablet\:hover\:bg-black:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-white:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-gray-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-gray-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-gray-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-gray-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-gray-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-gray-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-gray-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-gray-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-gray-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-gray-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-red-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-yellow-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-yellow-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-yellow-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-yellow-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-yellow-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-yellow-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-yellow-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-yellow-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-yellow-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-yellow-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-green-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-blue-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-blue-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-blue-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-blue-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-blue-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-blue-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-blue-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-blue-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-blue-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-blue-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-indigo-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-indigo-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-indigo-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-indigo-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-indigo-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-indigo-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-indigo-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-indigo-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-indigo-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-indigo-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-purple-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-purple-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-purple-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-purple-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-purple-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-purple-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-purple-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-purple-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-purple-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-purple-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-pink-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-pink-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-pink-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-pink-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-pink-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-pink-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-pink-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-pink-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-pink-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-pink-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-brown-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-brown-semi:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-brown-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-brown-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-success-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-success-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-success-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-error-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-error-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-error-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:hover\:bg-navigation-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .tablet\:focus\:bg-current:focus{
    background-color: currentColor;
  }

  .tablet\:focus\:bg-black:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-white:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-gray-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-gray-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-gray-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-gray-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-gray-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-gray-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-gray-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-gray-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-gray-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-gray-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-red-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-yellow-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-yellow-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-yellow-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-yellow-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-yellow-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-yellow-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-yellow-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-yellow-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-yellow-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-yellow-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-green-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-blue-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-blue-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-blue-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-blue-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-blue-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-blue-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-blue-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-blue-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-blue-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-blue-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-indigo-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-indigo-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-indigo-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-indigo-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-indigo-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-indigo-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-indigo-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-indigo-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-indigo-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-indigo-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-purple-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-purple-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-purple-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-purple-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-purple-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-purple-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-purple-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-purple-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-purple-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-purple-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-pink-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-pink-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-pink-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-pink-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-pink-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-pink-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-pink-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-pink-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-pink-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-pink-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-brown-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-brown-semi:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-brown-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-brown-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-success-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-success-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-success-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-error-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-error-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-error-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .tablet\:focus\:bg-navigation-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .tablet\:bg-opacity-0{
    --tw-bg-opacity: 0;
  }

  .tablet\:bg-opacity-5{
    --tw-bg-opacity: 0.05;
  }

  .tablet\:bg-opacity-10{
    --tw-bg-opacity: 0.1;
  }

  .tablet\:bg-opacity-20{
    --tw-bg-opacity: 0.2;
  }

  .tablet\:bg-opacity-25{
    --tw-bg-opacity: 0.25;
  }

  .tablet\:bg-opacity-30{
    --tw-bg-opacity: 0.3;
  }

  .tablet\:bg-opacity-40{
    --tw-bg-opacity: 0.4;
  }

  .tablet\:bg-opacity-50{
    --tw-bg-opacity: 0.5;
  }

  .tablet\:bg-opacity-60{
    --tw-bg-opacity: 0.6;
  }

  .tablet\:bg-opacity-70{
    --tw-bg-opacity: 0.7;
  }

  .tablet\:bg-opacity-75{
    --tw-bg-opacity: 0.75;
  }

  .tablet\:bg-opacity-80{
    --tw-bg-opacity: 0.8;
  }

  .tablet\:bg-opacity-90{
    --tw-bg-opacity: 0.9;
  }

  .tablet\:bg-opacity-95{
    --tw-bg-opacity: 0.95;
  }

  .tablet\:bg-opacity-100{
    --tw-bg-opacity: 1;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-0{
    --tw-bg-opacity: 0;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-5{
    --tw-bg-opacity: 0.05;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-10{
    --tw-bg-opacity: 0.1;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-20{
    --tw-bg-opacity: 0.2;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-25{
    --tw-bg-opacity: 0.25;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-30{
    --tw-bg-opacity: 0.3;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-40{
    --tw-bg-opacity: 0.4;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-50{
    --tw-bg-opacity: 0.5;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-60{
    --tw-bg-opacity: 0.6;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-70{
    --tw-bg-opacity: 0.7;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-75{
    --tw-bg-opacity: 0.75;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-80{
    --tw-bg-opacity: 0.8;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-90{
    --tw-bg-opacity: 0.9;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-95{
    --tw-bg-opacity: 0.95;
  }

  .group:hover .tablet\:group-hover\:bg-opacity-100{
    --tw-bg-opacity: 1;
  }

  .tablet\:focus-within\:bg-opacity-0:focus-within{
    --tw-bg-opacity: 0;
  }

  .tablet\:focus-within\:bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05;
  }

  .tablet\:focus-within\:bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1;
  }

  .tablet\:focus-within\:bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2;
  }

  .tablet\:focus-within\:bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25;
  }

  .tablet\:focus-within\:bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3;
  }

  .tablet\:focus-within\:bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4;
  }

  .tablet\:focus-within\:bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5;
  }

  .tablet\:focus-within\:bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6;
  }

  .tablet\:focus-within\:bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7;
  }

  .tablet\:focus-within\:bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75;
  }

  .tablet\:focus-within\:bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8;
  }

  .tablet\:focus-within\:bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9;
  }

  .tablet\:focus-within\:bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95;
  }

  .tablet\:focus-within\:bg-opacity-100:focus-within{
    --tw-bg-opacity: 1;
  }

  .tablet\:hover\:bg-opacity-0:hover{
    --tw-bg-opacity: 0;
  }

  .tablet\:hover\:bg-opacity-5:hover{
    --tw-bg-opacity: 0.05;
  }

  .tablet\:hover\:bg-opacity-10:hover{
    --tw-bg-opacity: 0.1;
  }

  .tablet\:hover\:bg-opacity-20:hover{
    --tw-bg-opacity: 0.2;
  }

  .tablet\:hover\:bg-opacity-25:hover{
    --tw-bg-opacity: 0.25;
  }

  .tablet\:hover\:bg-opacity-30:hover{
    --tw-bg-opacity: 0.3;
  }

  .tablet\:hover\:bg-opacity-40:hover{
    --tw-bg-opacity: 0.4;
  }

  .tablet\:hover\:bg-opacity-50:hover{
    --tw-bg-opacity: 0.5;
  }

  .tablet\:hover\:bg-opacity-60:hover{
    --tw-bg-opacity: 0.6;
  }

  .tablet\:hover\:bg-opacity-70:hover{
    --tw-bg-opacity: 0.7;
  }

  .tablet\:hover\:bg-opacity-75:hover{
    --tw-bg-opacity: 0.75;
  }

  .tablet\:hover\:bg-opacity-80:hover{
    --tw-bg-opacity: 0.8;
  }

  .tablet\:hover\:bg-opacity-90:hover{
    --tw-bg-opacity: 0.9;
  }

  .tablet\:hover\:bg-opacity-95:hover{
    --tw-bg-opacity: 0.95;
  }

  .tablet\:hover\:bg-opacity-100:hover{
    --tw-bg-opacity: 1;
  }

  .tablet\:focus\:bg-opacity-0:focus{
    --tw-bg-opacity: 0;
  }

  .tablet\:focus\:bg-opacity-5:focus{
    --tw-bg-opacity: 0.05;
  }

  .tablet\:focus\:bg-opacity-10:focus{
    --tw-bg-opacity: 0.1;
  }

  .tablet\:focus\:bg-opacity-20:focus{
    --tw-bg-opacity: 0.2;
  }

  .tablet\:focus\:bg-opacity-25:focus{
    --tw-bg-opacity: 0.25;
  }

  .tablet\:focus\:bg-opacity-30:focus{
    --tw-bg-opacity: 0.3;
  }

  .tablet\:focus\:bg-opacity-40:focus{
    --tw-bg-opacity: 0.4;
  }

  .tablet\:focus\:bg-opacity-50:focus{
    --tw-bg-opacity: 0.5;
  }

  .tablet\:focus\:bg-opacity-60:focus{
    --tw-bg-opacity: 0.6;
  }

  .tablet\:focus\:bg-opacity-70:focus{
    --tw-bg-opacity: 0.7;
  }

  .tablet\:focus\:bg-opacity-75:focus{
    --tw-bg-opacity: 0.75;
  }

  .tablet\:focus\:bg-opacity-80:focus{
    --tw-bg-opacity: 0.8;
  }

  .tablet\:focus\:bg-opacity-90:focus{
    --tw-bg-opacity: 0.9;
  }

  .tablet\:focus\:bg-opacity-95:focus{
    --tw-bg-opacity: 0.95;
  }

  .tablet\:focus\:bg-opacity-100:focus{
    --tw-bg-opacity: 1;
  }

  .tablet\:bg-none{
    background-image: none;
  }

  .tablet\:bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
  }

  .tablet\:bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops));
  }

  .tablet\:bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
  }

  .tablet\:bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  }

  .tablet\:bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  }

  .tablet\:bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops));
  }

  .tablet\:bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops));
  }

  .tablet\:bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops));
  }

  .tablet\:from-transparent{
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .tablet\:from-current{
    --tw-gradient-from: currentColor;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .tablet\:from-black{
    --tw-gradient-from: #000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .tablet\:from-white{
    --tw-gradient-from: #fff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .tablet\:from-gray-50{
    --tw-gradient-from: #f9fafb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .tablet\:from-gray-100{
    --tw-gradient-from: #f3f4f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .tablet\:from-gray-200{
    --tw-gradient-from: #e5e7eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .tablet\:from-gray-300{
    --tw-gradient-from: #d1d5db;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .tablet\:from-gray-400{
    --tw-gradient-from: #9ca3af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .tablet\:from-gray-500{
    --tw-gradient-from: #6b7280;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .tablet\:from-gray-600{
    --tw-gradient-from: #4b5563;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .tablet\:from-gray-700{
    --tw-gradient-from: #374151;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .tablet\:from-gray-800{
    --tw-gradient-from: #1f2937;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .tablet\:from-gray-900{
    --tw-gradient-from: #111827;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .tablet\:from-red-50{
    --tw-gradient-from: #fef2f2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .tablet\:from-red-100{
    --tw-gradient-from: #fee2e2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .tablet\:from-red-200{
    --tw-gradient-from: #fecaca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .tablet\:from-red-300{
    --tw-gradient-from: #fca5a5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .tablet\:from-red-400{
    --tw-gradient-from: #f87171;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .tablet\:from-red-500{
    --tw-gradient-from: #ef4444;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .tablet\:from-red-600{
    --tw-gradient-from: #dc2626;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .tablet\:from-red-700{
    --tw-gradient-from: #b91c1c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .tablet\:from-red-800{
    --tw-gradient-from: #991b1b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .tablet\:from-red-900{
    --tw-gradient-from: #7f1d1d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .tablet\:from-red-light{
    --tw-gradient-from: #EA7A7A;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .tablet\:from-red-default{
    --tw-gradient-from: #B90000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .tablet\:from-red-dark{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .tablet\:from-yellow-50{
    --tw-gradient-from: #fffbeb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .tablet\:from-yellow-100{
    --tw-gradient-from: #fef3c7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .tablet\:from-yellow-200{
    --tw-gradient-from: #fde68a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .tablet\:from-yellow-300{
    --tw-gradient-from: #fcd34d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .tablet\:from-yellow-400{
    --tw-gradient-from: #fbbf24;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .tablet\:from-yellow-500{
    --tw-gradient-from: #f59e0b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .tablet\:from-yellow-600{
    --tw-gradient-from: #d97706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .tablet\:from-yellow-700{
    --tw-gradient-from: #b45309;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .tablet\:from-yellow-800{
    --tw-gradient-from: #92400e;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .tablet\:from-yellow-900{
    --tw-gradient-from: #78350f;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .tablet\:from-green-50{
    --tw-gradient-from: #ecfdf5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .tablet\:from-green-100{
    --tw-gradient-from: #d1fae5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .tablet\:from-green-200{
    --tw-gradient-from: #a7f3d0;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .tablet\:from-green-300{
    --tw-gradient-from: #6ee7b7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .tablet\:from-green-400{
    --tw-gradient-from: #34d399;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .tablet\:from-green-500{
    --tw-gradient-from: #10b981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .tablet\:from-green-600{
    --tw-gradient-from: #059669;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .tablet\:from-green-700{
    --tw-gradient-from: #047857;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .tablet\:from-green-800{
    --tw-gradient-from: #065f46;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .tablet\:from-green-900{
    --tw-gradient-from: #064e3b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .tablet\:from-green-light{
    --tw-gradient-from: #B5D1B9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .tablet\:from-green-default{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .tablet\:from-green-dark{
    --tw-gradient-from: #1C251E;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .tablet\:from-blue-50{
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .tablet\:from-blue-100{
    --tw-gradient-from: #dbeafe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .tablet\:from-blue-200{
    --tw-gradient-from: #bfdbfe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .tablet\:from-blue-300{
    --tw-gradient-from: #93c5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .tablet\:from-blue-400{
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .tablet\:from-blue-500{
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .tablet\:from-blue-600{
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .tablet\:from-blue-700{
    --tw-gradient-from: #1d4ed8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .tablet\:from-blue-800{
    --tw-gradient-from: #1e40af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .tablet\:from-blue-900{
    --tw-gradient-from: #1e3a8a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .tablet\:from-indigo-50{
    --tw-gradient-from: #eef2ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .tablet\:from-indigo-100{
    --tw-gradient-from: #e0e7ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .tablet\:from-indigo-200{
    --tw-gradient-from: #c7d2fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .tablet\:from-indigo-300{
    --tw-gradient-from: #a5b4fc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .tablet\:from-indigo-400{
    --tw-gradient-from: #818cf8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .tablet\:from-indigo-500{
    --tw-gradient-from: #6366f1;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .tablet\:from-indigo-600{
    --tw-gradient-from: #4f46e5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .tablet\:from-indigo-700{
    --tw-gradient-from: #4338ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .tablet\:from-indigo-800{
    --tw-gradient-from: #3730a3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .tablet\:from-indigo-900{
    --tw-gradient-from: #312e81;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .tablet\:from-purple-50{
    --tw-gradient-from: #f5f3ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .tablet\:from-purple-100{
    --tw-gradient-from: #ede9fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .tablet\:from-purple-200{
    --tw-gradient-from: #ddd6fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .tablet\:from-purple-300{
    --tw-gradient-from: #c4b5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .tablet\:from-purple-400{
    --tw-gradient-from: #a78bfa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .tablet\:from-purple-500{
    --tw-gradient-from: #8b5cf6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .tablet\:from-purple-600{
    --tw-gradient-from: #7c3aed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .tablet\:from-purple-700{
    --tw-gradient-from: #6d28d9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .tablet\:from-purple-800{
    --tw-gradient-from: #5b21b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .tablet\:from-purple-900{
    --tw-gradient-from: #4c1d95;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .tablet\:from-pink-50{
    --tw-gradient-from: #fdf2f8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .tablet\:from-pink-100{
    --tw-gradient-from: #fce7f3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .tablet\:from-pink-200{
    --tw-gradient-from: #fbcfe8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .tablet\:from-pink-300{
    --tw-gradient-from: #f9a8d4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .tablet\:from-pink-400{
    --tw-gradient-from: #f472b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .tablet\:from-pink-500{
    --tw-gradient-from: #ec4899;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .tablet\:from-pink-600{
    --tw-gradient-from: #db2777;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .tablet\:from-pink-700{
    --tw-gradient-from: #be185d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .tablet\:from-pink-800{
    --tw-gradient-from: #9d174d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .tablet\:from-pink-900{
    --tw-gradient-from: #831843;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .tablet\:from-brown-light{
    --tw-gradient-from: #f0e9de;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .tablet\:from-brown-semi{
    --tw-gradient-from: #ded6ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .tablet\:from-brown-default{
    --tw-gradient-from: #7b6c5c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .tablet\:from-brown-dark{
    --tw-gradient-from: #3d2706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .tablet\:from-success-light{
    --tw-gradient-from: #91E09C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .tablet\:from-success-default{
    --tw-gradient-from: #2D993C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .tablet\:from-success-dark{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .tablet\:from-error-light{
    --tw-gradient-from: #F98686;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .tablet\:from-error-default{
    --tw-gradient-from: #CB0707;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .tablet\:from-error-dark{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .tablet\:from-navigation-dark{
    --tw-gradient-from: #ffcd00;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .tablet\:hover\:from-transparent:hover{
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .tablet\:hover\:from-current:hover{
    --tw-gradient-from: currentColor;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .tablet\:hover\:from-black:hover{
    --tw-gradient-from: #000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .tablet\:hover\:from-white:hover{
    --tw-gradient-from: #fff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .tablet\:hover\:from-gray-50:hover{
    --tw-gradient-from: #f9fafb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .tablet\:hover\:from-gray-100:hover{
    --tw-gradient-from: #f3f4f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .tablet\:hover\:from-gray-200:hover{
    --tw-gradient-from: #e5e7eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .tablet\:hover\:from-gray-300:hover{
    --tw-gradient-from: #d1d5db;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .tablet\:hover\:from-gray-400:hover{
    --tw-gradient-from: #9ca3af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .tablet\:hover\:from-gray-500:hover{
    --tw-gradient-from: #6b7280;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .tablet\:hover\:from-gray-600:hover{
    --tw-gradient-from: #4b5563;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .tablet\:hover\:from-gray-700:hover{
    --tw-gradient-from: #374151;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .tablet\:hover\:from-gray-800:hover{
    --tw-gradient-from: #1f2937;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .tablet\:hover\:from-gray-900:hover{
    --tw-gradient-from: #111827;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .tablet\:hover\:from-red-50:hover{
    --tw-gradient-from: #fef2f2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .tablet\:hover\:from-red-100:hover{
    --tw-gradient-from: #fee2e2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .tablet\:hover\:from-red-200:hover{
    --tw-gradient-from: #fecaca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .tablet\:hover\:from-red-300:hover{
    --tw-gradient-from: #fca5a5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .tablet\:hover\:from-red-400:hover{
    --tw-gradient-from: #f87171;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .tablet\:hover\:from-red-500:hover{
    --tw-gradient-from: #ef4444;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .tablet\:hover\:from-red-600:hover{
    --tw-gradient-from: #dc2626;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .tablet\:hover\:from-red-700:hover{
    --tw-gradient-from: #b91c1c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .tablet\:hover\:from-red-800:hover{
    --tw-gradient-from: #991b1b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .tablet\:hover\:from-red-900:hover{
    --tw-gradient-from: #7f1d1d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .tablet\:hover\:from-red-light:hover{
    --tw-gradient-from: #EA7A7A;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .tablet\:hover\:from-red-default:hover{
    --tw-gradient-from: #B90000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .tablet\:hover\:from-red-dark:hover{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .tablet\:hover\:from-yellow-50:hover{
    --tw-gradient-from: #fffbeb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .tablet\:hover\:from-yellow-100:hover{
    --tw-gradient-from: #fef3c7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .tablet\:hover\:from-yellow-200:hover{
    --tw-gradient-from: #fde68a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .tablet\:hover\:from-yellow-300:hover{
    --tw-gradient-from: #fcd34d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .tablet\:hover\:from-yellow-400:hover{
    --tw-gradient-from: #fbbf24;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .tablet\:hover\:from-yellow-500:hover{
    --tw-gradient-from: #f59e0b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .tablet\:hover\:from-yellow-600:hover{
    --tw-gradient-from: #d97706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .tablet\:hover\:from-yellow-700:hover{
    --tw-gradient-from: #b45309;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .tablet\:hover\:from-yellow-800:hover{
    --tw-gradient-from: #92400e;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .tablet\:hover\:from-yellow-900:hover{
    --tw-gradient-from: #78350f;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .tablet\:hover\:from-green-50:hover{
    --tw-gradient-from: #ecfdf5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .tablet\:hover\:from-green-100:hover{
    --tw-gradient-from: #d1fae5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .tablet\:hover\:from-green-200:hover{
    --tw-gradient-from: #a7f3d0;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .tablet\:hover\:from-green-300:hover{
    --tw-gradient-from: #6ee7b7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .tablet\:hover\:from-green-400:hover{
    --tw-gradient-from: #34d399;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .tablet\:hover\:from-green-500:hover{
    --tw-gradient-from: #10b981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .tablet\:hover\:from-green-600:hover{
    --tw-gradient-from: #059669;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .tablet\:hover\:from-green-700:hover{
    --tw-gradient-from: #047857;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .tablet\:hover\:from-green-800:hover{
    --tw-gradient-from: #065f46;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .tablet\:hover\:from-green-900:hover{
    --tw-gradient-from: #064e3b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .tablet\:hover\:from-green-light:hover{
    --tw-gradient-from: #B5D1B9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .tablet\:hover\:from-green-default:hover{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .tablet\:hover\:from-green-dark:hover{
    --tw-gradient-from: #1C251E;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .tablet\:hover\:from-blue-50:hover{
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .tablet\:hover\:from-blue-100:hover{
    --tw-gradient-from: #dbeafe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .tablet\:hover\:from-blue-200:hover{
    --tw-gradient-from: #bfdbfe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .tablet\:hover\:from-blue-300:hover{
    --tw-gradient-from: #93c5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .tablet\:hover\:from-blue-400:hover{
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .tablet\:hover\:from-blue-500:hover{
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .tablet\:hover\:from-blue-600:hover{
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .tablet\:hover\:from-blue-700:hover{
    --tw-gradient-from: #1d4ed8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .tablet\:hover\:from-blue-800:hover{
    --tw-gradient-from: #1e40af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .tablet\:hover\:from-blue-900:hover{
    --tw-gradient-from: #1e3a8a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .tablet\:hover\:from-indigo-50:hover{
    --tw-gradient-from: #eef2ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .tablet\:hover\:from-indigo-100:hover{
    --tw-gradient-from: #e0e7ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .tablet\:hover\:from-indigo-200:hover{
    --tw-gradient-from: #c7d2fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .tablet\:hover\:from-indigo-300:hover{
    --tw-gradient-from: #a5b4fc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .tablet\:hover\:from-indigo-400:hover{
    --tw-gradient-from: #818cf8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .tablet\:hover\:from-indigo-500:hover{
    --tw-gradient-from: #6366f1;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .tablet\:hover\:from-indigo-600:hover{
    --tw-gradient-from: #4f46e5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .tablet\:hover\:from-indigo-700:hover{
    --tw-gradient-from: #4338ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .tablet\:hover\:from-indigo-800:hover{
    --tw-gradient-from: #3730a3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .tablet\:hover\:from-indigo-900:hover{
    --tw-gradient-from: #312e81;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .tablet\:hover\:from-purple-50:hover{
    --tw-gradient-from: #f5f3ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .tablet\:hover\:from-purple-100:hover{
    --tw-gradient-from: #ede9fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .tablet\:hover\:from-purple-200:hover{
    --tw-gradient-from: #ddd6fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .tablet\:hover\:from-purple-300:hover{
    --tw-gradient-from: #c4b5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .tablet\:hover\:from-purple-400:hover{
    --tw-gradient-from: #a78bfa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .tablet\:hover\:from-purple-500:hover{
    --tw-gradient-from: #8b5cf6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .tablet\:hover\:from-purple-600:hover{
    --tw-gradient-from: #7c3aed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .tablet\:hover\:from-purple-700:hover{
    --tw-gradient-from: #6d28d9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .tablet\:hover\:from-purple-800:hover{
    --tw-gradient-from: #5b21b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .tablet\:hover\:from-purple-900:hover{
    --tw-gradient-from: #4c1d95;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .tablet\:hover\:from-pink-50:hover{
    --tw-gradient-from: #fdf2f8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .tablet\:hover\:from-pink-100:hover{
    --tw-gradient-from: #fce7f3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .tablet\:hover\:from-pink-200:hover{
    --tw-gradient-from: #fbcfe8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .tablet\:hover\:from-pink-300:hover{
    --tw-gradient-from: #f9a8d4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .tablet\:hover\:from-pink-400:hover{
    --tw-gradient-from: #f472b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .tablet\:hover\:from-pink-500:hover{
    --tw-gradient-from: #ec4899;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .tablet\:hover\:from-pink-600:hover{
    --tw-gradient-from: #db2777;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .tablet\:hover\:from-pink-700:hover{
    --tw-gradient-from: #be185d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .tablet\:hover\:from-pink-800:hover{
    --tw-gradient-from: #9d174d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .tablet\:hover\:from-pink-900:hover{
    --tw-gradient-from: #831843;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .tablet\:hover\:from-brown-light:hover{
    --tw-gradient-from: #f0e9de;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .tablet\:hover\:from-brown-semi:hover{
    --tw-gradient-from: #ded6ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .tablet\:hover\:from-brown-default:hover{
    --tw-gradient-from: #7b6c5c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .tablet\:hover\:from-brown-dark:hover{
    --tw-gradient-from: #3d2706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .tablet\:hover\:from-success-light:hover{
    --tw-gradient-from: #91E09C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .tablet\:hover\:from-success-default:hover{
    --tw-gradient-from: #2D993C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .tablet\:hover\:from-success-dark:hover{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .tablet\:hover\:from-error-light:hover{
    --tw-gradient-from: #F98686;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .tablet\:hover\:from-error-default:hover{
    --tw-gradient-from: #CB0707;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .tablet\:hover\:from-error-dark:hover{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .tablet\:hover\:from-navigation-dark:hover{
    --tw-gradient-from: #ffcd00;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .tablet\:focus\:from-transparent:focus{
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .tablet\:focus\:from-current:focus{
    --tw-gradient-from: currentColor;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .tablet\:focus\:from-black:focus{
    --tw-gradient-from: #000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .tablet\:focus\:from-white:focus{
    --tw-gradient-from: #fff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .tablet\:focus\:from-gray-50:focus{
    --tw-gradient-from: #f9fafb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .tablet\:focus\:from-gray-100:focus{
    --tw-gradient-from: #f3f4f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .tablet\:focus\:from-gray-200:focus{
    --tw-gradient-from: #e5e7eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .tablet\:focus\:from-gray-300:focus{
    --tw-gradient-from: #d1d5db;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .tablet\:focus\:from-gray-400:focus{
    --tw-gradient-from: #9ca3af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .tablet\:focus\:from-gray-500:focus{
    --tw-gradient-from: #6b7280;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .tablet\:focus\:from-gray-600:focus{
    --tw-gradient-from: #4b5563;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .tablet\:focus\:from-gray-700:focus{
    --tw-gradient-from: #374151;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .tablet\:focus\:from-gray-800:focus{
    --tw-gradient-from: #1f2937;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .tablet\:focus\:from-gray-900:focus{
    --tw-gradient-from: #111827;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .tablet\:focus\:from-red-50:focus{
    --tw-gradient-from: #fef2f2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .tablet\:focus\:from-red-100:focus{
    --tw-gradient-from: #fee2e2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .tablet\:focus\:from-red-200:focus{
    --tw-gradient-from: #fecaca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .tablet\:focus\:from-red-300:focus{
    --tw-gradient-from: #fca5a5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .tablet\:focus\:from-red-400:focus{
    --tw-gradient-from: #f87171;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .tablet\:focus\:from-red-500:focus{
    --tw-gradient-from: #ef4444;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .tablet\:focus\:from-red-600:focus{
    --tw-gradient-from: #dc2626;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .tablet\:focus\:from-red-700:focus{
    --tw-gradient-from: #b91c1c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .tablet\:focus\:from-red-800:focus{
    --tw-gradient-from: #991b1b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .tablet\:focus\:from-red-900:focus{
    --tw-gradient-from: #7f1d1d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .tablet\:focus\:from-red-light:focus{
    --tw-gradient-from: #EA7A7A;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .tablet\:focus\:from-red-default:focus{
    --tw-gradient-from: #B90000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .tablet\:focus\:from-red-dark:focus{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .tablet\:focus\:from-yellow-50:focus{
    --tw-gradient-from: #fffbeb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .tablet\:focus\:from-yellow-100:focus{
    --tw-gradient-from: #fef3c7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .tablet\:focus\:from-yellow-200:focus{
    --tw-gradient-from: #fde68a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .tablet\:focus\:from-yellow-300:focus{
    --tw-gradient-from: #fcd34d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .tablet\:focus\:from-yellow-400:focus{
    --tw-gradient-from: #fbbf24;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .tablet\:focus\:from-yellow-500:focus{
    --tw-gradient-from: #f59e0b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .tablet\:focus\:from-yellow-600:focus{
    --tw-gradient-from: #d97706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .tablet\:focus\:from-yellow-700:focus{
    --tw-gradient-from: #b45309;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .tablet\:focus\:from-yellow-800:focus{
    --tw-gradient-from: #92400e;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .tablet\:focus\:from-yellow-900:focus{
    --tw-gradient-from: #78350f;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .tablet\:focus\:from-green-50:focus{
    --tw-gradient-from: #ecfdf5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .tablet\:focus\:from-green-100:focus{
    --tw-gradient-from: #d1fae5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .tablet\:focus\:from-green-200:focus{
    --tw-gradient-from: #a7f3d0;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .tablet\:focus\:from-green-300:focus{
    --tw-gradient-from: #6ee7b7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .tablet\:focus\:from-green-400:focus{
    --tw-gradient-from: #34d399;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .tablet\:focus\:from-green-500:focus{
    --tw-gradient-from: #10b981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .tablet\:focus\:from-green-600:focus{
    --tw-gradient-from: #059669;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .tablet\:focus\:from-green-700:focus{
    --tw-gradient-from: #047857;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .tablet\:focus\:from-green-800:focus{
    --tw-gradient-from: #065f46;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .tablet\:focus\:from-green-900:focus{
    --tw-gradient-from: #064e3b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .tablet\:focus\:from-green-light:focus{
    --tw-gradient-from: #B5D1B9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .tablet\:focus\:from-green-default:focus{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .tablet\:focus\:from-green-dark:focus{
    --tw-gradient-from: #1C251E;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .tablet\:focus\:from-blue-50:focus{
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .tablet\:focus\:from-blue-100:focus{
    --tw-gradient-from: #dbeafe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .tablet\:focus\:from-blue-200:focus{
    --tw-gradient-from: #bfdbfe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .tablet\:focus\:from-blue-300:focus{
    --tw-gradient-from: #93c5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .tablet\:focus\:from-blue-400:focus{
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .tablet\:focus\:from-blue-500:focus{
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .tablet\:focus\:from-blue-600:focus{
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .tablet\:focus\:from-blue-700:focus{
    --tw-gradient-from: #1d4ed8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .tablet\:focus\:from-blue-800:focus{
    --tw-gradient-from: #1e40af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .tablet\:focus\:from-blue-900:focus{
    --tw-gradient-from: #1e3a8a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .tablet\:focus\:from-indigo-50:focus{
    --tw-gradient-from: #eef2ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .tablet\:focus\:from-indigo-100:focus{
    --tw-gradient-from: #e0e7ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .tablet\:focus\:from-indigo-200:focus{
    --tw-gradient-from: #c7d2fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .tablet\:focus\:from-indigo-300:focus{
    --tw-gradient-from: #a5b4fc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .tablet\:focus\:from-indigo-400:focus{
    --tw-gradient-from: #818cf8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .tablet\:focus\:from-indigo-500:focus{
    --tw-gradient-from: #6366f1;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .tablet\:focus\:from-indigo-600:focus{
    --tw-gradient-from: #4f46e5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .tablet\:focus\:from-indigo-700:focus{
    --tw-gradient-from: #4338ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .tablet\:focus\:from-indigo-800:focus{
    --tw-gradient-from: #3730a3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .tablet\:focus\:from-indigo-900:focus{
    --tw-gradient-from: #312e81;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .tablet\:focus\:from-purple-50:focus{
    --tw-gradient-from: #f5f3ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .tablet\:focus\:from-purple-100:focus{
    --tw-gradient-from: #ede9fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .tablet\:focus\:from-purple-200:focus{
    --tw-gradient-from: #ddd6fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .tablet\:focus\:from-purple-300:focus{
    --tw-gradient-from: #c4b5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .tablet\:focus\:from-purple-400:focus{
    --tw-gradient-from: #a78bfa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .tablet\:focus\:from-purple-500:focus{
    --tw-gradient-from: #8b5cf6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .tablet\:focus\:from-purple-600:focus{
    --tw-gradient-from: #7c3aed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .tablet\:focus\:from-purple-700:focus{
    --tw-gradient-from: #6d28d9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .tablet\:focus\:from-purple-800:focus{
    --tw-gradient-from: #5b21b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .tablet\:focus\:from-purple-900:focus{
    --tw-gradient-from: #4c1d95;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .tablet\:focus\:from-pink-50:focus{
    --tw-gradient-from: #fdf2f8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .tablet\:focus\:from-pink-100:focus{
    --tw-gradient-from: #fce7f3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .tablet\:focus\:from-pink-200:focus{
    --tw-gradient-from: #fbcfe8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .tablet\:focus\:from-pink-300:focus{
    --tw-gradient-from: #f9a8d4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .tablet\:focus\:from-pink-400:focus{
    --tw-gradient-from: #f472b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .tablet\:focus\:from-pink-500:focus{
    --tw-gradient-from: #ec4899;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .tablet\:focus\:from-pink-600:focus{
    --tw-gradient-from: #db2777;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .tablet\:focus\:from-pink-700:focus{
    --tw-gradient-from: #be185d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .tablet\:focus\:from-pink-800:focus{
    --tw-gradient-from: #9d174d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .tablet\:focus\:from-pink-900:focus{
    --tw-gradient-from: #831843;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .tablet\:focus\:from-brown-light:focus{
    --tw-gradient-from: #f0e9de;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .tablet\:focus\:from-brown-semi:focus{
    --tw-gradient-from: #ded6ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .tablet\:focus\:from-brown-default:focus{
    --tw-gradient-from: #7b6c5c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .tablet\:focus\:from-brown-dark:focus{
    --tw-gradient-from: #3d2706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .tablet\:focus\:from-success-light:focus{
    --tw-gradient-from: #91E09C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .tablet\:focus\:from-success-default:focus{
    --tw-gradient-from: #2D993C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .tablet\:focus\:from-success-dark:focus{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .tablet\:focus\:from-error-light:focus{
    --tw-gradient-from: #F98686;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .tablet\:focus\:from-error-default:focus{
    --tw-gradient-from: #CB0707;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .tablet\:focus\:from-error-dark:focus{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .tablet\:focus\:from-navigation-dark:focus{
    --tw-gradient-from: #ffcd00;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .tablet\:via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .tablet\:via-current{
    --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .tablet\:via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .tablet\:via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .tablet\:via-gray-50{
    --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .tablet\:via-gray-100{
    --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .tablet\:via-gray-200{
    --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .tablet\:via-gray-300{
    --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .tablet\:via-gray-400{
    --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .tablet\:via-gray-500{
    --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .tablet\:via-gray-600{
    --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .tablet\:via-gray-700{
    --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .tablet\:via-gray-800{
    --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .tablet\:via-gray-900{
    --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .tablet\:via-red-50{
    --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .tablet\:via-red-100{
    --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .tablet\:via-red-200{
    --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .tablet\:via-red-300{
    --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .tablet\:via-red-400{
    --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .tablet\:via-red-500{
    --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .tablet\:via-red-600{
    --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .tablet\:via-red-700{
    --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .tablet\:via-red-800{
    --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .tablet\:via-red-900{
    --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .tablet\:via-red-light{
    --tw-gradient-stops: var(--tw-gradient-from), #EA7A7A, var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .tablet\:via-red-default{
    --tw-gradient-stops: var(--tw-gradient-from), #B90000, var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .tablet\:via-red-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .tablet\:via-yellow-50{
    --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .tablet\:via-yellow-100{
    --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .tablet\:via-yellow-200{
    --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .tablet\:via-yellow-300{
    --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .tablet\:via-yellow-400{
    --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .tablet\:via-yellow-500{
    --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .tablet\:via-yellow-600{
    --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .tablet\:via-yellow-700{
    --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .tablet\:via-yellow-800{
    --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .tablet\:via-yellow-900{
    --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .tablet\:via-green-50{
    --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .tablet\:via-green-100{
    --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .tablet\:via-green-200{
    --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .tablet\:via-green-300{
    --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .tablet\:via-green-400{
    --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .tablet\:via-green-500{
    --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .tablet\:via-green-600{
    --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .tablet\:via-green-700{
    --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .tablet\:via-green-800{
    --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .tablet\:via-green-900{
    --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .tablet\:via-green-light{
    --tw-gradient-stops: var(--tw-gradient-from), #B5D1B9, var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .tablet\:via-green-default{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .tablet\:via-green-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #1C251E, var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .tablet\:via-blue-50{
    --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .tablet\:via-blue-100{
    --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .tablet\:via-blue-200{
    --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .tablet\:via-blue-300{
    --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .tablet\:via-blue-400{
    --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .tablet\:via-blue-500{
    --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .tablet\:via-blue-600{
    --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .tablet\:via-blue-700{
    --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .tablet\:via-blue-800{
    --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .tablet\:via-blue-900{
    --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .tablet\:via-indigo-50{
    --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .tablet\:via-indigo-100{
    --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .tablet\:via-indigo-200{
    --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .tablet\:via-indigo-300{
    --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .tablet\:via-indigo-400{
    --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .tablet\:via-indigo-500{
    --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .tablet\:via-indigo-600{
    --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .tablet\:via-indigo-700{
    --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .tablet\:via-indigo-800{
    --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .tablet\:via-indigo-900{
    --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .tablet\:via-purple-50{
    --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .tablet\:via-purple-100{
    --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .tablet\:via-purple-200{
    --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .tablet\:via-purple-300{
    --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .tablet\:via-purple-400{
    --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .tablet\:via-purple-500{
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .tablet\:via-purple-600{
    --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .tablet\:via-purple-700{
    --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .tablet\:via-purple-800{
    --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .tablet\:via-purple-900{
    --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .tablet\:via-pink-50{
    --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .tablet\:via-pink-100{
    --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .tablet\:via-pink-200{
    --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .tablet\:via-pink-300{
    --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .tablet\:via-pink-400{
    --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .tablet\:via-pink-500{
    --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .tablet\:via-pink-600{
    --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .tablet\:via-pink-700{
    --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .tablet\:via-pink-800{
    --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .tablet\:via-pink-900{
    --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .tablet\:via-brown-light{
    --tw-gradient-stops: var(--tw-gradient-from), #f0e9de, var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .tablet\:via-brown-semi{
    --tw-gradient-stops: var(--tw-gradient-from), #ded6ca, var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .tablet\:via-brown-default{
    --tw-gradient-stops: var(--tw-gradient-from), #7b6c5c, var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .tablet\:via-brown-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #3d2706, var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .tablet\:via-success-light{
    --tw-gradient-stops: var(--tw-gradient-from), #91E09C, var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .tablet\:via-success-default{
    --tw-gradient-stops: var(--tw-gradient-from), #2D993C, var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .tablet\:via-success-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .tablet\:via-error-light{
    --tw-gradient-stops: var(--tw-gradient-from), #F98686, var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .tablet\:via-error-default{
    --tw-gradient-stops: var(--tw-gradient-from), #CB0707, var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .tablet\:via-error-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .tablet\:via-navigation-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #ffcd00, var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .tablet\:hover\:via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .tablet\:hover\:via-current:hover{
    --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .tablet\:hover\:via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .tablet\:hover\:via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .tablet\:hover\:via-gray-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .tablet\:hover\:via-gray-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .tablet\:hover\:via-gray-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .tablet\:hover\:via-gray-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .tablet\:hover\:via-gray-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .tablet\:hover\:via-gray-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .tablet\:hover\:via-gray-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .tablet\:hover\:via-gray-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .tablet\:hover\:via-gray-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .tablet\:hover\:via-gray-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .tablet\:hover\:via-red-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .tablet\:hover\:via-red-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .tablet\:hover\:via-red-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .tablet\:hover\:via-red-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .tablet\:hover\:via-red-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .tablet\:hover\:via-red-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .tablet\:hover\:via-red-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .tablet\:hover\:via-red-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .tablet\:hover\:via-red-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .tablet\:hover\:via-red-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .tablet\:hover\:via-red-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #EA7A7A, var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .tablet\:hover\:via-red-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B90000, var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .tablet\:hover\:via-red-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .tablet\:hover\:via-yellow-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .tablet\:hover\:via-yellow-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .tablet\:hover\:via-yellow-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .tablet\:hover\:via-yellow-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .tablet\:hover\:via-yellow-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .tablet\:hover\:via-yellow-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .tablet\:hover\:via-yellow-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .tablet\:hover\:via-yellow-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .tablet\:hover\:via-yellow-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .tablet\:hover\:via-yellow-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .tablet\:hover\:via-green-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .tablet\:hover\:via-green-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .tablet\:hover\:via-green-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .tablet\:hover\:via-green-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .tablet\:hover\:via-green-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .tablet\:hover\:via-green-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .tablet\:hover\:via-green-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .tablet\:hover\:via-green-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .tablet\:hover\:via-green-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .tablet\:hover\:via-green-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .tablet\:hover\:via-green-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B5D1B9, var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .tablet\:hover\:via-green-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .tablet\:hover\:via-green-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1C251E, var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .tablet\:hover\:via-blue-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .tablet\:hover\:via-blue-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .tablet\:hover\:via-blue-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .tablet\:hover\:via-blue-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .tablet\:hover\:via-blue-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .tablet\:hover\:via-blue-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .tablet\:hover\:via-blue-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .tablet\:hover\:via-blue-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .tablet\:hover\:via-blue-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .tablet\:hover\:via-blue-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .tablet\:hover\:via-indigo-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .tablet\:hover\:via-indigo-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .tablet\:hover\:via-indigo-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .tablet\:hover\:via-indigo-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .tablet\:hover\:via-indigo-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .tablet\:hover\:via-indigo-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .tablet\:hover\:via-indigo-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .tablet\:hover\:via-indigo-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .tablet\:hover\:via-indigo-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .tablet\:hover\:via-indigo-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .tablet\:hover\:via-purple-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .tablet\:hover\:via-purple-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .tablet\:hover\:via-purple-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .tablet\:hover\:via-purple-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .tablet\:hover\:via-purple-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .tablet\:hover\:via-purple-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .tablet\:hover\:via-purple-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .tablet\:hover\:via-purple-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .tablet\:hover\:via-purple-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .tablet\:hover\:via-purple-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .tablet\:hover\:via-pink-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .tablet\:hover\:via-pink-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .tablet\:hover\:via-pink-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .tablet\:hover\:via-pink-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .tablet\:hover\:via-pink-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .tablet\:hover\:via-pink-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .tablet\:hover\:via-pink-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .tablet\:hover\:via-pink-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .tablet\:hover\:via-pink-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .tablet\:hover\:via-pink-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .tablet\:hover\:via-brown-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f0e9de, var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .tablet\:hover\:via-brown-semi:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ded6ca, var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .tablet\:hover\:via-brown-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #7b6c5c, var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .tablet\:hover\:via-brown-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #3d2706, var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .tablet\:hover\:via-success-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #91E09C, var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .tablet\:hover\:via-success-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2D993C, var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .tablet\:hover\:via-success-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .tablet\:hover\:via-error-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F98686, var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .tablet\:hover\:via-error-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #CB0707, var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .tablet\:hover\:via-error-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .tablet\:hover\:via-navigation-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ffcd00, var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .tablet\:focus\:via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .tablet\:focus\:via-current:focus{
    --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .tablet\:focus\:via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .tablet\:focus\:via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .tablet\:focus\:via-gray-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .tablet\:focus\:via-gray-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .tablet\:focus\:via-gray-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .tablet\:focus\:via-gray-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .tablet\:focus\:via-gray-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .tablet\:focus\:via-gray-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .tablet\:focus\:via-gray-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .tablet\:focus\:via-gray-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .tablet\:focus\:via-gray-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .tablet\:focus\:via-gray-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .tablet\:focus\:via-red-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .tablet\:focus\:via-red-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .tablet\:focus\:via-red-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .tablet\:focus\:via-red-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .tablet\:focus\:via-red-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .tablet\:focus\:via-red-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .tablet\:focus\:via-red-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .tablet\:focus\:via-red-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .tablet\:focus\:via-red-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .tablet\:focus\:via-red-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .tablet\:focus\:via-red-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #EA7A7A, var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .tablet\:focus\:via-red-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B90000, var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .tablet\:focus\:via-red-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .tablet\:focus\:via-yellow-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .tablet\:focus\:via-yellow-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .tablet\:focus\:via-yellow-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .tablet\:focus\:via-yellow-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .tablet\:focus\:via-yellow-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .tablet\:focus\:via-yellow-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .tablet\:focus\:via-yellow-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .tablet\:focus\:via-yellow-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .tablet\:focus\:via-yellow-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .tablet\:focus\:via-yellow-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .tablet\:focus\:via-green-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .tablet\:focus\:via-green-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .tablet\:focus\:via-green-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .tablet\:focus\:via-green-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .tablet\:focus\:via-green-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .tablet\:focus\:via-green-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .tablet\:focus\:via-green-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .tablet\:focus\:via-green-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .tablet\:focus\:via-green-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .tablet\:focus\:via-green-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .tablet\:focus\:via-green-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B5D1B9, var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .tablet\:focus\:via-green-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .tablet\:focus\:via-green-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1C251E, var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .tablet\:focus\:via-blue-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .tablet\:focus\:via-blue-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .tablet\:focus\:via-blue-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .tablet\:focus\:via-blue-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .tablet\:focus\:via-blue-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .tablet\:focus\:via-blue-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .tablet\:focus\:via-blue-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .tablet\:focus\:via-blue-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .tablet\:focus\:via-blue-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .tablet\:focus\:via-blue-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .tablet\:focus\:via-indigo-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .tablet\:focus\:via-indigo-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .tablet\:focus\:via-indigo-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .tablet\:focus\:via-indigo-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .tablet\:focus\:via-indigo-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .tablet\:focus\:via-indigo-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .tablet\:focus\:via-indigo-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .tablet\:focus\:via-indigo-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .tablet\:focus\:via-indigo-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .tablet\:focus\:via-indigo-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .tablet\:focus\:via-purple-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .tablet\:focus\:via-purple-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .tablet\:focus\:via-purple-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .tablet\:focus\:via-purple-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .tablet\:focus\:via-purple-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .tablet\:focus\:via-purple-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .tablet\:focus\:via-purple-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .tablet\:focus\:via-purple-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .tablet\:focus\:via-purple-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .tablet\:focus\:via-purple-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .tablet\:focus\:via-pink-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .tablet\:focus\:via-pink-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .tablet\:focus\:via-pink-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .tablet\:focus\:via-pink-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .tablet\:focus\:via-pink-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .tablet\:focus\:via-pink-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .tablet\:focus\:via-pink-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .tablet\:focus\:via-pink-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .tablet\:focus\:via-pink-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .tablet\:focus\:via-pink-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .tablet\:focus\:via-brown-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f0e9de, var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .tablet\:focus\:via-brown-semi:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ded6ca, var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .tablet\:focus\:via-brown-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #7b6c5c, var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .tablet\:focus\:via-brown-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #3d2706, var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .tablet\:focus\:via-success-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #91E09C, var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .tablet\:focus\:via-success-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2D993C, var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .tablet\:focus\:via-success-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .tablet\:focus\:via-error-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F98686, var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .tablet\:focus\:via-error-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #CB0707, var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .tablet\:focus\:via-error-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .tablet\:focus\:via-navigation-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ffcd00, var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .tablet\:to-transparent{
    --tw-gradient-to: transparent;
  }

  .tablet\:to-current{
    --tw-gradient-to: currentColor;
  }

  .tablet\:to-black{
    --tw-gradient-to: #000;
  }

  .tablet\:to-white{
    --tw-gradient-to: #fff;
  }

  .tablet\:to-gray-50{
    --tw-gradient-to: #f9fafb;
  }

  .tablet\:to-gray-100{
    --tw-gradient-to: #f3f4f6;
  }

  .tablet\:to-gray-200{
    --tw-gradient-to: #e5e7eb;
  }

  .tablet\:to-gray-300{
    --tw-gradient-to: #d1d5db;
  }

  .tablet\:to-gray-400{
    --tw-gradient-to: #9ca3af;
  }

  .tablet\:to-gray-500{
    --tw-gradient-to: #6b7280;
  }

  .tablet\:to-gray-600{
    --tw-gradient-to: #4b5563;
  }

  .tablet\:to-gray-700{
    --tw-gradient-to: #374151;
  }

  .tablet\:to-gray-800{
    --tw-gradient-to: #1f2937;
  }

  .tablet\:to-gray-900{
    --tw-gradient-to: #111827;
  }

  .tablet\:to-red-50{
    --tw-gradient-to: #fef2f2;
  }

  .tablet\:to-red-100{
    --tw-gradient-to: #fee2e2;
  }

  .tablet\:to-red-200{
    --tw-gradient-to: #fecaca;
  }

  .tablet\:to-red-300{
    --tw-gradient-to: #fca5a5;
  }

  .tablet\:to-red-400{
    --tw-gradient-to: #f87171;
  }

  .tablet\:to-red-500{
    --tw-gradient-to: #ef4444;
  }

  .tablet\:to-red-600{
    --tw-gradient-to: #dc2626;
  }

  .tablet\:to-red-700{
    --tw-gradient-to: #b91c1c;
  }

  .tablet\:to-red-800{
    --tw-gradient-to: #991b1b;
  }

  .tablet\:to-red-900{
    --tw-gradient-to: #7f1d1d;
  }

  .tablet\:to-red-light{
    --tw-gradient-to: #EA7A7A;
  }

  .tablet\:to-red-default{
    --tw-gradient-to: #B90000;
  }

  .tablet\:to-red-dark{
    --tw-gradient-to: #580000;
  }

  .tablet\:to-yellow-50{
    --tw-gradient-to: #fffbeb;
  }

  .tablet\:to-yellow-100{
    --tw-gradient-to: #fef3c7;
  }

  .tablet\:to-yellow-200{
    --tw-gradient-to: #fde68a;
  }

  .tablet\:to-yellow-300{
    --tw-gradient-to: #fcd34d;
  }

  .tablet\:to-yellow-400{
    --tw-gradient-to: #fbbf24;
  }

  .tablet\:to-yellow-500{
    --tw-gradient-to: #f59e0b;
  }

  .tablet\:to-yellow-600{
    --tw-gradient-to: #d97706;
  }

  .tablet\:to-yellow-700{
    --tw-gradient-to: #b45309;
  }

  .tablet\:to-yellow-800{
    --tw-gradient-to: #92400e;
  }

  .tablet\:to-yellow-900{
    --tw-gradient-to: #78350f;
  }

  .tablet\:to-green-50{
    --tw-gradient-to: #ecfdf5;
  }

  .tablet\:to-green-100{
    --tw-gradient-to: #d1fae5;
  }

  .tablet\:to-green-200{
    --tw-gradient-to: #a7f3d0;
  }

  .tablet\:to-green-300{
    --tw-gradient-to: #6ee7b7;
  }

  .tablet\:to-green-400{
    --tw-gradient-to: #34d399;
  }

  .tablet\:to-green-500{
    --tw-gradient-to: #10b981;
  }

  .tablet\:to-green-600{
    --tw-gradient-to: #059669;
  }

  .tablet\:to-green-700{
    --tw-gradient-to: #047857;
  }

  .tablet\:to-green-800{
    --tw-gradient-to: #065f46;
  }

  .tablet\:to-green-900{
    --tw-gradient-to: #064e3b;
  }

  .tablet\:to-green-light{
    --tw-gradient-to: #B5D1B9;
  }

  .tablet\:to-green-default{
    --tw-gradient-to: #263B29;
  }

  .tablet\:to-green-dark{
    --tw-gradient-to: #1C251E;
  }

  .tablet\:to-blue-50{
    --tw-gradient-to: #eff6ff;
  }

  .tablet\:to-blue-100{
    --tw-gradient-to: #dbeafe;
  }

  .tablet\:to-blue-200{
    --tw-gradient-to: #bfdbfe;
  }

  .tablet\:to-blue-300{
    --tw-gradient-to: #93c5fd;
  }

  .tablet\:to-blue-400{
    --tw-gradient-to: #60a5fa;
  }

  .tablet\:to-blue-500{
    --tw-gradient-to: #3b82f6;
  }

  .tablet\:to-blue-600{
    --tw-gradient-to: #2563eb;
  }

  .tablet\:to-blue-700{
    --tw-gradient-to: #1d4ed8;
  }

  .tablet\:to-blue-800{
    --tw-gradient-to: #1e40af;
  }

  .tablet\:to-blue-900{
    --tw-gradient-to: #1e3a8a;
  }

  .tablet\:to-indigo-50{
    --tw-gradient-to: #eef2ff;
  }

  .tablet\:to-indigo-100{
    --tw-gradient-to: #e0e7ff;
  }

  .tablet\:to-indigo-200{
    --tw-gradient-to: #c7d2fe;
  }

  .tablet\:to-indigo-300{
    --tw-gradient-to: #a5b4fc;
  }

  .tablet\:to-indigo-400{
    --tw-gradient-to: #818cf8;
  }

  .tablet\:to-indigo-500{
    --tw-gradient-to: #6366f1;
  }

  .tablet\:to-indigo-600{
    --tw-gradient-to: #4f46e5;
  }

  .tablet\:to-indigo-700{
    --tw-gradient-to: #4338ca;
  }

  .tablet\:to-indigo-800{
    --tw-gradient-to: #3730a3;
  }

  .tablet\:to-indigo-900{
    --tw-gradient-to: #312e81;
  }

  .tablet\:to-purple-50{
    --tw-gradient-to: #f5f3ff;
  }

  .tablet\:to-purple-100{
    --tw-gradient-to: #ede9fe;
  }

  .tablet\:to-purple-200{
    --tw-gradient-to: #ddd6fe;
  }

  .tablet\:to-purple-300{
    --tw-gradient-to: #c4b5fd;
  }

  .tablet\:to-purple-400{
    --tw-gradient-to: #a78bfa;
  }

  .tablet\:to-purple-500{
    --tw-gradient-to: #8b5cf6;
  }

  .tablet\:to-purple-600{
    --tw-gradient-to: #7c3aed;
  }

  .tablet\:to-purple-700{
    --tw-gradient-to: #6d28d9;
  }

  .tablet\:to-purple-800{
    --tw-gradient-to: #5b21b6;
  }

  .tablet\:to-purple-900{
    --tw-gradient-to: #4c1d95;
  }

  .tablet\:to-pink-50{
    --tw-gradient-to: #fdf2f8;
  }

  .tablet\:to-pink-100{
    --tw-gradient-to: #fce7f3;
  }

  .tablet\:to-pink-200{
    --tw-gradient-to: #fbcfe8;
  }

  .tablet\:to-pink-300{
    --tw-gradient-to: #f9a8d4;
  }

  .tablet\:to-pink-400{
    --tw-gradient-to: #f472b6;
  }

  .tablet\:to-pink-500{
    --tw-gradient-to: #ec4899;
  }

  .tablet\:to-pink-600{
    --tw-gradient-to: #db2777;
  }

  .tablet\:to-pink-700{
    --tw-gradient-to: #be185d;
  }

  .tablet\:to-pink-800{
    --tw-gradient-to: #9d174d;
  }

  .tablet\:to-pink-900{
    --tw-gradient-to: #831843;
  }

  .tablet\:to-brown-light{
    --tw-gradient-to: #f0e9de;
  }

  .tablet\:to-brown-semi{
    --tw-gradient-to: #ded6ca;
  }

  .tablet\:to-brown-default{
    --tw-gradient-to: #7b6c5c;
  }

  .tablet\:to-brown-dark{
    --tw-gradient-to: #3d2706;
  }

  .tablet\:to-success-light{
    --tw-gradient-to: #91E09C;
  }

  .tablet\:to-success-default{
    --tw-gradient-to: #2D993C;
  }

  .tablet\:to-success-dark{
    --tw-gradient-to: #263B29;
  }

  .tablet\:to-error-light{
    --tw-gradient-to: #F98686;
  }

  .tablet\:to-error-default{
    --tw-gradient-to: #CB0707;
  }

  .tablet\:to-error-dark{
    --tw-gradient-to: #580000;
  }

  .tablet\:to-navigation-dark{
    --tw-gradient-to: #ffcd00;
  }

  .tablet\:hover\:to-transparent:hover{
    --tw-gradient-to: transparent;
  }

  .tablet\:hover\:to-current:hover{
    --tw-gradient-to: currentColor;
  }

  .tablet\:hover\:to-black:hover{
    --tw-gradient-to: #000;
  }

  .tablet\:hover\:to-white:hover{
    --tw-gradient-to: #fff;
  }

  .tablet\:hover\:to-gray-50:hover{
    --tw-gradient-to: #f9fafb;
  }

  .tablet\:hover\:to-gray-100:hover{
    --tw-gradient-to: #f3f4f6;
  }

  .tablet\:hover\:to-gray-200:hover{
    --tw-gradient-to: #e5e7eb;
  }

  .tablet\:hover\:to-gray-300:hover{
    --tw-gradient-to: #d1d5db;
  }

  .tablet\:hover\:to-gray-400:hover{
    --tw-gradient-to: #9ca3af;
  }

  .tablet\:hover\:to-gray-500:hover{
    --tw-gradient-to: #6b7280;
  }

  .tablet\:hover\:to-gray-600:hover{
    --tw-gradient-to: #4b5563;
  }

  .tablet\:hover\:to-gray-700:hover{
    --tw-gradient-to: #374151;
  }

  .tablet\:hover\:to-gray-800:hover{
    --tw-gradient-to: #1f2937;
  }

  .tablet\:hover\:to-gray-900:hover{
    --tw-gradient-to: #111827;
  }

  .tablet\:hover\:to-red-50:hover{
    --tw-gradient-to: #fef2f2;
  }

  .tablet\:hover\:to-red-100:hover{
    --tw-gradient-to: #fee2e2;
  }

  .tablet\:hover\:to-red-200:hover{
    --tw-gradient-to: #fecaca;
  }

  .tablet\:hover\:to-red-300:hover{
    --tw-gradient-to: #fca5a5;
  }

  .tablet\:hover\:to-red-400:hover{
    --tw-gradient-to: #f87171;
  }

  .tablet\:hover\:to-red-500:hover{
    --tw-gradient-to: #ef4444;
  }

  .tablet\:hover\:to-red-600:hover{
    --tw-gradient-to: #dc2626;
  }

  .tablet\:hover\:to-red-700:hover{
    --tw-gradient-to: #b91c1c;
  }

  .tablet\:hover\:to-red-800:hover{
    --tw-gradient-to: #991b1b;
  }

  .tablet\:hover\:to-red-900:hover{
    --tw-gradient-to: #7f1d1d;
  }

  .tablet\:hover\:to-red-light:hover{
    --tw-gradient-to: #EA7A7A;
  }

  .tablet\:hover\:to-red-default:hover{
    --tw-gradient-to: #B90000;
  }

  .tablet\:hover\:to-red-dark:hover{
    --tw-gradient-to: #580000;
  }

  .tablet\:hover\:to-yellow-50:hover{
    --tw-gradient-to: #fffbeb;
  }

  .tablet\:hover\:to-yellow-100:hover{
    --tw-gradient-to: #fef3c7;
  }

  .tablet\:hover\:to-yellow-200:hover{
    --tw-gradient-to: #fde68a;
  }

  .tablet\:hover\:to-yellow-300:hover{
    --tw-gradient-to: #fcd34d;
  }

  .tablet\:hover\:to-yellow-400:hover{
    --tw-gradient-to: #fbbf24;
  }

  .tablet\:hover\:to-yellow-500:hover{
    --tw-gradient-to: #f59e0b;
  }

  .tablet\:hover\:to-yellow-600:hover{
    --tw-gradient-to: #d97706;
  }

  .tablet\:hover\:to-yellow-700:hover{
    --tw-gradient-to: #b45309;
  }

  .tablet\:hover\:to-yellow-800:hover{
    --tw-gradient-to: #92400e;
  }

  .tablet\:hover\:to-yellow-900:hover{
    --tw-gradient-to: #78350f;
  }

  .tablet\:hover\:to-green-50:hover{
    --tw-gradient-to: #ecfdf5;
  }

  .tablet\:hover\:to-green-100:hover{
    --tw-gradient-to: #d1fae5;
  }

  .tablet\:hover\:to-green-200:hover{
    --tw-gradient-to: #a7f3d0;
  }

  .tablet\:hover\:to-green-300:hover{
    --tw-gradient-to: #6ee7b7;
  }

  .tablet\:hover\:to-green-400:hover{
    --tw-gradient-to: #34d399;
  }

  .tablet\:hover\:to-green-500:hover{
    --tw-gradient-to: #10b981;
  }

  .tablet\:hover\:to-green-600:hover{
    --tw-gradient-to: #059669;
  }

  .tablet\:hover\:to-green-700:hover{
    --tw-gradient-to: #047857;
  }

  .tablet\:hover\:to-green-800:hover{
    --tw-gradient-to: #065f46;
  }

  .tablet\:hover\:to-green-900:hover{
    --tw-gradient-to: #064e3b;
  }

  .tablet\:hover\:to-green-light:hover{
    --tw-gradient-to: #B5D1B9;
  }

  .tablet\:hover\:to-green-default:hover{
    --tw-gradient-to: #263B29;
  }

  .tablet\:hover\:to-green-dark:hover{
    --tw-gradient-to: #1C251E;
  }

  .tablet\:hover\:to-blue-50:hover{
    --tw-gradient-to: #eff6ff;
  }

  .tablet\:hover\:to-blue-100:hover{
    --tw-gradient-to: #dbeafe;
  }

  .tablet\:hover\:to-blue-200:hover{
    --tw-gradient-to: #bfdbfe;
  }

  .tablet\:hover\:to-blue-300:hover{
    --tw-gradient-to: #93c5fd;
  }

  .tablet\:hover\:to-blue-400:hover{
    --tw-gradient-to: #60a5fa;
  }

  .tablet\:hover\:to-blue-500:hover{
    --tw-gradient-to: #3b82f6;
  }

  .tablet\:hover\:to-blue-600:hover{
    --tw-gradient-to: #2563eb;
  }

  .tablet\:hover\:to-blue-700:hover{
    --tw-gradient-to: #1d4ed8;
  }

  .tablet\:hover\:to-blue-800:hover{
    --tw-gradient-to: #1e40af;
  }

  .tablet\:hover\:to-blue-900:hover{
    --tw-gradient-to: #1e3a8a;
  }

  .tablet\:hover\:to-indigo-50:hover{
    --tw-gradient-to: #eef2ff;
  }

  .tablet\:hover\:to-indigo-100:hover{
    --tw-gradient-to: #e0e7ff;
  }

  .tablet\:hover\:to-indigo-200:hover{
    --tw-gradient-to: #c7d2fe;
  }

  .tablet\:hover\:to-indigo-300:hover{
    --tw-gradient-to: #a5b4fc;
  }

  .tablet\:hover\:to-indigo-400:hover{
    --tw-gradient-to: #818cf8;
  }

  .tablet\:hover\:to-indigo-500:hover{
    --tw-gradient-to: #6366f1;
  }

  .tablet\:hover\:to-indigo-600:hover{
    --tw-gradient-to: #4f46e5;
  }

  .tablet\:hover\:to-indigo-700:hover{
    --tw-gradient-to: #4338ca;
  }

  .tablet\:hover\:to-indigo-800:hover{
    --tw-gradient-to: #3730a3;
  }

  .tablet\:hover\:to-indigo-900:hover{
    --tw-gradient-to: #312e81;
  }

  .tablet\:hover\:to-purple-50:hover{
    --tw-gradient-to: #f5f3ff;
  }

  .tablet\:hover\:to-purple-100:hover{
    --tw-gradient-to: #ede9fe;
  }

  .tablet\:hover\:to-purple-200:hover{
    --tw-gradient-to: #ddd6fe;
  }

  .tablet\:hover\:to-purple-300:hover{
    --tw-gradient-to: #c4b5fd;
  }

  .tablet\:hover\:to-purple-400:hover{
    --tw-gradient-to: #a78bfa;
  }

  .tablet\:hover\:to-purple-500:hover{
    --tw-gradient-to: #8b5cf6;
  }

  .tablet\:hover\:to-purple-600:hover{
    --tw-gradient-to: #7c3aed;
  }

  .tablet\:hover\:to-purple-700:hover{
    --tw-gradient-to: #6d28d9;
  }

  .tablet\:hover\:to-purple-800:hover{
    --tw-gradient-to: #5b21b6;
  }

  .tablet\:hover\:to-purple-900:hover{
    --tw-gradient-to: #4c1d95;
  }

  .tablet\:hover\:to-pink-50:hover{
    --tw-gradient-to: #fdf2f8;
  }

  .tablet\:hover\:to-pink-100:hover{
    --tw-gradient-to: #fce7f3;
  }

  .tablet\:hover\:to-pink-200:hover{
    --tw-gradient-to: #fbcfe8;
  }

  .tablet\:hover\:to-pink-300:hover{
    --tw-gradient-to: #f9a8d4;
  }

  .tablet\:hover\:to-pink-400:hover{
    --tw-gradient-to: #f472b6;
  }

  .tablet\:hover\:to-pink-500:hover{
    --tw-gradient-to: #ec4899;
  }

  .tablet\:hover\:to-pink-600:hover{
    --tw-gradient-to: #db2777;
  }

  .tablet\:hover\:to-pink-700:hover{
    --tw-gradient-to: #be185d;
  }

  .tablet\:hover\:to-pink-800:hover{
    --tw-gradient-to: #9d174d;
  }

  .tablet\:hover\:to-pink-900:hover{
    --tw-gradient-to: #831843;
  }

  .tablet\:hover\:to-brown-light:hover{
    --tw-gradient-to: #f0e9de;
  }

  .tablet\:hover\:to-brown-semi:hover{
    --tw-gradient-to: #ded6ca;
  }

  .tablet\:hover\:to-brown-default:hover{
    --tw-gradient-to: #7b6c5c;
  }

  .tablet\:hover\:to-brown-dark:hover{
    --tw-gradient-to: #3d2706;
  }

  .tablet\:hover\:to-success-light:hover{
    --tw-gradient-to: #91E09C;
  }

  .tablet\:hover\:to-success-default:hover{
    --tw-gradient-to: #2D993C;
  }

  .tablet\:hover\:to-success-dark:hover{
    --tw-gradient-to: #263B29;
  }

  .tablet\:hover\:to-error-light:hover{
    --tw-gradient-to: #F98686;
  }

  .tablet\:hover\:to-error-default:hover{
    --tw-gradient-to: #CB0707;
  }

  .tablet\:hover\:to-error-dark:hover{
    --tw-gradient-to: #580000;
  }

  .tablet\:hover\:to-navigation-dark:hover{
    --tw-gradient-to: #ffcd00;
  }

  .tablet\:focus\:to-transparent:focus{
    --tw-gradient-to: transparent;
  }

  .tablet\:focus\:to-current:focus{
    --tw-gradient-to: currentColor;
  }

  .tablet\:focus\:to-black:focus{
    --tw-gradient-to: #000;
  }

  .tablet\:focus\:to-white:focus{
    --tw-gradient-to: #fff;
  }

  .tablet\:focus\:to-gray-50:focus{
    --tw-gradient-to: #f9fafb;
  }

  .tablet\:focus\:to-gray-100:focus{
    --tw-gradient-to: #f3f4f6;
  }

  .tablet\:focus\:to-gray-200:focus{
    --tw-gradient-to: #e5e7eb;
  }

  .tablet\:focus\:to-gray-300:focus{
    --tw-gradient-to: #d1d5db;
  }

  .tablet\:focus\:to-gray-400:focus{
    --tw-gradient-to: #9ca3af;
  }

  .tablet\:focus\:to-gray-500:focus{
    --tw-gradient-to: #6b7280;
  }

  .tablet\:focus\:to-gray-600:focus{
    --tw-gradient-to: #4b5563;
  }

  .tablet\:focus\:to-gray-700:focus{
    --tw-gradient-to: #374151;
  }

  .tablet\:focus\:to-gray-800:focus{
    --tw-gradient-to: #1f2937;
  }

  .tablet\:focus\:to-gray-900:focus{
    --tw-gradient-to: #111827;
  }

  .tablet\:focus\:to-red-50:focus{
    --tw-gradient-to: #fef2f2;
  }

  .tablet\:focus\:to-red-100:focus{
    --tw-gradient-to: #fee2e2;
  }

  .tablet\:focus\:to-red-200:focus{
    --tw-gradient-to: #fecaca;
  }

  .tablet\:focus\:to-red-300:focus{
    --tw-gradient-to: #fca5a5;
  }

  .tablet\:focus\:to-red-400:focus{
    --tw-gradient-to: #f87171;
  }

  .tablet\:focus\:to-red-500:focus{
    --tw-gradient-to: #ef4444;
  }

  .tablet\:focus\:to-red-600:focus{
    --tw-gradient-to: #dc2626;
  }

  .tablet\:focus\:to-red-700:focus{
    --tw-gradient-to: #b91c1c;
  }

  .tablet\:focus\:to-red-800:focus{
    --tw-gradient-to: #991b1b;
  }

  .tablet\:focus\:to-red-900:focus{
    --tw-gradient-to: #7f1d1d;
  }

  .tablet\:focus\:to-red-light:focus{
    --tw-gradient-to: #EA7A7A;
  }

  .tablet\:focus\:to-red-default:focus{
    --tw-gradient-to: #B90000;
  }

  .tablet\:focus\:to-red-dark:focus{
    --tw-gradient-to: #580000;
  }

  .tablet\:focus\:to-yellow-50:focus{
    --tw-gradient-to: #fffbeb;
  }

  .tablet\:focus\:to-yellow-100:focus{
    --tw-gradient-to: #fef3c7;
  }

  .tablet\:focus\:to-yellow-200:focus{
    --tw-gradient-to: #fde68a;
  }

  .tablet\:focus\:to-yellow-300:focus{
    --tw-gradient-to: #fcd34d;
  }

  .tablet\:focus\:to-yellow-400:focus{
    --tw-gradient-to: #fbbf24;
  }

  .tablet\:focus\:to-yellow-500:focus{
    --tw-gradient-to: #f59e0b;
  }

  .tablet\:focus\:to-yellow-600:focus{
    --tw-gradient-to: #d97706;
  }

  .tablet\:focus\:to-yellow-700:focus{
    --tw-gradient-to: #b45309;
  }

  .tablet\:focus\:to-yellow-800:focus{
    --tw-gradient-to: #92400e;
  }

  .tablet\:focus\:to-yellow-900:focus{
    --tw-gradient-to: #78350f;
  }

  .tablet\:focus\:to-green-50:focus{
    --tw-gradient-to: #ecfdf5;
  }

  .tablet\:focus\:to-green-100:focus{
    --tw-gradient-to: #d1fae5;
  }

  .tablet\:focus\:to-green-200:focus{
    --tw-gradient-to: #a7f3d0;
  }

  .tablet\:focus\:to-green-300:focus{
    --tw-gradient-to: #6ee7b7;
  }

  .tablet\:focus\:to-green-400:focus{
    --tw-gradient-to: #34d399;
  }

  .tablet\:focus\:to-green-500:focus{
    --tw-gradient-to: #10b981;
  }

  .tablet\:focus\:to-green-600:focus{
    --tw-gradient-to: #059669;
  }

  .tablet\:focus\:to-green-700:focus{
    --tw-gradient-to: #047857;
  }

  .tablet\:focus\:to-green-800:focus{
    --tw-gradient-to: #065f46;
  }

  .tablet\:focus\:to-green-900:focus{
    --tw-gradient-to: #064e3b;
  }

  .tablet\:focus\:to-green-light:focus{
    --tw-gradient-to: #B5D1B9;
  }

  .tablet\:focus\:to-green-default:focus{
    --tw-gradient-to: #263B29;
  }

  .tablet\:focus\:to-green-dark:focus{
    --tw-gradient-to: #1C251E;
  }

  .tablet\:focus\:to-blue-50:focus{
    --tw-gradient-to: #eff6ff;
  }

  .tablet\:focus\:to-blue-100:focus{
    --tw-gradient-to: #dbeafe;
  }

  .tablet\:focus\:to-blue-200:focus{
    --tw-gradient-to: #bfdbfe;
  }

  .tablet\:focus\:to-blue-300:focus{
    --tw-gradient-to: #93c5fd;
  }

  .tablet\:focus\:to-blue-400:focus{
    --tw-gradient-to: #60a5fa;
  }

  .tablet\:focus\:to-blue-500:focus{
    --tw-gradient-to: #3b82f6;
  }

  .tablet\:focus\:to-blue-600:focus{
    --tw-gradient-to: #2563eb;
  }

  .tablet\:focus\:to-blue-700:focus{
    --tw-gradient-to: #1d4ed8;
  }

  .tablet\:focus\:to-blue-800:focus{
    --tw-gradient-to: #1e40af;
  }

  .tablet\:focus\:to-blue-900:focus{
    --tw-gradient-to: #1e3a8a;
  }

  .tablet\:focus\:to-indigo-50:focus{
    --tw-gradient-to: #eef2ff;
  }

  .tablet\:focus\:to-indigo-100:focus{
    --tw-gradient-to: #e0e7ff;
  }

  .tablet\:focus\:to-indigo-200:focus{
    --tw-gradient-to: #c7d2fe;
  }

  .tablet\:focus\:to-indigo-300:focus{
    --tw-gradient-to: #a5b4fc;
  }

  .tablet\:focus\:to-indigo-400:focus{
    --tw-gradient-to: #818cf8;
  }

  .tablet\:focus\:to-indigo-500:focus{
    --tw-gradient-to: #6366f1;
  }

  .tablet\:focus\:to-indigo-600:focus{
    --tw-gradient-to: #4f46e5;
  }

  .tablet\:focus\:to-indigo-700:focus{
    --tw-gradient-to: #4338ca;
  }

  .tablet\:focus\:to-indigo-800:focus{
    --tw-gradient-to: #3730a3;
  }

  .tablet\:focus\:to-indigo-900:focus{
    --tw-gradient-to: #312e81;
  }

  .tablet\:focus\:to-purple-50:focus{
    --tw-gradient-to: #f5f3ff;
  }

  .tablet\:focus\:to-purple-100:focus{
    --tw-gradient-to: #ede9fe;
  }

  .tablet\:focus\:to-purple-200:focus{
    --tw-gradient-to: #ddd6fe;
  }

  .tablet\:focus\:to-purple-300:focus{
    --tw-gradient-to: #c4b5fd;
  }

  .tablet\:focus\:to-purple-400:focus{
    --tw-gradient-to: #a78bfa;
  }

  .tablet\:focus\:to-purple-500:focus{
    --tw-gradient-to: #8b5cf6;
  }

  .tablet\:focus\:to-purple-600:focus{
    --tw-gradient-to: #7c3aed;
  }

  .tablet\:focus\:to-purple-700:focus{
    --tw-gradient-to: #6d28d9;
  }

  .tablet\:focus\:to-purple-800:focus{
    --tw-gradient-to: #5b21b6;
  }

  .tablet\:focus\:to-purple-900:focus{
    --tw-gradient-to: #4c1d95;
  }

  .tablet\:focus\:to-pink-50:focus{
    --tw-gradient-to: #fdf2f8;
  }

  .tablet\:focus\:to-pink-100:focus{
    --tw-gradient-to: #fce7f3;
  }

  .tablet\:focus\:to-pink-200:focus{
    --tw-gradient-to: #fbcfe8;
  }

  .tablet\:focus\:to-pink-300:focus{
    --tw-gradient-to: #f9a8d4;
  }

  .tablet\:focus\:to-pink-400:focus{
    --tw-gradient-to: #f472b6;
  }

  .tablet\:focus\:to-pink-500:focus{
    --tw-gradient-to: #ec4899;
  }

  .tablet\:focus\:to-pink-600:focus{
    --tw-gradient-to: #db2777;
  }

  .tablet\:focus\:to-pink-700:focus{
    --tw-gradient-to: #be185d;
  }

  .tablet\:focus\:to-pink-800:focus{
    --tw-gradient-to: #9d174d;
  }

  .tablet\:focus\:to-pink-900:focus{
    --tw-gradient-to: #831843;
  }

  .tablet\:focus\:to-brown-light:focus{
    --tw-gradient-to: #f0e9de;
  }

  .tablet\:focus\:to-brown-semi:focus{
    --tw-gradient-to: #ded6ca;
  }

  .tablet\:focus\:to-brown-default:focus{
    --tw-gradient-to: #7b6c5c;
  }

  .tablet\:focus\:to-brown-dark:focus{
    --tw-gradient-to: #3d2706;
  }

  .tablet\:focus\:to-success-light:focus{
    --tw-gradient-to: #91E09C;
  }

  .tablet\:focus\:to-success-default:focus{
    --tw-gradient-to: #2D993C;
  }

  .tablet\:focus\:to-success-dark:focus{
    --tw-gradient-to: #263B29;
  }

  .tablet\:focus\:to-error-light:focus{
    --tw-gradient-to: #F98686;
  }

  .tablet\:focus\:to-error-default:focus{
    --tw-gradient-to: #CB0707;
  }

  .tablet\:focus\:to-error-dark:focus{
    --tw-gradient-to: #580000;
  }

  .tablet\:focus\:to-navigation-dark:focus{
    --tw-gradient-to: #ffcd00;
  }

  .tablet\:decoration-slice{
    -webkit-box-decoration-break: slice;
            box-decoration-break: slice;
  }

  .tablet\:decoration-clone{
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
  }

  .tablet\:bg-auto{
    background-size: auto;
  }

  .tablet\:bg-cover{
    background-size: cover;
  }

  .tablet\:bg-contain{
    background-size: contain;
  }

  .tablet\:bg-fixed{
    background-attachment: fixed;
  }

  .tablet\:bg-local{
    background-attachment: local;
  }

  .tablet\:bg-scroll{
    background-attachment: scroll;
  }

  .tablet\:bg-clip-border{
    background-clip: border-box;
  }

  .tablet\:bg-clip-padding{
    background-clip: padding-box;
  }

  .tablet\:bg-clip-content{
    background-clip: content-box;
  }

  .tablet\:bg-clip-text{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .tablet\:bg-bottom{
    background-position: bottom;
  }

  .tablet\:bg-center{
    background-position: center;
  }

  .tablet\:bg-left{
    background-position: left;
  }

  .tablet\:bg-left-bottom{
    background-position: left bottom;
  }

  .tablet\:bg-left-top{
    background-position: left top;
  }

  .tablet\:bg-right{
    background-position: right;
  }

  .tablet\:bg-right-bottom{
    background-position: right bottom;
  }

  .tablet\:bg-right-top{
    background-position: right top;
  }

  .tablet\:bg-top{
    background-position: top;
  }

  .tablet\:bg-repeat{
    background-repeat: repeat;
  }

  .tablet\:bg-no-repeat{
    background-repeat: no-repeat;
  }

  .tablet\:bg-repeat-x{
    background-repeat: repeat-x;
  }

  .tablet\:bg-repeat-y{
    background-repeat: repeat-y;
  }

  .tablet\:bg-repeat-round{
    background-repeat: round;
  }

  .tablet\:bg-repeat-space{
    background-repeat: space;
  }

  .tablet\:bg-origin-border{
    background-origin: border-box;
  }

  .tablet\:bg-origin-padding{
    background-origin: padding-box;
  }

  .tablet\:bg-origin-content{
    background-origin: content-box;
  }

  .tablet\:fill-current{
    fill: currentColor;
  }

  .tablet\:stroke-current{
    stroke: currentColor;
  }

  .tablet\:stroke-0{
    stroke-width: 0;
  }

  .tablet\:stroke-1{
    stroke-width: 1;
  }

  .tablet\:stroke-2{
    stroke-width: 2;
  }

  .tablet\:object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .tablet\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .tablet\:object-fill{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .tablet\:object-none{
    -o-object-fit: none;
       object-fit: none;
  }

  .tablet\:object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .tablet\:object-bottom{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .tablet\:object-center{
    -o-object-position: center;
       object-position: center;
  }

  .tablet\:object-left{
    -o-object-position: left;
       object-position: left;
  }

  .tablet\:object-left-bottom{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .tablet\:object-left-top{
    -o-object-position: left top;
       object-position: left top;
  }

  .tablet\:object-right{
    -o-object-position: right;
       object-position: right;
  }

  .tablet\:object-right-bottom{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .tablet\:object-right-top{
    -o-object-position: right top;
       object-position: right top;
  }

  .tablet\:object-top{
    -o-object-position: top;
       object-position: top;
  }

  .tablet\:p-0{
    padding: 0px;
  }

  .tablet\:p-1{
    padding: 0.25rem;
  }

  .tablet\:p-2{
    padding: 0.5rem;
  }

  .tablet\:p-3{
    padding: 0.75rem;
  }

  .tablet\:p-4{
    padding: 1rem;
  }

  .tablet\:p-5{
    padding: 1.25rem;
  }

  .tablet\:p-6{
    padding: 1.5rem;
  }

  .tablet\:p-7{
    padding: 1.75rem;
  }

  .tablet\:p-8{
    padding: 2rem;
  }

  .tablet\:p-9{
    padding: 2.25rem;
  }

  .tablet\:p-10{
    padding: 2.5rem;
  }

  .tablet\:p-11{
    padding: 2.75rem;
  }

  .tablet\:p-12{
    padding: 3rem;
  }

  .tablet\:p-14{
    padding: 3.5rem;
  }

  .tablet\:p-16{
    padding: 4rem;
  }

  .tablet\:p-20{
    padding: 5rem;
  }

  .tablet\:p-24{
    padding: 6rem;
  }

  .tablet\:p-28{
    padding: 7rem;
  }

  .tablet\:p-32{
    padding: 8rem;
  }

  .tablet\:p-36{
    padding: 9rem;
  }

  .tablet\:p-40{
    padding: 10rem;
  }

  .tablet\:p-44{
    padding: 11rem;
  }

  .tablet\:p-48{
    padding: 12rem;
  }

  .tablet\:p-52{
    padding: 13rem;
  }

  .tablet\:p-56{
    padding: 14rem;
  }

  .tablet\:p-60{
    padding: 15rem;
  }

  .tablet\:p-64{
    padding: 16rem;
  }

  .tablet\:p-72{
    padding: 18rem;
  }

  .tablet\:p-80{
    padding: 20rem;
  }

  .tablet\:p-96{
    padding: 24rem;
  }

  .tablet\:p-px{
    padding: 1px;
  }

  .tablet\:p-0\.5{
    padding: 0.125rem;
  }

  .tablet\:p-1\.5{
    padding: 0.375rem;
  }

  .tablet\:p-2\.5{
    padding: 0.625rem;
  }

  .tablet\:p-3\.5{
    padding: 0.875rem;
  }

  .tablet\:last\:p-0:last-child{
    padding: 0px;
  }

  .tablet\:last\:p-1:last-child{
    padding: 0.25rem;
  }

  .tablet\:last\:p-2:last-child{
    padding: 0.5rem;
  }

  .tablet\:last\:p-3:last-child{
    padding: 0.75rem;
  }

  .tablet\:last\:p-4:last-child{
    padding: 1rem;
  }

  .tablet\:last\:p-5:last-child{
    padding: 1.25rem;
  }

  .tablet\:last\:p-6:last-child{
    padding: 1.5rem;
  }

  .tablet\:last\:p-7:last-child{
    padding: 1.75rem;
  }

  .tablet\:last\:p-8:last-child{
    padding: 2rem;
  }

  .tablet\:last\:p-9:last-child{
    padding: 2.25rem;
  }

  .tablet\:last\:p-10:last-child{
    padding: 2.5rem;
  }

  .tablet\:last\:p-11:last-child{
    padding: 2.75rem;
  }

  .tablet\:last\:p-12:last-child{
    padding: 3rem;
  }

  .tablet\:last\:p-14:last-child{
    padding: 3.5rem;
  }

  .tablet\:last\:p-16:last-child{
    padding: 4rem;
  }

  .tablet\:last\:p-20:last-child{
    padding: 5rem;
  }

  .tablet\:last\:p-24:last-child{
    padding: 6rem;
  }

  .tablet\:last\:p-28:last-child{
    padding: 7rem;
  }

  .tablet\:last\:p-32:last-child{
    padding: 8rem;
  }

  .tablet\:last\:p-36:last-child{
    padding: 9rem;
  }

  .tablet\:last\:p-40:last-child{
    padding: 10rem;
  }

  .tablet\:last\:p-44:last-child{
    padding: 11rem;
  }

  .tablet\:last\:p-48:last-child{
    padding: 12rem;
  }

  .tablet\:last\:p-52:last-child{
    padding: 13rem;
  }

  .tablet\:last\:p-56:last-child{
    padding: 14rem;
  }

  .tablet\:last\:p-60:last-child{
    padding: 15rem;
  }

  .tablet\:last\:p-64:last-child{
    padding: 16rem;
  }

  .tablet\:last\:p-72:last-child{
    padding: 18rem;
  }

  .tablet\:last\:p-80:last-child{
    padding: 20rem;
  }

  .tablet\:last\:p-96:last-child{
    padding: 24rem;
  }

  .tablet\:last\:p-px:last-child{
    padding: 1px;
  }

  .tablet\:last\:p-0\.5:last-child{
    padding: 0.125rem;
  }

  .tablet\:last\:p-1\.5:last-child{
    padding: 0.375rem;
  }

  .tablet\:last\:p-2\.5:last-child{
    padding: 0.625rem;
  }

  .tablet\:last\:p-3\.5:last-child{
    padding: 0.875rem;
  }

  .tablet\:hover\:p-0:hover{
    padding: 0px;
  }

  .tablet\:hover\:p-1:hover{
    padding: 0.25rem;
  }

  .tablet\:hover\:p-2:hover{
    padding: 0.5rem;
  }

  .tablet\:hover\:p-3:hover{
    padding: 0.75rem;
  }

  .tablet\:hover\:p-4:hover{
    padding: 1rem;
  }

  .tablet\:hover\:p-5:hover{
    padding: 1.25rem;
  }

  .tablet\:hover\:p-6:hover{
    padding: 1.5rem;
  }

  .tablet\:hover\:p-7:hover{
    padding: 1.75rem;
  }

  .tablet\:hover\:p-8:hover{
    padding: 2rem;
  }

  .tablet\:hover\:p-9:hover{
    padding: 2.25rem;
  }

  .tablet\:hover\:p-10:hover{
    padding: 2.5rem;
  }

  .tablet\:hover\:p-11:hover{
    padding: 2.75rem;
  }

  .tablet\:hover\:p-12:hover{
    padding: 3rem;
  }

  .tablet\:hover\:p-14:hover{
    padding: 3.5rem;
  }

  .tablet\:hover\:p-16:hover{
    padding: 4rem;
  }

  .tablet\:hover\:p-20:hover{
    padding: 5rem;
  }

  .tablet\:hover\:p-24:hover{
    padding: 6rem;
  }

  .tablet\:hover\:p-28:hover{
    padding: 7rem;
  }

  .tablet\:hover\:p-32:hover{
    padding: 8rem;
  }

  .tablet\:hover\:p-36:hover{
    padding: 9rem;
  }

  .tablet\:hover\:p-40:hover{
    padding: 10rem;
  }

  .tablet\:hover\:p-44:hover{
    padding: 11rem;
  }

  .tablet\:hover\:p-48:hover{
    padding: 12rem;
  }

  .tablet\:hover\:p-52:hover{
    padding: 13rem;
  }

  .tablet\:hover\:p-56:hover{
    padding: 14rem;
  }

  .tablet\:hover\:p-60:hover{
    padding: 15rem;
  }

  .tablet\:hover\:p-64:hover{
    padding: 16rem;
  }

  .tablet\:hover\:p-72:hover{
    padding: 18rem;
  }

  .tablet\:hover\:p-80:hover{
    padding: 20rem;
  }

  .tablet\:hover\:p-96:hover{
    padding: 24rem;
  }

  .tablet\:hover\:p-px:hover{
    padding: 1px;
  }

  .tablet\:hover\:p-0\.5:hover{
    padding: 0.125rem;
  }

  .tablet\:hover\:p-1\.5:hover{
    padding: 0.375rem;
  }

  .tablet\:hover\:p-2\.5:hover{
    padding: 0.625rem;
  }

  .tablet\:hover\:p-3\.5:hover{
    padding: 0.875rem;
  }

  .tablet\:focus\:p-0:focus{
    padding: 0px;
  }

  .tablet\:focus\:p-1:focus{
    padding: 0.25rem;
  }

  .tablet\:focus\:p-2:focus{
    padding: 0.5rem;
  }

  .tablet\:focus\:p-3:focus{
    padding: 0.75rem;
  }

  .tablet\:focus\:p-4:focus{
    padding: 1rem;
  }

  .tablet\:focus\:p-5:focus{
    padding: 1.25rem;
  }

  .tablet\:focus\:p-6:focus{
    padding: 1.5rem;
  }

  .tablet\:focus\:p-7:focus{
    padding: 1.75rem;
  }

  .tablet\:focus\:p-8:focus{
    padding: 2rem;
  }

  .tablet\:focus\:p-9:focus{
    padding: 2.25rem;
  }

  .tablet\:focus\:p-10:focus{
    padding: 2.5rem;
  }

  .tablet\:focus\:p-11:focus{
    padding: 2.75rem;
  }

  .tablet\:focus\:p-12:focus{
    padding: 3rem;
  }

  .tablet\:focus\:p-14:focus{
    padding: 3.5rem;
  }

  .tablet\:focus\:p-16:focus{
    padding: 4rem;
  }

  .tablet\:focus\:p-20:focus{
    padding: 5rem;
  }

  .tablet\:focus\:p-24:focus{
    padding: 6rem;
  }

  .tablet\:focus\:p-28:focus{
    padding: 7rem;
  }

  .tablet\:focus\:p-32:focus{
    padding: 8rem;
  }

  .tablet\:focus\:p-36:focus{
    padding: 9rem;
  }

  .tablet\:focus\:p-40:focus{
    padding: 10rem;
  }

  .tablet\:focus\:p-44:focus{
    padding: 11rem;
  }

  .tablet\:focus\:p-48:focus{
    padding: 12rem;
  }

  .tablet\:focus\:p-52:focus{
    padding: 13rem;
  }

  .tablet\:focus\:p-56:focus{
    padding: 14rem;
  }

  .tablet\:focus\:p-60:focus{
    padding: 15rem;
  }

  .tablet\:focus\:p-64:focus{
    padding: 16rem;
  }

  .tablet\:focus\:p-72:focus{
    padding: 18rem;
  }

  .tablet\:focus\:p-80:focus{
    padding: 20rem;
  }

  .tablet\:focus\:p-96:focus{
    padding: 24rem;
  }

  .tablet\:focus\:p-px:focus{
    padding: 1px;
  }

  .tablet\:focus\:p-0\.5:focus{
    padding: 0.125rem;
  }

  .tablet\:focus\:p-1\.5:focus{
    padding: 0.375rem;
  }

  .tablet\:focus\:p-2\.5:focus{
    padding: 0.625rem;
  }

  .tablet\:focus\:p-3\.5:focus{
    padding: 0.875rem;
  }

  .tablet\:first\:p-0:first-child{
    padding: 0px;
  }

  .tablet\:first\:p-1:first-child{
    padding: 0.25rem;
  }

  .tablet\:first\:p-2:first-child{
    padding: 0.5rem;
  }

  .tablet\:first\:p-3:first-child{
    padding: 0.75rem;
  }

  .tablet\:first\:p-4:first-child{
    padding: 1rem;
  }

  .tablet\:first\:p-5:first-child{
    padding: 1.25rem;
  }

  .tablet\:first\:p-6:first-child{
    padding: 1.5rem;
  }

  .tablet\:first\:p-7:first-child{
    padding: 1.75rem;
  }

  .tablet\:first\:p-8:first-child{
    padding: 2rem;
  }

  .tablet\:first\:p-9:first-child{
    padding: 2.25rem;
  }

  .tablet\:first\:p-10:first-child{
    padding: 2.5rem;
  }

  .tablet\:first\:p-11:first-child{
    padding: 2.75rem;
  }

  .tablet\:first\:p-12:first-child{
    padding: 3rem;
  }

  .tablet\:first\:p-14:first-child{
    padding: 3.5rem;
  }

  .tablet\:first\:p-16:first-child{
    padding: 4rem;
  }

  .tablet\:first\:p-20:first-child{
    padding: 5rem;
  }

  .tablet\:first\:p-24:first-child{
    padding: 6rem;
  }

  .tablet\:first\:p-28:first-child{
    padding: 7rem;
  }

  .tablet\:first\:p-32:first-child{
    padding: 8rem;
  }

  .tablet\:first\:p-36:first-child{
    padding: 9rem;
  }

  .tablet\:first\:p-40:first-child{
    padding: 10rem;
  }

  .tablet\:first\:p-44:first-child{
    padding: 11rem;
  }

  .tablet\:first\:p-48:first-child{
    padding: 12rem;
  }

  .tablet\:first\:p-52:first-child{
    padding: 13rem;
  }

  .tablet\:first\:p-56:first-child{
    padding: 14rem;
  }

  .tablet\:first\:p-60:first-child{
    padding: 15rem;
  }

  .tablet\:first\:p-64:first-child{
    padding: 16rem;
  }

  .tablet\:first\:p-72:first-child{
    padding: 18rem;
  }

  .tablet\:first\:p-80:first-child{
    padding: 20rem;
  }

  .tablet\:first\:p-96:first-child{
    padding: 24rem;
  }

  .tablet\:first\:p-px:first-child{
    padding: 1px;
  }

  .tablet\:first\:p-0\.5:first-child{
    padding: 0.125rem;
  }

  .tablet\:first\:p-1\.5:first-child{
    padding: 0.375rem;
  }

  .tablet\:first\:p-2\.5:first-child{
    padding: 0.625rem;
  }

  .tablet\:first\:p-3\.5:first-child{
    padding: 0.875rem;
  }

  .tablet\:last\:p-0:last-child{
    padding: 0px;
  }

  .tablet\:last\:p-1:last-child{
    padding: 0.25rem;
  }

  .tablet\:last\:p-2:last-child{
    padding: 0.5rem;
  }

  .tablet\:last\:p-3:last-child{
    padding: 0.75rem;
  }

  .tablet\:last\:p-4:last-child{
    padding: 1rem;
  }

  .tablet\:last\:p-5:last-child{
    padding: 1.25rem;
  }

  .tablet\:last\:p-6:last-child{
    padding: 1.5rem;
  }

  .tablet\:last\:p-7:last-child{
    padding: 1.75rem;
  }

  .tablet\:last\:p-8:last-child{
    padding: 2rem;
  }

  .tablet\:last\:p-9:last-child{
    padding: 2.25rem;
  }

  .tablet\:last\:p-10:last-child{
    padding: 2.5rem;
  }

  .tablet\:last\:p-11:last-child{
    padding: 2.75rem;
  }

  .tablet\:last\:p-12:last-child{
    padding: 3rem;
  }

  .tablet\:last\:p-14:last-child{
    padding: 3.5rem;
  }

  .tablet\:last\:p-16:last-child{
    padding: 4rem;
  }

  .tablet\:last\:p-20:last-child{
    padding: 5rem;
  }

  .tablet\:last\:p-24:last-child{
    padding: 6rem;
  }

  .tablet\:last\:p-28:last-child{
    padding: 7rem;
  }

  .tablet\:last\:p-32:last-child{
    padding: 8rem;
  }

  .tablet\:last\:p-36:last-child{
    padding: 9rem;
  }

  .tablet\:last\:p-40:last-child{
    padding: 10rem;
  }

  .tablet\:last\:p-44:last-child{
    padding: 11rem;
  }

  .tablet\:last\:p-48:last-child{
    padding: 12rem;
  }

  .tablet\:last\:p-52:last-child{
    padding: 13rem;
  }

  .tablet\:last\:p-56:last-child{
    padding: 14rem;
  }

  .tablet\:last\:p-60:last-child{
    padding: 15rem;
  }

  .tablet\:last\:p-64:last-child{
    padding: 16rem;
  }

  .tablet\:last\:p-72:last-child{
    padding: 18rem;
  }

  .tablet\:last\:p-80:last-child{
    padding: 20rem;
  }

  .tablet\:last\:p-96:last-child{
    padding: 24rem;
  }

  .tablet\:last\:p-px:last-child{
    padding: 1px;
  }

  .tablet\:last\:p-0\.5:last-child{
    padding: 0.125rem;
  }

  .tablet\:last\:p-1\.5:last-child{
    padding: 0.375rem;
  }

  .tablet\:last\:p-2\.5:last-child{
    padding: 0.625rem;
  }

  .tablet\:last\:p-3\.5:last-child{
    padding: 0.875rem;
  }

  .tablet\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }

  .tablet\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .tablet\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .tablet\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .tablet\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .tablet\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .tablet\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .tablet\:px-7{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .tablet\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .tablet\:px-9{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .tablet\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .tablet\:px-11{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .tablet\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .tablet\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .tablet\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .tablet\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .tablet\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .tablet\:px-28{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .tablet\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .tablet\:px-36{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .tablet\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .tablet\:px-44{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .tablet\:px-48{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .tablet\:px-52{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .tablet\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .tablet\:px-60{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .tablet\:px-64{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .tablet\:px-72{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .tablet\:px-80{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .tablet\:px-96{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .tablet\:px-px{
    padding-left: 1px;
    padding-right: 1px;
  }

  .tablet\:px-0\.5{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .tablet\:px-1\.5{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .tablet\:px-2\.5{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .tablet\:px-3\.5{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .tablet\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .tablet\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .tablet\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .tablet\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .tablet\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .tablet\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .tablet\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .tablet\:py-7{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .tablet\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .tablet\:py-9{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .tablet\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .tablet\:py-11{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .tablet\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .tablet\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .tablet\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .tablet\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .tablet\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .tablet\:py-28{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .tablet\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .tablet\:py-36{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .tablet\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .tablet\:py-44{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .tablet\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .tablet\:py-52{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .tablet\:py-56{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .tablet\:py-60{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .tablet\:py-64{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .tablet\:py-72{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .tablet\:py-80{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .tablet\:py-96{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .tablet\:py-px{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .tablet\:py-0\.5{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .tablet\:py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .tablet\:py-2\.5{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .tablet\:py-3\.5{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .tablet\:last\:px-0:last-child{
    padding-left: 0px;
    padding-right: 0px;
  }

  .tablet\:last\:px-1:last-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .tablet\:last\:px-2:last-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .tablet\:last\:px-3:last-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .tablet\:last\:px-4:last-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .tablet\:last\:px-5:last-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .tablet\:last\:px-6:last-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .tablet\:last\:px-7:last-child{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .tablet\:last\:px-8:last-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .tablet\:last\:px-9:last-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .tablet\:last\:px-10:last-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .tablet\:last\:px-11:last-child{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .tablet\:last\:px-12:last-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .tablet\:last\:px-14:last-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .tablet\:last\:px-16:last-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .tablet\:last\:px-20:last-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .tablet\:last\:px-24:last-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .tablet\:last\:px-28:last-child{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .tablet\:last\:px-32:last-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .tablet\:last\:px-36:last-child{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .tablet\:last\:px-40:last-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .tablet\:last\:px-44:last-child{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .tablet\:last\:px-48:last-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .tablet\:last\:px-52:last-child{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .tablet\:last\:px-56:last-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .tablet\:last\:px-60:last-child{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .tablet\:last\:px-64:last-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .tablet\:last\:px-72:last-child{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .tablet\:last\:px-80:last-child{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .tablet\:last\:px-96:last-child{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .tablet\:last\:px-px:last-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .tablet\:last\:px-0\.5:last-child{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .tablet\:last\:px-1\.5:last-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .tablet\:last\:px-2\.5:last-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .tablet\:last\:px-3\.5:last-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .tablet\:last\:py-0:last-child{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .tablet\:last\:py-1:last-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .tablet\:last\:py-2:last-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .tablet\:last\:py-3:last-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .tablet\:last\:py-4:last-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .tablet\:last\:py-5:last-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .tablet\:last\:py-6:last-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .tablet\:last\:py-7:last-child{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .tablet\:last\:py-8:last-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .tablet\:last\:py-9:last-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .tablet\:last\:py-10:last-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .tablet\:last\:py-11:last-child{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .tablet\:last\:py-12:last-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .tablet\:last\:py-14:last-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .tablet\:last\:py-16:last-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .tablet\:last\:py-20:last-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .tablet\:last\:py-24:last-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .tablet\:last\:py-28:last-child{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .tablet\:last\:py-32:last-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .tablet\:last\:py-36:last-child{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .tablet\:last\:py-40:last-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .tablet\:last\:py-44:last-child{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .tablet\:last\:py-48:last-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .tablet\:last\:py-52:last-child{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .tablet\:last\:py-56:last-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .tablet\:last\:py-60:last-child{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .tablet\:last\:py-64:last-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .tablet\:last\:py-72:last-child{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .tablet\:last\:py-80:last-child{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .tablet\:last\:py-96:last-child{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .tablet\:last\:py-px:last-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .tablet\:last\:py-0\.5:last-child{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .tablet\:last\:py-1\.5:last-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .tablet\:last\:py-2\.5:last-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .tablet\:last\:py-3\.5:last-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .tablet\:hover\:px-0:hover{
    padding-left: 0px;
    padding-right: 0px;
  }

  .tablet\:hover\:px-1:hover{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .tablet\:hover\:px-2:hover{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .tablet\:hover\:px-3:hover{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .tablet\:hover\:px-4:hover{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .tablet\:hover\:px-5:hover{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .tablet\:hover\:px-6:hover{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .tablet\:hover\:px-7:hover{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .tablet\:hover\:px-8:hover{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .tablet\:hover\:px-9:hover{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .tablet\:hover\:px-10:hover{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .tablet\:hover\:px-11:hover{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .tablet\:hover\:px-12:hover{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .tablet\:hover\:px-14:hover{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .tablet\:hover\:px-16:hover{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .tablet\:hover\:px-20:hover{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .tablet\:hover\:px-24:hover{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .tablet\:hover\:px-28:hover{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .tablet\:hover\:px-32:hover{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .tablet\:hover\:px-36:hover{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .tablet\:hover\:px-40:hover{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .tablet\:hover\:px-44:hover{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .tablet\:hover\:px-48:hover{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .tablet\:hover\:px-52:hover{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .tablet\:hover\:px-56:hover{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .tablet\:hover\:px-60:hover{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .tablet\:hover\:px-64:hover{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .tablet\:hover\:px-72:hover{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .tablet\:hover\:px-80:hover{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .tablet\:hover\:px-96:hover{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .tablet\:hover\:px-px:hover{
    padding-left: 1px;
    padding-right: 1px;
  }

  .tablet\:hover\:px-0\.5:hover{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .tablet\:hover\:px-1\.5:hover{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .tablet\:hover\:px-2\.5:hover{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .tablet\:hover\:px-3\.5:hover{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .tablet\:hover\:py-0:hover{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .tablet\:hover\:py-1:hover{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .tablet\:hover\:py-2:hover{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .tablet\:hover\:py-3:hover{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .tablet\:hover\:py-4:hover{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .tablet\:hover\:py-5:hover{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .tablet\:hover\:py-6:hover{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .tablet\:hover\:py-7:hover{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .tablet\:hover\:py-8:hover{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .tablet\:hover\:py-9:hover{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .tablet\:hover\:py-10:hover{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .tablet\:hover\:py-11:hover{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .tablet\:hover\:py-12:hover{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .tablet\:hover\:py-14:hover{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .tablet\:hover\:py-16:hover{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .tablet\:hover\:py-20:hover{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .tablet\:hover\:py-24:hover{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .tablet\:hover\:py-28:hover{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .tablet\:hover\:py-32:hover{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .tablet\:hover\:py-36:hover{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .tablet\:hover\:py-40:hover{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .tablet\:hover\:py-44:hover{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .tablet\:hover\:py-48:hover{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .tablet\:hover\:py-52:hover{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .tablet\:hover\:py-56:hover{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .tablet\:hover\:py-60:hover{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .tablet\:hover\:py-64:hover{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .tablet\:hover\:py-72:hover{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .tablet\:hover\:py-80:hover{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .tablet\:hover\:py-96:hover{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .tablet\:hover\:py-px:hover{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .tablet\:hover\:py-0\.5:hover{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .tablet\:hover\:py-1\.5:hover{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .tablet\:hover\:py-2\.5:hover{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .tablet\:hover\:py-3\.5:hover{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .tablet\:focus\:px-0:focus{
    padding-left: 0px;
    padding-right: 0px;
  }

  .tablet\:focus\:px-1:focus{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .tablet\:focus\:px-2:focus{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .tablet\:focus\:px-3:focus{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .tablet\:focus\:px-4:focus{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .tablet\:focus\:px-5:focus{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .tablet\:focus\:px-6:focus{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .tablet\:focus\:px-7:focus{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .tablet\:focus\:px-8:focus{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .tablet\:focus\:px-9:focus{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .tablet\:focus\:px-10:focus{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .tablet\:focus\:px-11:focus{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .tablet\:focus\:px-12:focus{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .tablet\:focus\:px-14:focus{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .tablet\:focus\:px-16:focus{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .tablet\:focus\:px-20:focus{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .tablet\:focus\:px-24:focus{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .tablet\:focus\:px-28:focus{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .tablet\:focus\:px-32:focus{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .tablet\:focus\:px-36:focus{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .tablet\:focus\:px-40:focus{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .tablet\:focus\:px-44:focus{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .tablet\:focus\:px-48:focus{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .tablet\:focus\:px-52:focus{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .tablet\:focus\:px-56:focus{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .tablet\:focus\:px-60:focus{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .tablet\:focus\:px-64:focus{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .tablet\:focus\:px-72:focus{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .tablet\:focus\:px-80:focus{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .tablet\:focus\:px-96:focus{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .tablet\:focus\:px-px:focus{
    padding-left: 1px;
    padding-right: 1px;
  }

  .tablet\:focus\:px-0\.5:focus{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .tablet\:focus\:px-1\.5:focus{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .tablet\:focus\:px-2\.5:focus{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .tablet\:focus\:px-3\.5:focus{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .tablet\:focus\:py-0:focus{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .tablet\:focus\:py-1:focus{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .tablet\:focus\:py-2:focus{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .tablet\:focus\:py-3:focus{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .tablet\:focus\:py-4:focus{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .tablet\:focus\:py-5:focus{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .tablet\:focus\:py-6:focus{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .tablet\:focus\:py-7:focus{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .tablet\:focus\:py-8:focus{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .tablet\:focus\:py-9:focus{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .tablet\:focus\:py-10:focus{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .tablet\:focus\:py-11:focus{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .tablet\:focus\:py-12:focus{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .tablet\:focus\:py-14:focus{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .tablet\:focus\:py-16:focus{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .tablet\:focus\:py-20:focus{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .tablet\:focus\:py-24:focus{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .tablet\:focus\:py-28:focus{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .tablet\:focus\:py-32:focus{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .tablet\:focus\:py-36:focus{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .tablet\:focus\:py-40:focus{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .tablet\:focus\:py-44:focus{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .tablet\:focus\:py-48:focus{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .tablet\:focus\:py-52:focus{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .tablet\:focus\:py-56:focus{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .tablet\:focus\:py-60:focus{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .tablet\:focus\:py-64:focus{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .tablet\:focus\:py-72:focus{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .tablet\:focus\:py-80:focus{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .tablet\:focus\:py-96:focus{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .tablet\:focus\:py-px:focus{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .tablet\:focus\:py-0\.5:focus{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .tablet\:focus\:py-1\.5:focus{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .tablet\:focus\:py-2\.5:focus{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .tablet\:focus\:py-3\.5:focus{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .tablet\:first\:px-0:first-child{
    padding-left: 0px;
    padding-right: 0px;
  }

  .tablet\:first\:px-1:first-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .tablet\:first\:px-2:first-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .tablet\:first\:px-3:first-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .tablet\:first\:px-4:first-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .tablet\:first\:px-5:first-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .tablet\:first\:px-6:first-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .tablet\:first\:px-7:first-child{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .tablet\:first\:px-8:first-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .tablet\:first\:px-9:first-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .tablet\:first\:px-10:first-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .tablet\:first\:px-11:first-child{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .tablet\:first\:px-12:first-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .tablet\:first\:px-14:first-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .tablet\:first\:px-16:first-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .tablet\:first\:px-20:first-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .tablet\:first\:px-24:first-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .tablet\:first\:px-28:first-child{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .tablet\:first\:px-32:first-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .tablet\:first\:px-36:first-child{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .tablet\:first\:px-40:first-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .tablet\:first\:px-44:first-child{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .tablet\:first\:px-48:first-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .tablet\:first\:px-52:first-child{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .tablet\:first\:px-56:first-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .tablet\:first\:px-60:first-child{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .tablet\:first\:px-64:first-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .tablet\:first\:px-72:first-child{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .tablet\:first\:px-80:first-child{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .tablet\:first\:px-96:first-child{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .tablet\:first\:px-px:first-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .tablet\:first\:px-0\.5:first-child{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .tablet\:first\:px-1\.5:first-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .tablet\:first\:px-2\.5:first-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .tablet\:first\:px-3\.5:first-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .tablet\:first\:py-0:first-child{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .tablet\:first\:py-1:first-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .tablet\:first\:py-2:first-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .tablet\:first\:py-3:first-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .tablet\:first\:py-4:first-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .tablet\:first\:py-5:first-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .tablet\:first\:py-6:first-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .tablet\:first\:py-7:first-child{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .tablet\:first\:py-8:first-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .tablet\:first\:py-9:first-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .tablet\:first\:py-10:first-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .tablet\:first\:py-11:first-child{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .tablet\:first\:py-12:first-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .tablet\:first\:py-14:first-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .tablet\:first\:py-16:first-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .tablet\:first\:py-20:first-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .tablet\:first\:py-24:first-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .tablet\:first\:py-28:first-child{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .tablet\:first\:py-32:first-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .tablet\:first\:py-36:first-child{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .tablet\:first\:py-40:first-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .tablet\:first\:py-44:first-child{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .tablet\:first\:py-48:first-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .tablet\:first\:py-52:first-child{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .tablet\:first\:py-56:first-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .tablet\:first\:py-60:first-child{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .tablet\:first\:py-64:first-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .tablet\:first\:py-72:first-child{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .tablet\:first\:py-80:first-child{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .tablet\:first\:py-96:first-child{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .tablet\:first\:py-px:first-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .tablet\:first\:py-0\.5:first-child{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .tablet\:first\:py-1\.5:first-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .tablet\:first\:py-2\.5:first-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .tablet\:first\:py-3\.5:first-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .tablet\:last\:px-0:last-child{
    padding-left: 0px;
    padding-right: 0px;
  }

  .tablet\:last\:px-1:last-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .tablet\:last\:px-2:last-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .tablet\:last\:px-3:last-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .tablet\:last\:px-4:last-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .tablet\:last\:px-5:last-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .tablet\:last\:px-6:last-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .tablet\:last\:px-7:last-child{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .tablet\:last\:px-8:last-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .tablet\:last\:px-9:last-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .tablet\:last\:px-10:last-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .tablet\:last\:px-11:last-child{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .tablet\:last\:px-12:last-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .tablet\:last\:px-14:last-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .tablet\:last\:px-16:last-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .tablet\:last\:px-20:last-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .tablet\:last\:px-24:last-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .tablet\:last\:px-28:last-child{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .tablet\:last\:px-32:last-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .tablet\:last\:px-36:last-child{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .tablet\:last\:px-40:last-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .tablet\:last\:px-44:last-child{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .tablet\:last\:px-48:last-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .tablet\:last\:px-52:last-child{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .tablet\:last\:px-56:last-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .tablet\:last\:px-60:last-child{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .tablet\:last\:px-64:last-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .tablet\:last\:px-72:last-child{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .tablet\:last\:px-80:last-child{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .tablet\:last\:px-96:last-child{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .tablet\:last\:px-px:last-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .tablet\:last\:px-0\.5:last-child{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .tablet\:last\:px-1\.5:last-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .tablet\:last\:px-2\.5:last-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .tablet\:last\:px-3\.5:last-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .tablet\:last\:py-0:last-child{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .tablet\:last\:py-1:last-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .tablet\:last\:py-2:last-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .tablet\:last\:py-3:last-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .tablet\:last\:py-4:last-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .tablet\:last\:py-5:last-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .tablet\:last\:py-6:last-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .tablet\:last\:py-7:last-child{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .tablet\:last\:py-8:last-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .tablet\:last\:py-9:last-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .tablet\:last\:py-10:last-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .tablet\:last\:py-11:last-child{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .tablet\:last\:py-12:last-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .tablet\:last\:py-14:last-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .tablet\:last\:py-16:last-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .tablet\:last\:py-20:last-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .tablet\:last\:py-24:last-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .tablet\:last\:py-28:last-child{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .tablet\:last\:py-32:last-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .tablet\:last\:py-36:last-child{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .tablet\:last\:py-40:last-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .tablet\:last\:py-44:last-child{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .tablet\:last\:py-48:last-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .tablet\:last\:py-52:last-child{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .tablet\:last\:py-56:last-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .tablet\:last\:py-60:last-child{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .tablet\:last\:py-64:last-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .tablet\:last\:py-72:last-child{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .tablet\:last\:py-80:last-child{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .tablet\:last\:py-96:last-child{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .tablet\:last\:py-px:last-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .tablet\:last\:py-0\.5:last-child{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .tablet\:last\:py-1\.5:last-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .tablet\:last\:py-2\.5:last-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .tablet\:last\:py-3\.5:last-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .tablet\:pt-0{
    padding-top: 0px;
  }

  .tablet\:pt-1{
    padding-top: 0.25rem;
  }

  .tablet\:pt-2{
    padding-top: 0.5rem;
  }

  .tablet\:pt-3{
    padding-top: 0.75rem;
  }

  .tablet\:pt-4{
    padding-top: 1rem;
  }

  .tablet\:pt-5{
    padding-top: 1.25rem;
  }

  .tablet\:pt-6{
    padding-top: 1.5rem;
  }

  .tablet\:pt-7{
    padding-top: 1.75rem;
  }

  .tablet\:pt-8{
    padding-top: 2rem;
  }

  .tablet\:pt-9{
    padding-top: 2.25rem;
  }

  .tablet\:pt-10{
    padding-top: 2.5rem;
  }

  .tablet\:pt-11{
    padding-top: 2.75rem;
  }

  .tablet\:pt-12{
    padding-top: 3rem;
  }

  .tablet\:pt-14{
    padding-top: 3.5rem;
  }

  .tablet\:pt-16{
    padding-top: 4rem;
  }

  .tablet\:pt-20{
    padding-top: 5rem;
  }

  .tablet\:pt-24{
    padding-top: 6rem;
  }

  .tablet\:pt-28{
    padding-top: 7rem;
  }

  .tablet\:pt-32{
    padding-top: 8rem;
  }

  .tablet\:pt-36{
    padding-top: 9rem;
  }

  .tablet\:pt-40{
    padding-top: 10rem;
  }

  .tablet\:pt-44{
    padding-top: 11rem;
  }

  .tablet\:pt-48{
    padding-top: 12rem;
  }

  .tablet\:pt-52{
    padding-top: 13rem;
  }

  .tablet\:pt-56{
    padding-top: 14rem;
  }

  .tablet\:pt-60{
    padding-top: 15rem;
  }

  .tablet\:pt-64{
    padding-top: 16rem;
  }

  .tablet\:pt-72{
    padding-top: 18rem;
  }

  .tablet\:pt-80{
    padding-top: 20rem;
  }

  .tablet\:pt-96{
    padding-top: 24rem;
  }

  .tablet\:pt-px{
    padding-top: 1px;
  }

  .tablet\:pt-0\.5{
    padding-top: 0.125rem;
  }

  .tablet\:pt-1\.5{
    padding-top: 0.375rem;
  }

  .tablet\:pt-2\.5{
    padding-top: 0.625rem;
  }

  .tablet\:pt-3\.5{
    padding-top: 0.875rem;
  }

  .tablet\:pr-0{
    padding-right: 0px;
  }

  .tablet\:pr-1{
    padding-right: 0.25rem;
  }

  .tablet\:pr-2{
    padding-right: 0.5rem;
  }

  .tablet\:pr-3{
    padding-right: 0.75rem;
  }

  .tablet\:pr-4{
    padding-right: 1rem;
  }

  .tablet\:pr-5{
    padding-right: 1.25rem;
  }

  .tablet\:pr-6{
    padding-right: 1.5rem;
  }

  .tablet\:pr-7{
    padding-right: 1.75rem;
  }

  .tablet\:pr-8{
    padding-right: 2rem;
  }

  .tablet\:pr-9{
    padding-right: 2.25rem;
  }

  .tablet\:pr-10{
    padding-right: 2.5rem;
  }

  .tablet\:pr-11{
    padding-right: 2.75rem;
  }

  .tablet\:pr-12{
    padding-right: 3rem;
  }

  .tablet\:pr-14{
    padding-right: 3.5rem;
  }

  .tablet\:pr-16{
    padding-right: 4rem;
  }

  .tablet\:pr-20{
    padding-right: 5rem;
  }

  .tablet\:pr-24{
    padding-right: 6rem;
  }

  .tablet\:pr-28{
    padding-right: 7rem;
  }

  .tablet\:pr-32{
    padding-right: 8rem;
  }

  .tablet\:pr-36{
    padding-right: 9rem;
  }

  .tablet\:pr-40{
    padding-right: 10rem;
  }

  .tablet\:pr-44{
    padding-right: 11rem;
  }

  .tablet\:pr-48{
    padding-right: 12rem;
  }

  .tablet\:pr-52{
    padding-right: 13rem;
  }

  .tablet\:pr-56{
    padding-right: 14rem;
  }

  .tablet\:pr-60{
    padding-right: 15rem;
  }

  .tablet\:pr-64{
    padding-right: 16rem;
  }

  .tablet\:pr-72{
    padding-right: 18rem;
  }

  .tablet\:pr-80{
    padding-right: 20rem;
  }

  .tablet\:pr-96{
    padding-right: 24rem;
  }

  .tablet\:pr-px{
    padding-right: 1px;
  }

  .tablet\:pr-0\.5{
    padding-right: 0.125rem;
  }

  .tablet\:pr-1\.5{
    padding-right: 0.375rem;
  }

  .tablet\:pr-2\.5{
    padding-right: 0.625rem;
  }

  .tablet\:pr-3\.5{
    padding-right: 0.875rem;
  }

  .tablet\:pb-0{
    padding-bottom: 0px;
  }

  .tablet\:pb-1{
    padding-bottom: 0.25rem;
  }

  .tablet\:pb-2{
    padding-bottom: 0.5rem;
  }

  .tablet\:pb-3{
    padding-bottom: 0.75rem;
  }

  .tablet\:pb-4{
    padding-bottom: 1rem;
  }

  .tablet\:pb-5{
    padding-bottom: 1.25rem;
  }

  .tablet\:pb-6{
    padding-bottom: 1.5rem;
  }

  .tablet\:pb-7{
    padding-bottom: 1.75rem;
  }

  .tablet\:pb-8{
    padding-bottom: 2rem;
  }

  .tablet\:pb-9{
    padding-bottom: 2.25rem;
  }

  .tablet\:pb-10{
    padding-bottom: 2.5rem;
  }

  .tablet\:pb-11{
    padding-bottom: 2.75rem;
  }

  .tablet\:pb-12{
    padding-bottom: 3rem;
  }

  .tablet\:pb-14{
    padding-bottom: 3.5rem;
  }

  .tablet\:pb-16{
    padding-bottom: 4rem;
  }

  .tablet\:pb-20{
    padding-bottom: 5rem;
  }

  .tablet\:pb-24{
    padding-bottom: 6rem;
  }

  .tablet\:pb-28{
    padding-bottom: 7rem;
  }

  .tablet\:pb-32{
    padding-bottom: 8rem;
  }

  .tablet\:pb-36{
    padding-bottom: 9rem;
  }

  .tablet\:pb-40{
    padding-bottom: 10rem;
  }

  .tablet\:pb-44{
    padding-bottom: 11rem;
  }

  .tablet\:pb-48{
    padding-bottom: 12rem;
  }

  .tablet\:pb-52{
    padding-bottom: 13rem;
  }

  .tablet\:pb-56{
    padding-bottom: 14rem;
  }

  .tablet\:pb-60{
    padding-bottom: 15rem;
  }

  .tablet\:pb-64{
    padding-bottom: 16rem;
  }

  .tablet\:pb-72{
    padding-bottom: 18rem;
  }

  .tablet\:pb-80{
    padding-bottom: 20rem;
  }

  .tablet\:pb-96{
    padding-bottom: 24rem;
  }

  .tablet\:pb-px{
    padding-bottom: 1px;
  }

  .tablet\:pb-0\.5{
    padding-bottom: 0.125rem;
  }

  .tablet\:pb-1\.5{
    padding-bottom: 0.375rem;
  }

  .tablet\:pb-2\.5{
    padding-bottom: 0.625rem;
  }

  .tablet\:pb-3\.5{
    padding-bottom: 0.875rem;
  }

  .tablet\:pl-0{
    padding-left: 0px;
  }

  .tablet\:pl-1{
    padding-left: 0.25rem;
  }

  .tablet\:pl-2{
    padding-left: 0.5rem;
  }

  .tablet\:pl-3{
    padding-left: 0.75rem;
  }

  .tablet\:pl-4{
    padding-left: 1rem;
  }

  .tablet\:pl-5{
    padding-left: 1.25rem;
  }

  .tablet\:pl-6{
    padding-left: 1.5rem;
  }

  .tablet\:pl-7{
    padding-left: 1.75rem;
  }

  .tablet\:pl-8{
    padding-left: 2rem;
  }

  .tablet\:pl-9{
    padding-left: 2.25rem;
  }

  .tablet\:pl-10{
    padding-left: 2.5rem;
  }

  .tablet\:pl-11{
    padding-left: 2.75rem;
  }

  .tablet\:pl-12{
    padding-left: 3rem;
  }

  .tablet\:pl-14{
    padding-left: 3.5rem;
  }

  .tablet\:pl-16{
    padding-left: 4rem;
  }

  .tablet\:pl-20{
    padding-left: 5rem;
  }

  .tablet\:pl-24{
    padding-left: 6rem;
  }

  .tablet\:pl-28{
    padding-left: 7rem;
  }

  .tablet\:pl-32{
    padding-left: 8rem;
  }

  .tablet\:pl-36{
    padding-left: 9rem;
  }

  .tablet\:pl-40{
    padding-left: 10rem;
  }

  .tablet\:pl-44{
    padding-left: 11rem;
  }

  .tablet\:pl-48{
    padding-left: 12rem;
  }

  .tablet\:pl-52{
    padding-left: 13rem;
  }

  .tablet\:pl-56{
    padding-left: 14rem;
  }

  .tablet\:pl-60{
    padding-left: 15rem;
  }

  .tablet\:pl-64{
    padding-left: 16rem;
  }

  .tablet\:pl-72{
    padding-left: 18rem;
  }

  .tablet\:pl-80{
    padding-left: 20rem;
  }

  .tablet\:pl-96{
    padding-left: 24rem;
  }

  .tablet\:pl-px{
    padding-left: 1px;
  }

  .tablet\:pl-0\.5{
    padding-left: 0.125rem;
  }

  .tablet\:pl-1\.5{
    padding-left: 0.375rem;
  }

  .tablet\:pl-2\.5{
    padding-left: 0.625rem;
  }

  .tablet\:pl-3\.5{
    padding-left: 0.875rem;
  }

  .tablet\:last\:pt-0:last-child{
    padding-top: 0px;
  }

  .tablet\:last\:pt-1:last-child{
    padding-top: 0.25rem;
  }

  .tablet\:last\:pt-2:last-child{
    padding-top: 0.5rem;
  }

  .tablet\:last\:pt-3:last-child{
    padding-top: 0.75rem;
  }

  .tablet\:last\:pt-4:last-child{
    padding-top: 1rem;
  }

  .tablet\:last\:pt-5:last-child{
    padding-top: 1.25rem;
  }

  .tablet\:last\:pt-6:last-child{
    padding-top: 1.5rem;
  }

  .tablet\:last\:pt-7:last-child{
    padding-top: 1.75rem;
  }

  .tablet\:last\:pt-8:last-child{
    padding-top: 2rem;
  }

  .tablet\:last\:pt-9:last-child{
    padding-top: 2.25rem;
  }

  .tablet\:last\:pt-10:last-child{
    padding-top: 2.5rem;
  }

  .tablet\:last\:pt-11:last-child{
    padding-top: 2.75rem;
  }

  .tablet\:last\:pt-12:last-child{
    padding-top: 3rem;
  }

  .tablet\:last\:pt-14:last-child{
    padding-top: 3.5rem;
  }

  .tablet\:last\:pt-16:last-child{
    padding-top: 4rem;
  }

  .tablet\:last\:pt-20:last-child{
    padding-top: 5rem;
  }

  .tablet\:last\:pt-24:last-child{
    padding-top: 6rem;
  }

  .tablet\:last\:pt-28:last-child{
    padding-top: 7rem;
  }

  .tablet\:last\:pt-32:last-child{
    padding-top: 8rem;
  }

  .tablet\:last\:pt-36:last-child{
    padding-top: 9rem;
  }

  .tablet\:last\:pt-40:last-child{
    padding-top: 10rem;
  }

  .tablet\:last\:pt-44:last-child{
    padding-top: 11rem;
  }

  .tablet\:last\:pt-48:last-child{
    padding-top: 12rem;
  }

  .tablet\:last\:pt-52:last-child{
    padding-top: 13rem;
  }

  .tablet\:last\:pt-56:last-child{
    padding-top: 14rem;
  }

  .tablet\:last\:pt-60:last-child{
    padding-top: 15rem;
  }

  .tablet\:last\:pt-64:last-child{
    padding-top: 16rem;
  }

  .tablet\:last\:pt-72:last-child{
    padding-top: 18rem;
  }

  .tablet\:last\:pt-80:last-child{
    padding-top: 20rem;
  }

  .tablet\:last\:pt-96:last-child{
    padding-top: 24rem;
  }

  .tablet\:last\:pt-px:last-child{
    padding-top: 1px;
  }

  .tablet\:last\:pt-0\.5:last-child{
    padding-top: 0.125rem;
  }

  .tablet\:last\:pt-1\.5:last-child{
    padding-top: 0.375rem;
  }

  .tablet\:last\:pt-2\.5:last-child{
    padding-top: 0.625rem;
  }

  .tablet\:last\:pt-3\.5:last-child{
    padding-top: 0.875rem;
  }

  .tablet\:last\:pr-0:last-child{
    padding-right: 0px;
  }

  .tablet\:last\:pr-1:last-child{
    padding-right: 0.25rem;
  }

  .tablet\:last\:pr-2:last-child{
    padding-right: 0.5rem;
  }

  .tablet\:last\:pr-3:last-child{
    padding-right: 0.75rem;
  }

  .tablet\:last\:pr-4:last-child{
    padding-right: 1rem;
  }

  .tablet\:last\:pr-5:last-child{
    padding-right: 1.25rem;
  }

  .tablet\:last\:pr-6:last-child{
    padding-right: 1.5rem;
  }

  .tablet\:last\:pr-7:last-child{
    padding-right: 1.75rem;
  }

  .tablet\:last\:pr-8:last-child{
    padding-right: 2rem;
  }

  .tablet\:last\:pr-9:last-child{
    padding-right: 2.25rem;
  }

  .tablet\:last\:pr-10:last-child{
    padding-right: 2.5rem;
  }

  .tablet\:last\:pr-11:last-child{
    padding-right: 2.75rem;
  }

  .tablet\:last\:pr-12:last-child{
    padding-right: 3rem;
  }

  .tablet\:last\:pr-14:last-child{
    padding-right: 3.5rem;
  }

  .tablet\:last\:pr-16:last-child{
    padding-right: 4rem;
  }

  .tablet\:last\:pr-20:last-child{
    padding-right: 5rem;
  }

  .tablet\:last\:pr-24:last-child{
    padding-right: 6rem;
  }

  .tablet\:last\:pr-28:last-child{
    padding-right: 7rem;
  }

  .tablet\:last\:pr-32:last-child{
    padding-right: 8rem;
  }

  .tablet\:last\:pr-36:last-child{
    padding-right: 9rem;
  }

  .tablet\:last\:pr-40:last-child{
    padding-right: 10rem;
  }

  .tablet\:last\:pr-44:last-child{
    padding-right: 11rem;
  }

  .tablet\:last\:pr-48:last-child{
    padding-right: 12rem;
  }

  .tablet\:last\:pr-52:last-child{
    padding-right: 13rem;
  }

  .tablet\:last\:pr-56:last-child{
    padding-right: 14rem;
  }

  .tablet\:last\:pr-60:last-child{
    padding-right: 15rem;
  }

  .tablet\:last\:pr-64:last-child{
    padding-right: 16rem;
  }

  .tablet\:last\:pr-72:last-child{
    padding-right: 18rem;
  }

  .tablet\:last\:pr-80:last-child{
    padding-right: 20rem;
  }

  .tablet\:last\:pr-96:last-child{
    padding-right: 24rem;
  }

  .tablet\:last\:pr-px:last-child{
    padding-right: 1px;
  }

  .tablet\:last\:pr-0\.5:last-child{
    padding-right: 0.125rem;
  }

  .tablet\:last\:pr-1\.5:last-child{
    padding-right: 0.375rem;
  }

  .tablet\:last\:pr-2\.5:last-child{
    padding-right: 0.625rem;
  }

  .tablet\:last\:pr-3\.5:last-child{
    padding-right: 0.875rem;
  }

  .tablet\:last\:pb-0:last-child{
    padding-bottom: 0px;
  }

  .tablet\:last\:pb-1:last-child{
    padding-bottom: 0.25rem;
  }

  .tablet\:last\:pb-2:last-child{
    padding-bottom: 0.5rem;
  }

  .tablet\:last\:pb-3:last-child{
    padding-bottom: 0.75rem;
  }

  .tablet\:last\:pb-4:last-child{
    padding-bottom: 1rem;
  }

  .tablet\:last\:pb-5:last-child{
    padding-bottom: 1.25rem;
  }

  .tablet\:last\:pb-6:last-child{
    padding-bottom: 1.5rem;
  }

  .tablet\:last\:pb-7:last-child{
    padding-bottom: 1.75rem;
  }

  .tablet\:last\:pb-8:last-child{
    padding-bottom: 2rem;
  }

  .tablet\:last\:pb-9:last-child{
    padding-bottom: 2.25rem;
  }

  .tablet\:last\:pb-10:last-child{
    padding-bottom: 2.5rem;
  }

  .tablet\:last\:pb-11:last-child{
    padding-bottom: 2.75rem;
  }

  .tablet\:last\:pb-12:last-child{
    padding-bottom: 3rem;
  }

  .tablet\:last\:pb-14:last-child{
    padding-bottom: 3.5rem;
  }

  .tablet\:last\:pb-16:last-child{
    padding-bottom: 4rem;
  }

  .tablet\:last\:pb-20:last-child{
    padding-bottom: 5rem;
  }

  .tablet\:last\:pb-24:last-child{
    padding-bottom: 6rem;
  }

  .tablet\:last\:pb-28:last-child{
    padding-bottom: 7rem;
  }

  .tablet\:last\:pb-32:last-child{
    padding-bottom: 8rem;
  }

  .tablet\:last\:pb-36:last-child{
    padding-bottom: 9rem;
  }

  .tablet\:last\:pb-40:last-child{
    padding-bottom: 10rem;
  }

  .tablet\:last\:pb-44:last-child{
    padding-bottom: 11rem;
  }

  .tablet\:last\:pb-48:last-child{
    padding-bottom: 12rem;
  }

  .tablet\:last\:pb-52:last-child{
    padding-bottom: 13rem;
  }

  .tablet\:last\:pb-56:last-child{
    padding-bottom: 14rem;
  }

  .tablet\:last\:pb-60:last-child{
    padding-bottom: 15rem;
  }

  .tablet\:last\:pb-64:last-child{
    padding-bottom: 16rem;
  }

  .tablet\:last\:pb-72:last-child{
    padding-bottom: 18rem;
  }

  .tablet\:last\:pb-80:last-child{
    padding-bottom: 20rem;
  }

  .tablet\:last\:pb-96:last-child{
    padding-bottom: 24rem;
  }

  .tablet\:last\:pb-px:last-child{
    padding-bottom: 1px;
  }

  .tablet\:last\:pb-0\.5:last-child{
    padding-bottom: 0.125rem;
  }

  .tablet\:last\:pb-1\.5:last-child{
    padding-bottom: 0.375rem;
  }

  .tablet\:last\:pb-2\.5:last-child{
    padding-bottom: 0.625rem;
  }

  .tablet\:last\:pb-3\.5:last-child{
    padding-bottom: 0.875rem;
  }

  .tablet\:last\:pl-0:last-child{
    padding-left: 0px;
  }

  .tablet\:last\:pl-1:last-child{
    padding-left: 0.25rem;
  }

  .tablet\:last\:pl-2:last-child{
    padding-left: 0.5rem;
  }

  .tablet\:last\:pl-3:last-child{
    padding-left: 0.75rem;
  }

  .tablet\:last\:pl-4:last-child{
    padding-left: 1rem;
  }

  .tablet\:last\:pl-5:last-child{
    padding-left: 1.25rem;
  }

  .tablet\:last\:pl-6:last-child{
    padding-left: 1.5rem;
  }

  .tablet\:last\:pl-7:last-child{
    padding-left: 1.75rem;
  }

  .tablet\:last\:pl-8:last-child{
    padding-left: 2rem;
  }

  .tablet\:last\:pl-9:last-child{
    padding-left: 2.25rem;
  }

  .tablet\:last\:pl-10:last-child{
    padding-left: 2.5rem;
  }

  .tablet\:last\:pl-11:last-child{
    padding-left: 2.75rem;
  }

  .tablet\:last\:pl-12:last-child{
    padding-left: 3rem;
  }

  .tablet\:last\:pl-14:last-child{
    padding-left: 3.5rem;
  }

  .tablet\:last\:pl-16:last-child{
    padding-left: 4rem;
  }

  .tablet\:last\:pl-20:last-child{
    padding-left: 5rem;
  }

  .tablet\:last\:pl-24:last-child{
    padding-left: 6rem;
  }

  .tablet\:last\:pl-28:last-child{
    padding-left: 7rem;
  }

  .tablet\:last\:pl-32:last-child{
    padding-left: 8rem;
  }

  .tablet\:last\:pl-36:last-child{
    padding-left: 9rem;
  }

  .tablet\:last\:pl-40:last-child{
    padding-left: 10rem;
  }

  .tablet\:last\:pl-44:last-child{
    padding-left: 11rem;
  }

  .tablet\:last\:pl-48:last-child{
    padding-left: 12rem;
  }

  .tablet\:last\:pl-52:last-child{
    padding-left: 13rem;
  }

  .tablet\:last\:pl-56:last-child{
    padding-left: 14rem;
  }

  .tablet\:last\:pl-60:last-child{
    padding-left: 15rem;
  }

  .tablet\:last\:pl-64:last-child{
    padding-left: 16rem;
  }

  .tablet\:last\:pl-72:last-child{
    padding-left: 18rem;
  }

  .tablet\:last\:pl-80:last-child{
    padding-left: 20rem;
  }

  .tablet\:last\:pl-96:last-child{
    padding-left: 24rem;
  }

  .tablet\:last\:pl-px:last-child{
    padding-left: 1px;
  }

  .tablet\:last\:pl-0\.5:last-child{
    padding-left: 0.125rem;
  }

  .tablet\:last\:pl-1\.5:last-child{
    padding-left: 0.375rem;
  }

  .tablet\:last\:pl-2\.5:last-child{
    padding-left: 0.625rem;
  }

  .tablet\:last\:pl-3\.5:last-child{
    padding-left: 0.875rem;
  }

  .tablet\:hover\:pt-0:hover{
    padding-top: 0px;
  }

  .tablet\:hover\:pt-1:hover{
    padding-top: 0.25rem;
  }

  .tablet\:hover\:pt-2:hover{
    padding-top: 0.5rem;
  }

  .tablet\:hover\:pt-3:hover{
    padding-top: 0.75rem;
  }

  .tablet\:hover\:pt-4:hover{
    padding-top: 1rem;
  }

  .tablet\:hover\:pt-5:hover{
    padding-top: 1.25rem;
  }

  .tablet\:hover\:pt-6:hover{
    padding-top: 1.5rem;
  }

  .tablet\:hover\:pt-7:hover{
    padding-top: 1.75rem;
  }

  .tablet\:hover\:pt-8:hover{
    padding-top: 2rem;
  }

  .tablet\:hover\:pt-9:hover{
    padding-top: 2.25rem;
  }

  .tablet\:hover\:pt-10:hover{
    padding-top: 2.5rem;
  }

  .tablet\:hover\:pt-11:hover{
    padding-top: 2.75rem;
  }

  .tablet\:hover\:pt-12:hover{
    padding-top: 3rem;
  }

  .tablet\:hover\:pt-14:hover{
    padding-top: 3.5rem;
  }

  .tablet\:hover\:pt-16:hover{
    padding-top: 4rem;
  }

  .tablet\:hover\:pt-20:hover{
    padding-top: 5rem;
  }

  .tablet\:hover\:pt-24:hover{
    padding-top: 6rem;
  }

  .tablet\:hover\:pt-28:hover{
    padding-top: 7rem;
  }

  .tablet\:hover\:pt-32:hover{
    padding-top: 8rem;
  }

  .tablet\:hover\:pt-36:hover{
    padding-top: 9rem;
  }

  .tablet\:hover\:pt-40:hover{
    padding-top: 10rem;
  }

  .tablet\:hover\:pt-44:hover{
    padding-top: 11rem;
  }

  .tablet\:hover\:pt-48:hover{
    padding-top: 12rem;
  }

  .tablet\:hover\:pt-52:hover{
    padding-top: 13rem;
  }

  .tablet\:hover\:pt-56:hover{
    padding-top: 14rem;
  }

  .tablet\:hover\:pt-60:hover{
    padding-top: 15rem;
  }

  .tablet\:hover\:pt-64:hover{
    padding-top: 16rem;
  }

  .tablet\:hover\:pt-72:hover{
    padding-top: 18rem;
  }

  .tablet\:hover\:pt-80:hover{
    padding-top: 20rem;
  }

  .tablet\:hover\:pt-96:hover{
    padding-top: 24rem;
  }

  .tablet\:hover\:pt-px:hover{
    padding-top: 1px;
  }

  .tablet\:hover\:pt-0\.5:hover{
    padding-top: 0.125rem;
  }

  .tablet\:hover\:pt-1\.5:hover{
    padding-top: 0.375rem;
  }

  .tablet\:hover\:pt-2\.5:hover{
    padding-top: 0.625rem;
  }

  .tablet\:hover\:pt-3\.5:hover{
    padding-top: 0.875rem;
  }

  .tablet\:hover\:pr-0:hover{
    padding-right: 0px;
  }

  .tablet\:hover\:pr-1:hover{
    padding-right: 0.25rem;
  }

  .tablet\:hover\:pr-2:hover{
    padding-right: 0.5rem;
  }

  .tablet\:hover\:pr-3:hover{
    padding-right: 0.75rem;
  }

  .tablet\:hover\:pr-4:hover{
    padding-right: 1rem;
  }

  .tablet\:hover\:pr-5:hover{
    padding-right: 1.25rem;
  }

  .tablet\:hover\:pr-6:hover{
    padding-right: 1.5rem;
  }

  .tablet\:hover\:pr-7:hover{
    padding-right: 1.75rem;
  }

  .tablet\:hover\:pr-8:hover{
    padding-right: 2rem;
  }

  .tablet\:hover\:pr-9:hover{
    padding-right: 2.25rem;
  }

  .tablet\:hover\:pr-10:hover{
    padding-right: 2.5rem;
  }

  .tablet\:hover\:pr-11:hover{
    padding-right: 2.75rem;
  }

  .tablet\:hover\:pr-12:hover{
    padding-right: 3rem;
  }

  .tablet\:hover\:pr-14:hover{
    padding-right: 3.5rem;
  }

  .tablet\:hover\:pr-16:hover{
    padding-right: 4rem;
  }

  .tablet\:hover\:pr-20:hover{
    padding-right: 5rem;
  }

  .tablet\:hover\:pr-24:hover{
    padding-right: 6rem;
  }

  .tablet\:hover\:pr-28:hover{
    padding-right: 7rem;
  }

  .tablet\:hover\:pr-32:hover{
    padding-right: 8rem;
  }

  .tablet\:hover\:pr-36:hover{
    padding-right: 9rem;
  }

  .tablet\:hover\:pr-40:hover{
    padding-right: 10rem;
  }

  .tablet\:hover\:pr-44:hover{
    padding-right: 11rem;
  }

  .tablet\:hover\:pr-48:hover{
    padding-right: 12rem;
  }

  .tablet\:hover\:pr-52:hover{
    padding-right: 13rem;
  }

  .tablet\:hover\:pr-56:hover{
    padding-right: 14rem;
  }

  .tablet\:hover\:pr-60:hover{
    padding-right: 15rem;
  }

  .tablet\:hover\:pr-64:hover{
    padding-right: 16rem;
  }

  .tablet\:hover\:pr-72:hover{
    padding-right: 18rem;
  }

  .tablet\:hover\:pr-80:hover{
    padding-right: 20rem;
  }

  .tablet\:hover\:pr-96:hover{
    padding-right: 24rem;
  }

  .tablet\:hover\:pr-px:hover{
    padding-right: 1px;
  }

  .tablet\:hover\:pr-0\.5:hover{
    padding-right: 0.125rem;
  }

  .tablet\:hover\:pr-1\.5:hover{
    padding-right: 0.375rem;
  }

  .tablet\:hover\:pr-2\.5:hover{
    padding-right: 0.625rem;
  }

  .tablet\:hover\:pr-3\.5:hover{
    padding-right: 0.875rem;
  }

  .tablet\:hover\:pb-0:hover{
    padding-bottom: 0px;
  }

  .tablet\:hover\:pb-1:hover{
    padding-bottom: 0.25rem;
  }

  .tablet\:hover\:pb-2:hover{
    padding-bottom: 0.5rem;
  }

  .tablet\:hover\:pb-3:hover{
    padding-bottom: 0.75rem;
  }

  .tablet\:hover\:pb-4:hover{
    padding-bottom: 1rem;
  }

  .tablet\:hover\:pb-5:hover{
    padding-bottom: 1.25rem;
  }

  .tablet\:hover\:pb-6:hover{
    padding-bottom: 1.5rem;
  }

  .tablet\:hover\:pb-7:hover{
    padding-bottom: 1.75rem;
  }

  .tablet\:hover\:pb-8:hover{
    padding-bottom: 2rem;
  }

  .tablet\:hover\:pb-9:hover{
    padding-bottom: 2.25rem;
  }

  .tablet\:hover\:pb-10:hover{
    padding-bottom: 2.5rem;
  }

  .tablet\:hover\:pb-11:hover{
    padding-bottom: 2.75rem;
  }

  .tablet\:hover\:pb-12:hover{
    padding-bottom: 3rem;
  }

  .tablet\:hover\:pb-14:hover{
    padding-bottom: 3.5rem;
  }

  .tablet\:hover\:pb-16:hover{
    padding-bottom: 4rem;
  }

  .tablet\:hover\:pb-20:hover{
    padding-bottom: 5rem;
  }

  .tablet\:hover\:pb-24:hover{
    padding-bottom: 6rem;
  }

  .tablet\:hover\:pb-28:hover{
    padding-bottom: 7rem;
  }

  .tablet\:hover\:pb-32:hover{
    padding-bottom: 8rem;
  }

  .tablet\:hover\:pb-36:hover{
    padding-bottom: 9rem;
  }

  .tablet\:hover\:pb-40:hover{
    padding-bottom: 10rem;
  }

  .tablet\:hover\:pb-44:hover{
    padding-bottom: 11rem;
  }

  .tablet\:hover\:pb-48:hover{
    padding-bottom: 12rem;
  }

  .tablet\:hover\:pb-52:hover{
    padding-bottom: 13rem;
  }

  .tablet\:hover\:pb-56:hover{
    padding-bottom: 14rem;
  }

  .tablet\:hover\:pb-60:hover{
    padding-bottom: 15rem;
  }

  .tablet\:hover\:pb-64:hover{
    padding-bottom: 16rem;
  }

  .tablet\:hover\:pb-72:hover{
    padding-bottom: 18rem;
  }

  .tablet\:hover\:pb-80:hover{
    padding-bottom: 20rem;
  }

  .tablet\:hover\:pb-96:hover{
    padding-bottom: 24rem;
  }

  .tablet\:hover\:pb-px:hover{
    padding-bottom: 1px;
  }

  .tablet\:hover\:pb-0\.5:hover{
    padding-bottom: 0.125rem;
  }

  .tablet\:hover\:pb-1\.5:hover{
    padding-bottom: 0.375rem;
  }

  .tablet\:hover\:pb-2\.5:hover{
    padding-bottom: 0.625rem;
  }

  .tablet\:hover\:pb-3\.5:hover{
    padding-bottom: 0.875rem;
  }

  .tablet\:hover\:pl-0:hover{
    padding-left: 0px;
  }

  .tablet\:hover\:pl-1:hover{
    padding-left: 0.25rem;
  }

  .tablet\:hover\:pl-2:hover{
    padding-left: 0.5rem;
  }

  .tablet\:hover\:pl-3:hover{
    padding-left: 0.75rem;
  }

  .tablet\:hover\:pl-4:hover{
    padding-left: 1rem;
  }

  .tablet\:hover\:pl-5:hover{
    padding-left: 1.25rem;
  }

  .tablet\:hover\:pl-6:hover{
    padding-left: 1.5rem;
  }

  .tablet\:hover\:pl-7:hover{
    padding-left: 1.75rem;
  }

  .tablet\:hover\:pl-8:hover{
    padding-left: 2rem;
  }

  .tablet\:hover\:pl-9:hover{
    padding-left: 2.25rem;
  }

  .tablet\:hover\:pl-10:hover{
    padding-left: 2.5rem;
  }

  .tablet\:hover\:pl-11:hover{
    padding-left: 2.75rem;
  }

  .tablet\:hover\:pl-12:hover{
    padding-left: 3rem;
  }

  .tablet\:hover\:pl-14:hover{
    padding-left: 3.5rem;
  }

  .tablet\:hover\:pl-16:hover{
    padding-left: 4rem;
  }

  .tablet\:hover\:pl-20:hover{
    padding-left: 5rem;
  }

  .tablet\:hover\:pl-24:hover{
    padding-left: 6rem;
  }

  .tablet\:hover\:pl-28:hover{
    padding-left: 7rem;
  }

  .tablet\:hover\:pl-32:hover{
    padding-left: 8rem;
  }

  .tablet\:hover\:pl-36:hover{
    padding-left: 9rem;
  }

  .tablet\:hover\:pl-40:hover{
    padding-left: 10rem;
  }

  .tablet\:hover\:pl-44:hover{
    padding-left: 11rem;
  }

  .tablet\:hover\:pl-48:hover{
    padding-left: 12rem;
  }

  .tablet\:hover\:pl-52:hover{
    padding-left: 13rem;
  }

  .tablet\:hover\:pl-56:hover{
    padding-left: 14rem;
  }

  .tablet\:hover\:pl-60:hover{
    padding-left: 15rem;
  }

  .tablet\:hover\:pl-64:hover{
    padding-left: 16rem;
  }

  .tablet\:hover\:pl-72:hover{
    padding-left: 18rem;
  }

  .tablet\:hover\:pl-80:hover{
    padding-left: 20rem;
  }

  .tablet\:hover\:pl-96:hover{
    padding-left: 24rem;
  }

  .tablet\:hover\:pl-px:hover{
    padding-left: 1px;
  }

  .tablet\:hover\:pl-0\.5:hover{
    padding-left: 0.125rem;
  }

  .tablet\:hover\:pl-1\.5:hover{
    padding-left: 0.375rem;
  }

  .tablet\:hover\:pl-2\.5:hover{
    padding-left: 0.625rem;
  }

  .tablet\:hover\:pl-3\.5:hover{
    padding-left: 0.875rem;
  }

  .tablet\:focus\:pt-0:focus{
    padding-top: 0px;
  }

  .tablet\:focus\:pt-1:focus{
    padding-top: 0.25rem;
  }

  .tablet\:focus\:pt-2:focus{
    padding-top: 0.5rem;
  }

  .tablet\:focus\:pt-3:focus{
    padding-top: 0.75rem;
  }

  .tablet\:focus\:pt-4:focus{
    padding-top: 1rem;
  }

  .tablet\:focus\:pt-5:focus{
    padding-top: 1.25rem;
  }

  .tablet\:focus\:pt-6:focus{
    padding-top: 1.5rem;
  }

  .tablet\:focus\:pt-7:focus{
    padding-top: 1.75rem;
  }

  .tablet\:focus\:pt-8:focus{
    padding-top: 2rem;
  }

  .tablet\:focus\:pt-9:focus{
    padding-top: 2.25rem;
  }

  .tablet\:focus\:pt-10:focus{
    padding-top: 2.5rem;
  }

  .tablet\:focus\:pt-11:focus{
    padding-top: 2.75rem;
  }

  .tablet\:focus\:pt-12:focus{
    padding-top: 3rem;
  }

  .tablet\:focus\:pt-14:focus{
    padding-top: 3.5rem;
  }

  .tablet\:focus\:pt-16:focus{
    padding-top: 4rem;
  }

  .tablet\:focus\:pt-20:focus{
    padding-top: 5rem;
  }

  .tablet\:focus\:pt-24:focus{
    padding-top: 6rem;
  }

  .tablet\:focus\:pt-28:focus{
    padding-top: 7rem;
  }

  .tablet\:focus\:pt-32:focus{
    padding-top: 8rem;
  }

  .tablet\:focus\:pt-36:focus{
    padding-top: 9rem;
  }

  .tablet\:focus\:pt-40:focus{
    padding-top: 10rem;
  }

  .tablet\:focus\:pt-44:focus{
    padding-top: 11rem;
  }

  .tablet\:focus\:pt-48:focus{
    padding-top: 12rem;
  }

  .tablet\:focus\:pt-52:focus{
    padding-top: 13rem;
  }

  .tablet\:focus\:pt-56:focus{
    padding-top: 14rem;
  }

  .tablet\:focus\:pt-60:focus{
    padding-top: 15rem;
  }

  .tablet\:focus\:pt-64:focus{
    padding-top: 16rem;
  }

  .tablet\:focus\:pt-72:focus{
    padding-top: 18rem;
  }

  .tablet\:focus\:pt-80:focus{
    padding-top: 20rem;
  }

  .tablet\:focus\:pt-96:focus{
    padding-top: 24rem;
  }

  .tablet\:focus\:pt-px:focus{
    padding-top: 1px;
  }

  .tablet\:focus\:pt-0\.5:focus{
    padding-top: 0.125rem;
  }

  .tablet\:focus\:pt-1\.5:focus{
    padding-top: 0.375rem;
  }

  .tablet\:focus\:pt-2\.5:focus{
    padding-top: 0.625rem;
  }

  .tablet\:focus\:pt-3\.5:focus{
    padding-top: 0.875rem;
  }

  .tablet\:focus\:pr-0:focus{
    padding-right: 0px;
  }

  .tablet\:focus\:pr-1:focus{
    padding-right: 0.25rem;
  }

  .tablet\:focus\:pr-2:focus{
    padding-right: 0.5rem;
  }

  .tablet\:focus\:pr-3:focus{
    padding-right: 0.75rem;
  }

  .tablet\:focus\:pr-4:focus{
    padding-right: 1rem;
  }

  .tablet\:focus\:pr-5:focus{
    padding-right: 1.25rem;
  }

  .tablet\:focus\:pr-6:focus{
    padding-right: 1.5rem;
  }

  .tablet\:focus\:pr-7:focus{
    padding-right: 1.75rem;
  }

  .tablet\:focus\:pr-8:focus{
    padding-right: 2rem;
  }

  .tablet\:focus\:pr-9:focus{
    padding-right: 2.25rem;
  }

  .tablet\:focus\:pr-10:focus{
    padding-right: 2.5rem;
  }

  .tablet\:focus\:pr-11:focus{
    padding-right: 2.75rem;
  }

  .tablet\:focus\:pr-12:focus{
    padding-right: 3rem;
  }

  .tablet\:focus\:pr-14:focus{
    padding-right: 3.5rem;
  }

  .tablet\:focus\:pr-16:focus{
    padding-right: 4rem;
  }

  .tablet\:focus\:pr-20:focus{
    padding-right: 5rem;
  }

  .tablet\:focus\:pr-24:focus{
    padding-right: 6rem;
  }

  .tablet\:focus\:pr-28:focus{
    padding-right: 7rem;
  }

  .tablet\:focus\:pr-32:focus{
    padding-right: 8rem;
  }

  .tablet\:focus\:pr-36:focus{
    padding-right: 9rem;
  }

  .tablet\:focus\:pr-40:focus{
    padding-right: 10rem;
  }

  .tablet\:focus\:pr-44:focus{
    padding-right: 11rem;
  }

  .tablet\:focus\:pr-48:focus{
    padding-right: 12rem;
  }

  .tablet\:focus\:pr-52:focus{
    padding-right: 13rem;
  }

  .tablet\:focus\:pr-56:focus{
    padding-right: 14rem;
  }

  .tablet\:focus\:pr-60:focus{
    padding-right: 15rem;
  }

  .tablet\:focus\:pr-64:focus{
    padding-right: 16rem;
  }

  .tablet\:focus\:pr-72:focus{
    padding-right: 18rem;
  }

  .tablet\:focus\:pr-80:focus{
    padding-right: 20rem;
  }

  .tablet\:focus\:pr-96:focus{
    padding-right: 24rem;
  }

  .tablet\:focus\:pr-px:focus{
    padding-right: 1px;
  }

  .tablet\:focus\:pr-0\.5:focus{
    padding-right: 0.125rem;
  }

  .tablet\:focus\:pr-1\.5:focus{
    padding-right: 0.375rem;
  }

  .tablet\:focus\:pr-2\.5:focus{
    padding-right: 0.625rem;
  }

  .tablet\:focus\:pr-3\.5:focus{
    padding-right: 0.875rem;
  }

  .tablet\:focus\:pb-0:focus{
    padding-bottom: 0px;
  }

  .tablet\:focus\:pb-1:focus{
    padding-bottom: 0.25rem;
  }

  .tablet\:focus\:pb-2:focus{
    padding-bottom: 0.5rem;
  }

  .tablet\:focus\:pb-3:focus{
    padding-bottom: 0.75rem;
  }

  .tablet\:focus\:pb-4:focus{
    padding-bottom: 1rem;
  }

  .tablet\:focus\:pb-5:focus{
    padding-bottom: 1.25rem;
  }

  .tablet\:focus\:pb-6:focus{
    padding-bottom: 1.5rem;
  }

  .tablet\:focus\:pb-7:focus{
    padding-bottom: 1.75rem;
  }

  .tablet\:focus\:pb-8:focus{
    padding-bottom: 2rem;
  }

  .tablet\:focus\:pb-9:focus{
    padding-bottom: 2.25rem;
  }

  .tablet\:focus\:pb-10:focus{
    padding-bottom: 2.5rem;
  }

  .tablet\:focus\:pb-11:focus{
    padding-bottom: 2.75rem;
  }

  .tablet\:focus\:pb-12:focus{
    padding-bottom: 3rem;
  }

  .tablet\:focus\:pb-14:focus{
    padding-bottom: 3.5rem;
  }

  .tablet\:focus\:pb-16:focus{
    padding-bottom: 4rem;
  }

  .tablet\:focus\:pb-20:focus{
    padding-bottom: 5rem;
  }

  .tablet\:focus\:pb-24:focus{
    padding-bottom: 6rem;
  }

  .tablet\:focus\:pb-28:focus{
    padding-bottom: 7rem;
  }

  .tablet\:focus\:pb-32:focus{
    padding-bottom: 8rem;
  }

  .tablet\:focus\:pb-36:focus{
    padding-bottom: 9rem;
  }

  .tablet\:focus\:pb-40:focus{
    padding-bottom: 10rem;
  }

  .tablet\:focus\:pb-44:focus{
    padding-bottom: 11rem;
  }

  .tablet\:focus\:pb-48:focus{
    padding-bottom: 12rem;
  }

  .tablet\:focus\:pb-52:focus{
    padding-bottom: 13rem;
  }

  .tablet\:focus\:pb-56:focus{
    padding-bottom: 14rem;
  }

  .tablet\:focus\:pb-60:focus{
    padding-bottom: 15rem;
  }

  .tablet\:focus\:pb-64:focus{
    padding-bottom: 16rem;
  }

  .tablet\:focus\:pb-72:focus{
    padding-bottom: 18rem;
  }

  .tablet\:focus\:pb-80:focus{
    padding-bottom: 20rem;
  }

  .tablet\:focus\:pb-96:focus{
    padding-bottom: 24rem;
  }

  .tablet\:focus\:pb-px:focus{
    padding-bottom: 1px;
  }

  .tablet\:focus\:pb-0\.5:focus{
    padding-bottom: 0.125rem;
  }

  .tablet\:focus\:pb-1\.5:focus{
    padding-bottom: 0.375rem;
  }

  .tablet\:focus\:pb-2\.5:focus{
    padding-bottom: 0.625rem;
  }

  .tablet\:focus\:pb-3\.5:focus{
    padding-bottom: 0.875rem;
  }

  .tablet\:focus\:pl-0:focus{
    padding-left: 0px;
  }

  .tablet\:focus\:pl-1:focus{
    padding-left: 0.25rem;
  }

  .tablet\:focus\:pl-2:focus{
    padding-left: 0.5rem;
  }

  .tablet\:focus\:pl-3:focus{
    padding-left: 0.75rem;
  }

  .tablet\:focus\:pl-4:focus{
    padding-left: 1rem;
  }

  .tablet\:focus\:pl-5:focus{
    padding-left: 1.25rem;
  }

  .tablet\:focus\:pl-6:focus{
    padding-left: 1.5rem;
  }

  .tablet\:focus\:pl-7:focus{
    padding-left: 1.75rem;
  }

  .tablet\:focus\:pl-8:focus{
    padding-left: 2rem;
  }

  .tablet\:focus\:pl-9:focus{
    padding-left: 2.25rem;
  }

  .tablet\:focus\:pl-10:focus{
    padding-left: 2.5rem;
  }

  .tablet\:focus\:pl-11:focus{
    padding-left: 2.75rem;
  }

  .tablet\:focus\:pl-12:focus{
    padding-left: 3rem;
  }

  .tablet\:focus\:pl-14:focus{
    padding-left: 3.5rem;
  }

  .tablet\:focus\:pl-16:focus{
    padding-left: 4rem;
  }

  .tablet\:focus\:pl-20:focus{
    padding-left: 5rem;
  }

  .tablet\:focus\:pl-24:focus{
    padding-left: 6rem;
  }

  .tablet\:focus\:pl-28:focus{
    padding-left: 7rem;
  }

  .tablet\:focus\:pl-32:focus{
    padding-left: 8rem;
  }

  .tablet\:focus\:pl-36:focus{
    padding-left: 9rem;
  }

  .tablet\:focus\:pl-40:focus{
    padding-left: 10rem;
  }

  .tablet\:focus\:pl-44:focus{
    padding-left: 11rem;
  }

  .tablet\:focus\:pl-48:focus{
    padding-left: 12rem;
  }

  .tablet\:focus\:pl-52:focus{
    padding-left: 13rem;
  }

  .tablet\:focus\:pl-56:focus{
    padding-left: 14rem;
  }

  .tablet\:focus\:pl-60:focus{
    padding-left: 15rem;
  }

  .tablet\:focus\:pl-64:focus{
    padding-left: 16rem;
  }

  .tablet\:focus\:pl-72:focus{
    padding-left: 18rem;
  }

  .tablet\:focus\:pl-80:focus{
    padding-left: 20rem;
  }

  .tablet\:focus\:pl-96:focus{
    padding-left: 24rem;
  }

  .tablet\:focus\:pl-px:focus{
    padding-left: 1px;
  }

  .tablet\:focus\:pl-0\.5:focus{
    padding-left: 0.125rem;
  }

  .tablet\:focus\:pl-1\.5:focus{
    padding-left: 0.375rem;
  }

  .tablet\:focus\:pl-2\.5:focus{
    padding-left: 0.625rem;
  }

  .tablet\:focus\:pl-3\.5:focus{
    padding-left: 0.875rem;
  }

  .tablet\:first\:pt-0:first-child{
    padding-top: 0px;
  }

  .tablet\:first\:pt-1:first-child{
    padding-top: 0.25rem;
  }

  .tablet\:first\:pt-2:first-child{
    padding-top: 0.5rem;
  }

  .tablet\:first\:pt-3:first-child{
    padding-top: 0.75rem;
  }

  .tablet\:first\:pt-4:first-child{
    padding-top: 1rem;
  }

  .tablet\:first\:pt-5:first-child{
    padding-top: 1.25rem;
  }

  .tablet\:first\:pt-6:first-child{
    padding-top: 1.5rem;
  }

  .tablet\:first\:pt-7:first-child{
    padding-top: 1.75rem;
  }

  .tablet\:first\:pt-8:first-child{
    padding-top: 2rem;
  }

  .tablet\:first\:pt-9:first-child{
    padding-top: 2.25rem;
  }

  .tablet\:first\:pt-10:first-child{
    padding-top: 2.5rem;
  }

  .tablet\:first\:pt-11:first-child{
    padding-top: 2.75rem;
  }

  .tablet\:first\:pt-12:first-child{
    padding-top: 3rem;
  }

  .tablet\:first\:pt-14:first-child{
    padding-top: 3.5rem;
  }

  .tablet\:first\:pt-16:first-child{
    padding-top: 4rem;
  }

  .tablet\:first\:pt-20:first-child{
    padding-top: 5rem;
  }

  .tablet\:first\:pt-24:first-child{
    padding-top: 6rem;
  }

  .tablet\:first\:pt-28:first-child{
    padding-top: 7rem;
  }

  .tablet\:first\:pt-32:first-child{
    padding-top: 8rem;
  }

  .tablet\:first\:pt-36:first-child{
    padding-top: 9rem;
  }

  .tablet\:first\:pt-40:first-child{
    padding-top: 10rem;
  }

  .tablet\:first\:pt-44:first-child{
    padding-top: 11rem;
  }

  .tablet\:first\:pt-48:first-child{
    padding-top: 12rem;
  }

  .tablet\:first\:pt-52:first-child{
    padding-top: 13rem;
  }

  .tablet\:first\:pt-56:first-child{
    padding-top: 14rem;
  }

  .tablet\:first\:pt-60:first-child{
    padding-top: 15rem;
  }

  .tablet\:first\:pt-64:first-child{
    padding-top: 16rem;
  }

  .tablet\:first\:pt-72:first-child{
    padding-top: 18rem;
  }

  .tablet\:first\:pt-80:first-child{
    padding-top: 20rem;
  }

  .tablet\:first\:pt-96:first-child{
    padding-top: 24rem;
  }

  .tablet\:first\:pt-px:first-child{
    padding-top: 1px;
  }

  .tablet\:first\:pt-0\.5:first-child{
    padding-top: 0.125rem;
  }

  .tablet\:first\:pt-1\.5:first-child{
    padding-top: 0.375rem;
  }

  .tablet\:first\:pt-2\.5:first-child{
    padding-top: 0.625rem;
  }

  .tablet\:first\:pt-3\.5:first-child{
    padding-top: 0.875rem;
  }

  .tablet\:first\:pr-0:first-child{
    padding-right: 0px;
  }

  .tablet\:first\:pr-1:first-child{
    padding-right: 0.25rem;
  }

  .tablet\:first\:pr-2:first-child{
    padding-right: 0.5rem;
  }

  .tablet\:first\:pr-3:first-child{
    padding-right: 0.75rem;
  }

  .tablet\:first\:pr-4:first-child{
    padding-right: 1rem;
  }

  .tablet\:first\:pr-5:first-child{
    padding-right: 1.25rem;
  }

  .tablet\:first\:pr-6:first-child{
    padding-right: 1.5rem;
  }

  .tablet\:first\:pr-7:first-child{
    padding-right: 1.75rem;
  }

  .tablet\:first\:pr-8:first-child{
    padding-right: 2rem;
  }

  .tablet\:first\:pr-9:first-child{
    padding-right: 2.25rem;
  }

  .tablet\:first\:pr-10:first-child{
    padding-right: 2.5rem;
  }

  .tablet\:first\:pr-11:first-child{
    padding-right: 2.75rem;
  }

  .tablet\:first\:pr-12:first-child{
    padding-right: 3rem;
  }

  .tablet\:first\:pr-14:first-child{
    padding-right: 3.5rem;
  }

  .tablet\:first\:pr-16:first-child{
    padding-right: 4rem;
  }

  .tablet\:first\:pr-20:first-child{
    padding-right: 5rem;
  }

  .tablet\:first\:pr-24:first-child{
    padding-right: 6rem;
  }

  .tablet\:first\:pr-28:first-child{
    padding-right: 7rem;
  }

  .tablet\:first\:pr-32:first-child{
    padding-right: 8rem;
  }

  .tablet\:first\:pr-36:first-child{
    padding-right: 9rem;
  }

  .tablet\:first\:pr-40:first-child{
    padding-right: 10rem;
  }

  .tablet\:first\:pr-44:first-child{
    padding-right: 11rem;
  }

  .tablet\:first\:pr-48:first-child{
    padding-right: 12rem;
  }

  .tablet\:first\:pr-52:first-child{
    padding-right: 13rem;
  }

  .tablet\:first\:pr-56:first-child{
    padding-right: 14rem;
  }

  .tablet\:first\:pr-60:first-child{
    padding-right: 15rem;
  }

  .tablet\:first\:pr-64:first-child{
    padding-right: 16rem;
  }

  .tablet\:first\:pr-72:first-child{
    padding-right: 18rem;
  }

  .tablet\:first\:pr-80:first-child{
    padding-right: 20rem;
  }

  .tablet\:first\:pr-96:first-child{
    padding-right: 24rem;
  }

  .tablet\:first\:pr-px:first-child{
    padding-right: 1px;
  }

  .tablet\:first\:pr-0\.5:first-child{
    padding-right: 0.125rem;
  }

  .tablet\:first\:pr-1\.5:first-child{
    padding-right: 0.375rem;
  }

  .tablet\:first\:pr-2\.5:first-child{
    padding-right: 0.625rem;
  }

  .tablet\:first\:pr-3\.5:first-child{
    padding-right: 0.875rem;
  }

  .tablet\:first\:pb-0:first-child{
    padding-bottom: 0px;
  }

  .tablet\:first\:pb-1:first-child{
    padding-bottom: 0.25rem;
  }

  .tablet\:first\:pb-2:first-child{
    padding-bottom: 0.5rem;
  }

  .tablet\:first\:pb-3:first-child{
    padding-bottom: 0.75rem;
  }

  .tablet\:first\:pb-4:first-child{
    padding-bottom: 1rem;
  }

  .tablet\:first\:pb-5:first-child{
    padding-bottom: 1.25rem;
  }

  .tablet\:first\:pb-6:first-child{
    padding-bottom: 1.5rem;
  }

  .tablet\:first\:pb-7:first-child{
    padding-bottom: 1.75rem;
  }

  .tablet\:first\:pb-8:first-child{
    padding-bottom: 2rem;
  }

  .tablet\:first\:pb-9:first-child{
    padding-bottom: 2.25rem;
  }

  .tablet\:first\:pb-10:first-child{
    padding-bottom: 2.5rem;
  }

  .tablet\:first\:pb-11:first-child{
    padding-bottom: 2.75rem;
  }

  .tablet\:first\:pb-12:first-child{
    padding-bottom: 3rem;
  }

  .tablet\:first\:pb-14:first-child{
    padding-bottom: 3.5rem;
  }

  .tablet\:first\:pb-16:first-child{
    padding-bottom: 4rem;
  }

  .tablet\:first\:pb-20:first-child{
    padding-bottom: 5rem;
  }

  .tablet\:first\:pb-24:first-child{
    padding-bottom: 6rem;
  }

  .tablet\:first\:pb-28:first-child{
    padding-bottom: 7rem;
  }

  .tablet\:first\:pb-32:first-child{
    padding-bottom: 8rem;
  }

  .tablet\:first\:pb-36:first-child{
    padding-bottom: 9rem;
  }

  .tablet\:first\:pb-40:first-child{
    padding-bottom: 10rem;
  }

  .tablet\:first\:pb-44:first-child{
    padding-bottom: 11rem;
  }

  .tablet\:first\:pb-48:first-child{
    padding-bottom: 12rem;
  }

  .tablet\:first\:pb-52:first-child{
    padding-bottom: 13rem;
  }

  .tablet\:first\:pb-56:first-child{
    padding-bottom: 14rem;
  }

  .tablet\:first\:pb-60:first-child{
    padding-bottom: 15rem;
  }

  .tablet\:first\:pb-64:first-child{
    padding-bottom: 16rem;
  }

  .tablet\:first\:pb-72:first-child{
    padding-bottom: 18rem;
  }

  .tablet\:first\:pb-80:first-child{
    padding-bottom: 20rem;
  }

  .tablet\:first\:pb-96:first-child{
    padding-bottom: 24rem;
  }

  .tablet\:first\:pb-px:first-child{
    padding-bottom: 1px;
  }

  .tablet\:first\:pb-0\.5:first-child{
    padding-bottom: 0.125rem;
  }

  .tablet\:first\:pb-1\.5:first-child{
    padding-bottom: 0.375rem;
  }

  .tablet\:first\:pb-2\.5:first-child{
    padding-bottom: 0.625rem;
  }

  .tablet\:first\:pb-3\.5:first-child{
    padding-bottom: 0.875rem;
  }

  .tablet\:first\:pl-0:first-child{
    padding-left: 0px;
  }

  .tablet\:first\:pl-1:first-child{
    padding-left: 0.25rem;
  }

  .tablet\:first\:pl-2:first-child{
    padding-left: 0.5rem;
  }

  .tablet\:first\:pl-3:first-child{
    padding-left: 0.75rem;
  }

  .tablet\:first\:pl-4:first-child{
    padding-left: 1rem;
  }

  .tablet\:first\:pl-5:first-child{
    padding-left: 1.25rem;
  }

  .tablet\:first\:pl-6:first-child{
    padding-left: 1.5rem;
  }

  .tablet\:first\:pl-7:first-child{
    padding-left: 1.75rem;
  }

  .tablet\:first\:pl-8:first-child{
    padding-left: 2rem;
  }

  .tablet\:first\:pl-9:first-child{
    padding-left: 2.25rem;
  }

  .tablet\:first\:pl-10:first-child{
    padding-left: 2.5rem;
  }

  .tablet\:first\:pl-11:first-child{
    padding-left: 2.75rem;
  }

  .tablet\:first\:pl-12:first-child{
    padding-left: 3rem;
  }

  .tablet\:first\:pl-14:first-child{
    padding-left: 3.5rem;
  }

  .tablet\:first\:pl-16:first-child{
    padding-left: 4rem;
  }

  .tablet\:first\:pl-20:first-child{
    padding-left: 5rem;
  }

  .tablet\:first\:pl-24:first-child{
    padding-left: 6rem;
  }

  .tablet\:first\:pl-28:first-child{
    padding-left: 7rem;
  }

  .tablet\:first\:pl-32:first-child{
    padding-left: 8rem;
  }

  .tablet\:first\:pl-36:first-child{
    padding-left: 9rem;
  }

  .tablet\:first\:pl-40:first-child{
    padding-left: 10rem;
  }

  .tablet\:first\:pl-44:first-child{
    padding-left: 11rem;
  }

  .tablet\:first\:pl-48:first-child{
    padding-left: 12rem;
  }

  .tablet\:first\:pl-52:first-child{
    padding-left: 13rem;
  }

  .tablet\:first\:pl-56:first-child{
    padding-left: 14rem;
  }

  .tablet\:first\:pl-60:first-child{
    padding-left: 15rem;
  }

  .tablet\:first\:pl-64:first-child{
    padding-left: 16rem;
  }

  .tablet\:first\:pl-72:first-child{
    padding-left: 18rem;
  }

  .tablet\:first\:pl-80:first-child{
    padding-left: 20rem;
  }

  .tablet\:first\:pl-96:first-child{
    padding-left: 24rem;
  }

  .tablet\:first\:pl-px:first-child{
    padding-left: 1px;
  }

  .tablet\:first\:pl-0\.5:first-child{
    padding-left: 0.125rem;
  }

  .tablet\:first\:pl-1\.5:first-child{
    padding-left: 0.375rem;
  }

  .tablet\:first\:pl-2\.5:first-child{
    padding-left: 0.625rem;
  }

  .tablet\:first\:pl-3\.5:first-child{
    padding-left: 0.875rem;
  }

  .tablet\:last\:pt-0:last-child{
    padding-top: 0px;
  }

  .tablet\:last\:pt-1:last-child{
    padding-top: 0.25rem;
  }

  .tablet\:last\:pt-2:last-child{
    padding-top: 0.5rem;
  }

  .tablet\:last\:pt-3:last-child{
    padding-top: 0.75rem;
  }

  .tablet\:last\:pt-4:last-child{
    padding-top: 1rem;
  }

  .tablet\:last\:pt-5:last-child{
    padding-top: 1.25rem;
  }

  .tablet\:last\:pt-6:last-child{
    padding-top: 1.5rem;
  }

  .tablet\:last\:pt-7:last-child{
    padding-top: 1.75rem;
  }

  .tablet\:last\:pt-8:last-child{
    padding-top: 2rem;
  }

  .tablet\:last\:pt-9:last-child{
    padding-top: 2.25rem;
  }

  .tablet\:last\:pt-10:last-child{
    padding-top: 2.5rem;
  }

  .tablet\:last\:pt-11:last-child{
    padding-top: 2.75rem;
  }

  .tablet\:last\:pt-12:last-child{
    padding-top: 3rem;
  }

  .tablet\:last\:pt-14:last-child{
    padding-top: 3.5rem;
  }

  .tablet\:last\:pt-16:last-child{
    padding-top: 4rem;
  }

  .tablet\:last\:pt-20:last-child{
    padding-top: 5rem;
  }

  .tablet\:last\:pt-24:last-child{
    padding-top: 6rem;
  }

  .tablet\:last\:pt-28:last-child{
    padding-top: 7rem;
  }

  .tablet\:last\:pt-32:last-child{
    padding-top: 8rem;
  }

  .tablet\:last\:pt-36:last-child{
    padding-top: 9rem;
  }

  .tablet\:last\:pt-40:last-child{
    padding-top: 10rem;
  }

  .tablet\:last\:pt-44:last-child{
    padding-top: 11rem;
  }

  .tablet\:last\:pt-48:last-child{
    padding-top: 12rem;
  }

  .tablet\:last\:pt-52:last-child{
    padding-top: 13rem;
  }

  .tablet\:last\:pt-56:last-child{
    padding-top: 14rem;
  }

  .tablet\:last\:pt-60:last-child{
    padding-top: 15rem;
  }

  .tablet\:last\:pt-64:last-child{
    padding-top: 16rem;
  }

  .tablet\:last\:pt-72:last-child{
    padding-top: 18rem;
  }

  .tablet\:last\:pt-80:last-child{
    padding-top: 20rem;
  }

  .tablet\:last\:pt-96:last-child{
    padding-top: 24rem;
  }

  .tablet\:last\:pt-px:last-child{
    padding-top: 1px;
  }

  .tablet\:last\:pt-0\.5:last-child{
    padding-top: 0.125rem;
  }

  .tablet\:last\:pt-1\.5:last-child{
    padding-top: 0.375rem;
  }

  .tablet\:last\:pt-2\.5:last-child{
    padding-top: 0.625rem;
  }

  .tablet\:last\:pt-3\.5:last-child{
    padding-top: 0.875rem;
  }

  .tablet\:last\:pr-0:last-child{
    padding-right: 0px;
  }

  .tablet\:last\:pr-1:last-child{
    padding-right: 0.25rem;
  }

  .tablet\:last\:pr-2:last-child{
    padding-right: 0.5rem;
  }

  .tablet\:last\:pr-3:last-child{
    padding-right: 0.75rem;
  }

  .tablet\:last\:pr-4:last-child{
    padding-right: 1rem;
  }

  .tablet\:last\:pr-5:last-child{
    padding-right: 1.25rem;
  }

  .tablet\:last\:pr-6:last-child{
    padding-right: 1.5rem;
  }

  .tablet\:last\:pr-7:last-child{
    padding-right: 1.75rem;
  }

  .tablet\:last\:pr-8:last-child{
    padding-right: 2rem;
  }

  .tablet\:last\:pr-9:last-child{
    padding-right: 2.25rem;
  }

  .tablet\:last\:pr-10:last-child{
    padding-right: 2.5rem;
  }

  .tablet\:last\:pr-11:last-child{
    padding-right: 2.75rem;
  }

  .tablet\:last\:pr-12:last-child{
    padding-right: 3rem;
  }

  .tablet\:last\:pr-14:last-child{
    padding-right: 3.5rem;
  }

  .tablet\:last\:pr-16:last-child{
    padding-right: 4rem;
  }

  .tablet\:last\:pr-20:last-child{
    padding-right: 5rem;
  }

  .tablet\:last\:pr-24:last-child{
    padding-right: 6rem;
  }

  .tablet\:last\:pr-28:last-child{
    padding-right: 7rem;
  }

  .tablet\:last\:pr-32:last-child{
    padding-right: 8rem;
  }

  .tablet\:last\:pr-36:last-child{
    padding-right: 9rem;
  }

  .tablet\:last\:pr-40:last-child{
    padding-right: 10rem;
  }

  .tablet\:last\:pr-44:last-child{
    padding-right: 11rem;
  }

  .tablet\:last\:pr-48:last-child{
    padding-right: 12rem;
  }

  .tablet\:last\:pr-52:last-child{
    padding-right: 13rem;
  }

  .tablet\:last\:pr-56:last-child{
    padding-right: 14rem;
  }

  .tablet\:last\:pr-60:last-child{
    padding-right: 15rem;
  }

  .tablet\:last\:pr-64:last-child{
    padding-right: 16rem;
  }

  .tablet\:last\:pr-72:last-child{
    padding-right: 18rem;
  }

  .tablet\:last\:pr-80:last-child{
    padding-right: 20rem;
  }

  .tablet\:last\:pr-96:last-child{
    padding-right: 24rem;
  }

  .tablet\:last\:pr-px:last-child{
    padding-right: 1px;
  }

  .tablet\:last\:pr-0\.5:last-child{
    padding-right: 0.125rem;
  }

  .tablet\:last\:pr-1\.5:last-child{
    padding-right: 0.375rem;
  }

  .tablet\:last\:pr-2\.5:last-child{
    padding-right: 0.625rem;
  }

  .tablet\:last\:pr-3\.5:last-child{
    padding-right: 0.875rem;
  }

  .tablet\:last\:pb-0:last-child{
    padding-bottom: 0px;
  }

  .tablet\:last\:pb-1:last-child{
    padding-bottom: 0.25rem;
  }

  .tablet\:last\:pb-2:last-child{
    padding-bottom: 0.5rem;
  }

  .tablet\:last\:pb-3:last-child{
    padding-bottom: 0.75rem;
  }

  .tablet\:last\:pb-4:last-child{
    padding-bottom: 1rem;
  }

  .tablet\:last\:pb-5:last-child{
    padding-bottom: 1.25rem;
  }

  .tablet\:last\:pb-6:last-child{
    padding-bottom: 1.5rem;
  }

  .tablet\:last\:pb-7:last-child{
    padding-bottom: 1.75rem;
  }

  .tablet\:last\:pb-8:last-child{
    padding-bottom: 2rem;
  }

  .tablet\:last\:pb-9:last-child{
    padding-bottom: 2.25rem;
  }

  .tablet\:last\:pb-10:last-child{
    padding-bottom: 2.5rem;
  }

  .tablet\:last\:pb-11:last-child{
    padding-bottom: 2.75rem;
  }

  .tablet\:last\:pb-12:last-child{
    padding-bottom: 3rem;
  }

  .tablet\:last\:pb-14:last-child{
    padding-bottom: 3.5rem;
  }

  .tablet\:last\:pb-16:last-child{
    padding-bottom: 4rem;
  }

  .tablet\:last\:pb-20:last-child{
    padding-bottom: 5rem;
  }

  .tablet\:last\:pb-24:last-child{
    padding-bottom: 6rem;
  }

  .tablet\:last\:pb-28:last-child{
    padding-bottom: 7rem;
  }

  .tablet\:last\:pb-32:last-child{
    padding-bottom: 8rem;
  }

  .tablet\:last\:pb-36:last-child{
    padding-bottom: 9rem;
  }

  .tablet\:last\:pb-40:last-child{
    padding-bottom: 10rem;
  }

  .tablet\:last\:pb-44:last-child{
    padding-bottom: 11rem;
  }

  .tablet\:last\:pb-48:last-child{
    padding-bottom: 12rem;
  }

  .tablet\:last\:pb-52:last-child{
    padding-bottom: 13rem;
  }

  .tablet\:last\:pb-56:last-child{
    padding-bottom: 14rem;
  }

  .tablet\:last\:pb-60:last-child{
    padding-bottom: 15rem;
  }

  .tablet\:last\:pb-64:last-child{
    padding-bottom: 16rem;
  }

  .tablet\:last\:pb-72:last-child{
    padding-bottom: 18rem;
  }

  .tablet\:last\:pb-80:last-child{
    padding-bottom: 20rem;
  }

  .tablet\:last\:pb-96:last-child{
    padding-bottom: 24rem;
  }

  .tablet\:last\:pb-px:last-child{
    padding-bottom: 1px;
  }

  .tablet\:last\:pb-0\.5:last-child{
    padding-bottom: 0.125rem;
  }

  .tablet\:last\:pb-1\.5:last-child{
    padding-bottom: 0.375rem;
  }

  .tablet\:last\:pb-2\.5:last-child{
    padding-bottom: 0.625rem;
  }

  .tablet\:last\:pb-3\.5:last-child{
    padding-bottom: 0.875rem;
  }

  .tablet\:last\:pl-0:last-child{
    padding-left: 0px;
  }

  .tablet\:last\:pl-1:last-child{
    padding-left: 0.25rem;
  }

  .tablet\:last\:pl-2:last-child{
    padding-left: 0.5rem;
  }

  .tablet\:last\:pl-3:last-child{
    padding-left: 0.75rem;
  }

  .tablet\:last\:pl-4:last-child{
    padding-left: 1rem;
  }

  .tablet\:last\:pl-5:last-child{
    padding-left: 1.25rem;
  }

  .tablet\:last\:pl-6:last-child{
    padding-left: 1.5rem;
  }

  .tablet\:last\:pl-7:last-child{
    padding-left: 1.75rem;
  }

  .tablet\:last\:pl-8:last-child{
    padding-left: 2rem;
  }

  .tablet\:last\:pl-9:last-child{
    padding-left: 2.25rem;
  }

  .tablet\:last\:pl-10:last-child{
    padding-left: 2.5rem;
  }

  .tablet\:last\:pl-11:last-child{
    padding-left: 2.75rem;
  }

  .tablet\:last\:pl-12:last-child{
    padding-left: 3rem;
  }

  .tablet\:last\:pl-14:last-child{
    padding-left: 3.5rem;
  }

  .tablet\:last\:pl-16:last-child{
    padding-left: 4rem;
  }

  .tablet\:last\:pl-20:last-child{
    padding-left: 5rem;
  }

  .tablet\:last\:pl-24:last-child{
    padding-left: 6rem;
  }

  .tablet\:last\:pl-28:last-child{
    padding-left: 7rem;
  }

  .tablet\:last\:pl-32:last-child{
    padding-left: 8rem;
  }

  .tablet\:last\:pl-36:last-child{
    padding-left: 9rem;
  }

  .tablet\:last\:pl-40:last-child{
    padding-left: 10rem;
  }

  .tablet\:last\:pl-44:last-child{
    padding-left: 11rem;
  }

  .tablet\:last\:pl-48:last-child{
    padding-left: 12rem;
  }

  .tablet\:last\:pl-52:last-child{
    padding-left: 13rem;
  }

  .tablet\:last\:pl-56:last-child{
    padding-left: 14rem;
  }

  .tablet\:last\:pl-60:last-child{
    padding-left: 15rem;
  }

  .tablet\:last\:pl-64:last-child{
    padding-left: 16rem;
  }

  .tablet\:last\:pl-72:last-child{
    padding-left: 18rem;
  }

  .tablet\:last\:pl-80:last-child{
    padding-left: 20rem;
  }

  .tablet\:last\:pl-96:last-child{
    padding-left: 24rem;
  }

  .tablet\:last\:pl-px:last-child{
    padding-left: 1px;
  }

  .tablet\:last\:pl-0\.5:last-child{
    padding-left: 0.125rem;
  }

  .tablet\:last\:pl-1\.5:last-child{
    padding-left: 0.375rem;
  }

  .tablet\:last\:pl-2\.5:last-child{
    padding-left: 0.625rem;
  }

  .tablet\:last\:pl-3\.5:last-child{
    padding-left: 0.875rem;
  }

  .tablet\:text-left{
    text-align: left;
  }

  .tablet\:text-center{
    text-align: center;
  }

  .tablet\:text-right{
    text-align: right;
  }

  .tablet\:text-justify{
    text-align: justify;
  }

  .tablet\:align-baseline{
    vertical-align: baseline;
  }

  .tablet\:align-top{
    vertical-align: top;
  }

  .tablet\:align-middle{
    vertical-align: middle;
  }

  .tablet\:align-bottom{
    vertical-align: bottom;
  }

  .tablet\:align-text-top{
    vertical-align: text-top;
  }

  .tablet\:align-text-bottom{
    vertical-align: text-bottom;
  }

  .tablet\:font-klint-bold{
    font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
  }

  .tablet\:font-klint-regular{
    font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
  }

  .tablet\:text-xs{
    font-size: 0.75rem;
    line-height: 1rem;
  }

  .tablet\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .tablet\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .tablet\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .tablet\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .tablet\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .tablet\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .tablet\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .tablet\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }

  .tablet\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }

  .tablet\:text-7xl{
    font-size: 5rem;
  }

  .tablet\:text-8xl{
    font-size: 6rem;
  }

  .tablet\:text-9xl{
    font-size: 7rem;
  }

  .tablet\:font-thin{
    font-weight: 100;
  }

  .tablet\:font-extralight{
    font-weight: 200;
  }

  .tablet\:font-light{
    font-weight: 300;
  }

  .tablet\:font-normal{
    font-weight: 400;
  }

  .tablet\:font-medium{
    font-weight: 500;
  }

  .tablet\:font-semibold{
    font-weight: 600;
  }

  .tablet\:font-bold{
    font-weight: 700;
  }

  .tablet\:font-extrabold{
    font-weight: 800;
  }

  .tablet\:font-black{
    font-weight: 900;
  }

  .tablet\:uppercase{
    text-transform: uppercase;
  }

  .tablet\:lowercase{
    text-transform: lowercase;
  }

  .tablet\:capitalize{
    text-transform: capitalize;
  }

  .tablet\:normal-case{
    text-transform: none;
  }

  .tablet\:italic{
    font-style: italic;
  }

  .tablet\:not-italic{
    font-style: normal;
  }

  .tablet\:ordinal, .tablet\:slashed-zero, .tablet\:lining-nums, .tablet\:oldstyle-nums, .tablet\:proportional-nums, .tablet\:tabular-nums, .tablet\:diagonal-fractions, .tablet\:stacked-fractions{
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/);
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  }

  .tablet\:normal-nums{
    font-variant-numeric: normal;
  }

  .tablet\:ordinal{
    --tw-ordinal: ordinal;
  }

  .tablet\:slashed-zero{
    --tw-slashed-zero: slashed-zero;
  }

  .tablet\:lining-nums{
    --tw-numeric-figure: lining-nums;
  }

  .tablet\:oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums;
  }

  .tablet\:proportional-nums{
    --tw-numeric-spacing: proportional-nums;
  }

  .tablet\:tabular-nums{
    --tw-numeric-spacing: tabular-nums;
  }

  .tablet\:diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions;
  }

  .tablet\:stacked-fractions{
    --tw-numeric-fraction: stacked-fractions;
  }

  .tablet\:leading-3{
    line-height: .75rem;
  }

  .tablet\:leading-4{
    line-height: 1rem;
  }

  .tablet\:leading-5{
    line-height: 1.25rem;
  }

  .tablet\:leading-6{
    line-height: 1.5rem;
  }

  .tablet\:leading-7{
    line-height: 1.75rem;
  }

  .tablet\:leading-8{
    line-height: 2rem;
  }

  .tablet\:leading-9{
    line-height: 2.25rem;
  }

  .tablet\:leading-10{
    line-height: 2.5rem;
  }

  .tablet\:leading-none{
    line-height: 1;
  }

  .tablet\:leading-tight{
    line-height: 1.25;
  }

  .tablet\:leading-snug{
    line-height: 1.375;
  }

  .tablet\:leading-normal{
    line-height: 1.5;
  }

  .tablet\:leading-relaxed{
    line-height: 1.625;
  }

  .tablet\:leading-loose{
    line-height: 2;
  }

  .tablet\:tracking-tighter{
    letter-spacing: -0.05em;
  }

  .tablet\:tracking-tight{
    letter-spacing: -0.025em;
  }

  .tablet\:tracking-normal{
    letter-spacing: 0em;
  }

  .tablet\:tracking-wide{
    letter-spacing: 0.025em;
  }

  .tablet\:tracking-wider{
    letter-spacing: 0.05em;
  }

  .tablet\:tracking-widest{
    letter-spacing: 0.1em;
  }

  .tablet\:text-transparent{
    color: transparent;
  }

  .tablet\:text-current{
    color: currentColor;
  }

  .tablet\:text-black{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:text-white{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .tablet\:text-gray-50{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .tablet\:text-gray-100{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .tablet\:text-gray-200{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .tablet\:text-gray-300{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .tablet\:text-gray-400{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .tablet\:text-gray-500{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .tablet\:text-gray-600{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .tablet\:text-gray-700{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .tablet\:text-gray-800{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .tablet\:text-gray-900{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .tablet\:text-red-50{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .tablet\:text-red-100{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .tablet\:text-red-200{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .tablet\:text-red-300{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .tablet\:text-red-400{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .tablet\:text-red-500{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .tablet\:text-red-600{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .tablet\:text-red-700{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .tablet\:text-red-800{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .tablet\:text-red-900{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .tablet\:text-red-light{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .tablet\:text-red-default{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:text-red-dark{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:text-yellow-50{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .tablet\:text-yellow-100{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .tablet\:text-yellow-200{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .tablet\:text-yellow-300{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .tablet\:text-yellow-400{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .tablet\:text-yellow-500{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .tablet\:text-yellow-600{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .tablet\:text-yellow-700{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .tablet\:text-yellow-800{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .tablet\:text-yellow-900{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .tablet\:text-green-50{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .tablet\:text-green-100{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .tablet\:text-green-200{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .tablet\:text-green-300{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .tablet\:text-green-400{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .tablet\:text-green-500{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .tablet\:text-green-600{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .tablet\:text-green-700{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .tablet\:text-green-800{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .tablet\:text-green-900{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .tablet\:text-green-light{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .tablet\:text-green-default{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .tablet\:text-green-dark{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .tablet\:text-blue-50{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .tablet\:text-blue-100{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .tablet\:text-blue-200{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .tablet\:text-blue-300{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .tablet\:text-blue-400{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .tablet\:text-blue-500{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .tablet\:text-blue-600{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .tablet\:text-blue-700{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .tablet\:text-blue-800{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .tablet\:text-blue-900{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .tablet\:text-indigo-50{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .tablet\:text-indigo-100{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .tablet\:text-indigo-200{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .tablet\:text-indigo-300{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .tablet\:text-indigo-400{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .tablet\:text-indigo-500{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .tablet\:text-indigo-600{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .tablet\:text-indigo-700{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .tablet\:text-indigo-800{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .tablet\:text-indigo-900{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .tablet\:text-purple-50{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .tablet\:text-purple-100{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .tablet\:text-purple-200{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .tablet\:text-purple-300{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .tablet\:text-purple-400{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .tablet\:text-purple-500{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .tablet\:text-purple-600{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .tablet\:text-purple-700{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .tablet\:text-purple-800{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .tablet\:text-purple-900{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .tablet\:text-pink-50{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .tablet\:text-pink-100{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .tablet\:text-pink-200{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .tablet\:text-pink-300{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .tablet\:text-pink-400{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .tablet\:text-pink-500{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .tablet\:text-pink-600{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .tablet\:text-pink-700{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .tablet\:text-pink-800{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .tablet\:text-pink-900{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .tablet\:text-brown-light{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .tablet\:text-brown-semi{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .tablet\:text-brown-default{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .tablet\:text-brown-dark{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .tablet\:text-success-light{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .tablet\:text-success-default{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .tablet\:text-success-dark{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .tablet\:text-error-light{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .tablet\:text-error-default{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .tablet\:text-error-dark{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:text-navigation-dark{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-transparent{
    color: transparent;
  }

  .group:hover .tablet\:group-hover\:text-current{
    color: currentColor;
  }

  .group:hover .tablet\:group-hover\:text-black{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-white{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-gray-50{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-gray-100{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-gray-200{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-gray-300{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-gray-400{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-gray-500{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-gray-600{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-gray-700{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-gray-800{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-gray-900{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-50{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-100{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-200{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-300{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-400{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-500{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-600{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-700{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-800{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-900{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-light{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-default{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-red-dark{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-yellow-50{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-yellow-100{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-yellow-200{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-yellow-300{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-yellow-400{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-yellow-500{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-yellow-600{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-yellow-700{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-yellow-800{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-yellow-900{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-50{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-100{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-200{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-300{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-400{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-500{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-600{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-700{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-800{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-900{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-light{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-default{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-green-dark{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-blue-50{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-blue-100{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-blue-200{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-blue-300{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-blue-400{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-blue-500{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-blue-600{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-blue-700{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-blue-800{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-blue-900{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-indigo-50{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-indigo-100{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-indigo-200{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-indigo-300{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-indigo-400{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-indigo-500{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-indigo-600{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-indigo-700{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-indigo-800{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-indigo-900{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-purple-50{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-purple-100{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-purple-200{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-purple-300{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-purple-400{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-purple-500{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-purple-600{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-purple-700{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-purple-800{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-purple-900{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-pink-50{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-pink-100{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-pink-200{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-pink-300{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-pink-400{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-pink-500{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-pink-600{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-pink-700{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-pink-800{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-pink-900{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-brown-light{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-brown-semi{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-brown-default{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-brown-dark{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-success-light{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-success-default{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-success-dark{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-error-light{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-error-default{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-error-dark{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .group:hover .tablet\:group-hover\:text-navigation-dark{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-transparent:focus-within{
    color: transparent;
  }

  .tablet\:focus-within\:text-current:focus-within{
    color: currentColor;
  }

  .tablet\:focus-within\:text-black:focus-within{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-white:focus-within{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-gray-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-gray-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-gray-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-gray-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-gray-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-gray-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-gray-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-gray-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-gray-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-gray-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-red-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-yellow-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-yellow-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-yellow-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-yellow-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-yellow-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-yellow-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-yellow-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-yellow-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-yellow-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-yellow-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-green-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-blue-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-blue-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-blue-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-blue-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-blue-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-blue-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-blue-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-blue-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-blue-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-blue-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-indigo-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-indigo-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-indigo-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-indigo-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-indigo-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-indigo-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-indigo-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-indigo-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-indigo-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-indigo-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-purple-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-purple-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-purple-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-purple-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-purple-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-purple-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-purple-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-purple-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-purple-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-purple-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-pink-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-pink-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-pink-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-pink-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-pink-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-pink-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-pink-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-pink-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-pink-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-pink-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-brown-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-brown-semi:focus-within{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-brown-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-brown-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-success-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-success-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-success-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-error-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-error-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-error-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:focus-within\:text-navigation-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-transparent:hover{
    color: transparent;
  }

  .tablet\:hover\:text-current:hover{
    color: currentColor;
  }

  .tablet\:hover\:text-black:hover{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-white:hover{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-gray-50:hover{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-gray-100:hover{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-gray-200:hover{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-gray-300:hover{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-gray-400:hover{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-gray-500:hover{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-gray-600:hover{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-gray-700:hover{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-gray-800:hover{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-gray-900:hover{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-50:hover{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-100:hover{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-200:hover{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-300:hover{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-400:hover{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-500:hover{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-600:hover{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-700:hover{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-800:hover{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-900:hover{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-light:hover{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-default:hover{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-red-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-yellow-50:hover{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-yellow-100:hover{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-yellow-200:hover{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-yellow-300:hover{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-yellow-400:hover{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-yellow-500:hover{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-yellow-600:hover{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-yellow-700:hover{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-yellow-800:hover{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-yellow-900:hover{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-50:hover{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-100:hover{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-200:hover{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-300:hover{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-400:hover{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-500:hover{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-600:hover{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-700:hover{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-800:hover{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-900:hover{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-light:hover{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-default:hover{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-green-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-blue-50:hover{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-blue-100:hover{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-blue-200:hover{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-blue-300:hover{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-blue-400:hover{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-blue-500:hover{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-blue-600:hover{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-blue-700:hover{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-blue-800:hover{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-blue-900:hover{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-indigo-50:hover{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-indigo-100:hover{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-indigo-200:hover{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-indigo-300:hover{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-indigo-400:hover{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-indigo-500:hover{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-indigo-600:hover{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-indigo-700:hover{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-indigo-800:hover{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-indigo-900:hover{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-purple-50:hover{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-purple-100:hover{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-purple-200:hover{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-purple-300:hover{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-purple-400:hover{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-purple-500:hover{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-purple-600:hover{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-purple-700:hover{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-purple-800:hover{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-purple-900:hover{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-pink-50:hover{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-pink-100:hover{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-pink-200:hover{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-pink-300:hover{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-pink-400:hover{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-pink-500:hover{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-pink-600:hover{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-pink-700:hover{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-pink-800:hover{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-pink-900:hover{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-brown-light:hover{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-brown-semi:hover{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-brown-default:hover{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-brown-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-success-light:hover{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-success-default:hover{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-success-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-error-light:hover{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-error-default:hover{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-error-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:hover\:text-navigation-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-transparent:focus{
    color: transparent;
  }

  .tablet\:focus\:text-current:focus{
    color: currentColor;
  }

  .tablet\:focus\:text-black:focus{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-white:focus{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-gray-50:focus{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-gray-100:focus{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-gray-200:focus{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-gray-300:focus{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-gray-400:focus{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-gray-500:focus{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-gray-600:focus{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-gray-700:focus{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-gray-800:focus{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-gray-900:focus{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-50:focus{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-100:focus{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-200:focus{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-300:focus{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-400:focus{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-500:focus{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-600:focus{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-700:focus{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-800:focus{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-900:focus{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-light:focus{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-default:focus{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-red-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-yellow-50:focus{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-yellow-100:focus{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-yellow-200:focus{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-yellow-300:focus{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-yellow-400:focus{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-yellow-500:focus{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-yellow-600:focus{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-yellow-700:focus{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-yellow-800:focus{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-yellow-900:focus{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-50:focus{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-100:focus{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-200:focus{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-300:focus{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-400:focus{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-500:focus{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-600:focus{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-700:focus{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-800:focus{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-900:focus{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-light:focus{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-default:focus{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-green-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-blue-50:focus{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-blue-100:focus{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-blue-200:focus{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-blue-300:focus{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-blue-400:focus{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-blue-500:focus{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-blue-600:focus{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-blue-700:focus{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-blue-800:focus{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-blue-900:focus{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-indigo-50:focus{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-indigo-100:focus{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-indigo-200:focus{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-indigo-300:focus{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-indigo-400:focus{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-indigo-500:focus{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-indigo-600:focus{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-indigo-700:focus{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-indigo-800:focus{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-indigo-900:focus{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-purple-50:focus{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-purple-100:focus{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-purple-200:focus{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-purple-300:focus{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-purple-400:focus{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-purple-500:focus{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-purple-600:focus{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-purple-700:focus{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-purple-800:focus{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-purple-900:focus{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-pink-50:focus{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-pink-100:focus{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-pink-200:focus{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-pink-300:focus{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-pink-400:focus{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-pink-500:focus{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-pink-600:focus{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-pink-700:focus{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-pink-800:focus{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-pink-900:focus{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-brown-light:focus{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-brown-semi:focus{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-brown-default:focus{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-brown-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-success-light:focus{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-success-default:focus{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-success-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-error-light:focus{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-error-default:focus{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-error-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .tablet\:focus\:text-navigation-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .tablet\:text-opacity-0{
    --tw-text-opacity: 0;
  }

  .tablet\:text-opacity-5{
    --tw-text-opacity: 0.05;
  }

  .tablet\:text-opacity-10{
    --tw-text-opacity: 0.1;
  }

  .tablet\:text-opacity-20{
    --tw-text-opacity: 0.2;
  }

  .tablet\:text-opacity-25{
    --tw-text-opacity: 0.25;
  }

  .tablet\:text-opacity-30{
    --tw-text-opacity: 0.3;
  }

  .tablet\:text-opacity-40{
    --tw-text-opacity: 0.4;
  }

  .tablet\:text-opacity-50{
    --tw-text-opacity: 0.5;
  }

  .tablet\:text-opacity-60{
    --tw-text-opacity: 0.6;
  }

  .tablet\:text-opacity-70{
    --tw-text-opacity: 0.7;
  }

  .tablet\:text-opacity-75{
    --tw-text-opacity: 0.75;
  }

  .tablet\:text-opacity-80{
    --tw-text-opacity: 0.8;
  }

  .tablet\:text-opacity-90{
    --tw-text-opacity: 0.9;
  }

  .tablet\:text-opacity-95{
    --tw-text-opacity: 0.95;
  }

  .tablet\:text-opacity-100{
    --tw-text-opacity: 1;
  }

  .group:hover .tablet\:group-hover\:text-opacity-0{
    --tw-text-opacity: 0;
  }

  .group:hover .tablet\:group-hover\:text-opacity-5{
    --tw-text-opacity: 0.05;
  }

  .group:hover .tablet\:group-hover\:text-opacity-10{
    --tw-text-opacity: 0.1;
  }

  .group:hover .tablet\:group-hover\:text-opacity-20{
    --tw-text-opacity: 0.2;
  }

  .group:hover .tablet\:group-hover\:text-opacity-25{
    --tw-text-opacity: 0.25;
  }

  .group:hover .tablet\:group-hover\:text-opacity-30{
    --tw-text-opacity: 0.3;
  }

  .group:hover .tablet\:group-hover\:text-opacity-40{
    --tw-text-opacity: 0.4;
  }

  .group:hover .tablet\:group-hover\:text-opacity-50{
    --tw-text-opacity: 0.5;
  }

  .group:hover .tablet\:group-hover\:text-opacity-60{
    --tw-text-opacity: 0.6;
  }

  .group:hover .tablet\:group-hover\:text-opacity-70{
    --tw-text-opacity: 0.7;
  }

  .group:hover .tablet\:group-hover\:text-opacity-75{
    --tw-text-opacity: 0.75;
  }

  .group:hover .tablet\:group-hover\:text-opacity-80{
    --tw-text-opacity: 0.8;
  }

  .group:hover .tablet\:group-hover\:text-opacity-90{
    --tw-text-opacity: 0.9;
  }

  .group:hover .tablet\:group-hover\:text-opacity-95{
    --tw-text-opacity: 0.95;
  }

  .group:hover .tablet\:group-hover\:text-opacity-100{
    --tw-text-opacity: 1;
  }

  .tablet\:focus-within\:text-opacity-0:focus-within{
    --tw-text-opacity: 0;
  }

  .tablet\:focus-within\:text-opacity-5:focus-within{
    --tw-text-opacity: 0.05;
  }

  .tablet\:focus-within\:text-opacity-10:focus-within{
    --tw-text-opacity: 0.1;
  }

  .tablet\:focus-within\:text-opacity-20:focus-within{
    --tw-text-opacity: 0.2;
  }

  .tablet\:focus-within\:text-opacity-25:focus-within{
    --tw-text-opacity: 0.25;
  }

  .tablet\:focus-within\:text-opacity-30:focus-within{
    --tw-text-opacity: 0.3;
  }

  .tablet\:focus-within\:text-opacity-40:focus-within{
    --tw-text-opacity: 0.4;
  }

  .tablet\:focus-within\:text-opacity-50:focus-within{
    --tw-text-opacity: 0.5;
  }

  .tablet\:focus-within\:text-opacity-60:focus-within{
    --tw-text-opacity: 0.6;
  }

  .tablet\:focus-within\:text-opacity-70:focus-within{
    --tw-text-opacity: 0.7;
  }

  .tablet\:focus-within\:text-opacity-75:focus-within{
    --tw-text-opacity: 0.75;
  }

  .tablet\:focus-within\:text-opacity-80:focus-within{
    --tw-text-opacity: 0.8;
  }

  .tablet\:focus-within\:text-opacity-90:focus-within{
    --tw-text-opacity: 0.9;
  }

  .tablet\:focus-within\:text-opacity-95:focus-within{
    --tw-text-opacity: 0.95;
  }

  .tablet\:focus-within\:text-opacity-100:focus-within{
    --tw-text-opacity: 1;
  }

  .tablet\:hover\:text-opacity-0:hover{
    --tw-text-opacity: 0;
  }

  .tablet\:hover\:text-opacity-5:hover{
    --tw-text-opacity: 0.05;
  }

  .tablet\:hover\:text-opacity-10:hover{
    --tw-text-opacity: 0.1;
  }

  .tablet\:hover\:text-opacity-20:hover{
    --tw-text-opacity: 0.2;
  }

  .tablet\:hover\:text-opacity-25:hover{
    --tw-text-opacity: 0.25;
  }

  .tablet\:hover\:text-opacity-30:hover{
    --tw-text-opacity: 0.3;
  }

  .tablet\:hover\:text-opacity-40:hover{
    --tw-text-opacity: 0.4;
  }

  .tablet\:hover\:text-opacity-50:hover{
    --tw-text-opacity: 0.5;
  }

  .tablet\:hover\:text-opacity-60:hover{
    --tw-text-opacity: 0.6;
  }

  .tablet\:hover\:text-opacity-70:hover{
    --tw-text-opacity: 0.7;
  }

  .tablet\:hover\:text-opacity-75:hover{
    --tw-text-opacity: 0.75;
  }

  .tablet\:hover\:text-opacity-80:hover{
    --tw-text-opacity: 0.8;
  }

  .tablet\:hover\:text-opacity-90:hover{
    --tw-text-opacity: 0.9;
  }

  .tablet\:hover\:text-opacity-95:hover{
    --tw-text-opacity: 0.95;
  }

  .tablet\:hover\:text-opacity-100:hover{
    --tw-text-opacity: 1;
  }

  .tablet\:focus\:text-opacity-0:focus{
    --tw-text-opacity: 0;
  }

  .tablet\:focus\:text-opacity-5:focus{
    --tw-text-opacity: 0.05;
  }

  .tablet\:focus\:text-opacity-10:focus{
    --tw-text-opacity: 0.1;
  }

  .tablet\:focus\:text-opacity-20:focus{
    --tw-text-opacity: 0.2;
  }

  .tablet\:focus\:text-opacity-25:focus{
    --tw-text-opacity: 0.25;
  }

  .tablet\:focus\:text-opacity-30:focus{
    --tw-text-opacity: 0.3;
  }

  .tablet\:focus\:text-opacity-40:focus{
    --tw-text-opacity: 0.4;
  }

  .tablet\:focus\:text-opacity-50:focus{
    --tw-text-opacity: 0.5;
  }

  .tablet\:focus\:text-opacity-60:focus{
    --tw-text-opacity: 0.6;
  }

  .tablet\:focus\:text-opacity-70:focus{
    --tw-text-opacity: 0.7;
  }

  .tablet\:focus\:text-opacity-75:focus{
    --tw-text-opacity: 0.75;
  }

  .tablet\:focus\:text-opacity-80:focus{
    --tw-text-opacity: 0.8;
  }

  .tablet\:focus\:text-opacity-90:focus{
    --tw-text-opacity: 0.9;
  }

  .tablet\:focus\:text-opacity-95:focus{
    --tw-text-opacity: 0.95;
  }

  .tablet\:focus\:text-opacity-100:focus{
    --tw-text-opacity: 1;
  }

  .tablet\:underline{
    text-decoration: underline;
  }

  .tablet\:line-through{
    text-decoration: line-through;
  }

  .tablet\:no-underline{
    text-decoration: none;
  }

  .group:hover .tablet\:group-hover\:underline{
    text-decoration: underline;
  }

  .group:hover .tablet\:group-hover\:line-through{
    text-decoration: line-through;
  }

  .group:hover .tablet\:group-hover\:no-underline{
    text-decoration: none;
  }

  .tablet\:focus-within\:underline:focus-within{
    text-decoration: underline;
  }

  .tablet\:focus-within\:line-through:focus-within{
    text-decoration: line-through;
  }

  .tablet\:focus-within\:no-underline:focus-within{
    text-decoration: none;
  }

  .tablet\:hover\:underline:hover{
    text-decoration: underline;
  }

  .tablet\:hover\:line-through:hover{
    text-decoration: line-through;
  }

  .tablet\:hover\:no-underline:hover{
    text-decoration: none;
  }

  .tablet\:focus\:underline:focus{
    text-decoration: underline;
  }

  .tablet\:focus\:line-through:focus{
    text-decoration: line-through;
  }

  .tablet\:focus\:no-underline:focus{
    text-decoration: none;
  }

  .tablet\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .tablet\:subpixel-antialiased{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .tablet\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .tablet\:placeholder-transparent:-ms-input-placeholder{
    color: transparent;
  }

  .tablet\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .tablet\:placeholder-current::-moz-placeholder{
    color: currentColor;
  }

  .tablet\:placeholder-current:-ms-input-placeholder{
    color: currentColor;
  }

  .tablet\:placeholder-current::placeholder{
    color: currentColor;
  }

  .tablet\:placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-black:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-black::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-white:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-white::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-gray-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-red-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-yellow-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-green-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-blue-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-indigo-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-purple-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-pink-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-brown-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-brown-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-brown-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-brown-semi::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-brown-semi:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-brown-semi::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-brown-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-brown-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-brown-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-brown-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-brown-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-brown-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-success-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-success-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-success-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-success-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-success-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-success-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-success-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-success-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-success-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-error-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-error-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-error-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-error-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-error-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-error-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-error-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-error-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-error-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-navigation-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-navigation-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-navigation-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color: transparent;
  }

  .tablet\:focus\:placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent;
  }

  .tablet\:focus\:placeholder-transparent:focus::placeholder{
    color: transparent;
  }

  .tablet\:focus\:placeholder-current:focus::-moz-placeholder{
    color: currentColor;
  }

  .tablet\:focus\:placeholder-current:focus:-ms-input-placeholder{
    color: currentColor;
  }

  .tablet\:focus\:placeholder-current:focus::placeholder{
    color: currentColor;
  }

  .tablet\:focus\:placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-black:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-white:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-gray-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-red-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-yellow-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-green-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-blue-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-indigo-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-purple-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-pink-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-brown-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-brown-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-brown-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-brown-semi:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-brown-semi:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-brown-semi:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-brown-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-brown-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-brown-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-brown-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-brown-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-brown-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-success-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-success-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-success-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-success-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-success-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-success-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-success-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-success-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-success-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-error-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-error-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-error-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-error-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-error-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-error-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-error-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-error-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-error-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-navigation-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-navigation-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:focus\:placeholder-navigation-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .tablet\:placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0;
  }

  .tablet\:placeholder-opacity-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 0;
  }

  .tablet\:placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0;
  }

  .tablet\:placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .tablet\:placeholder-opacity-5:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .tablet\:placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .tablet\:placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .tablet\:placeholder-opacity-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .tablet\:placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .tablet\:placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .tablet\:placeholder-opacity-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .tablet\:placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .tablet\:placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .tablet\:placeholder-opacity-25:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .tablet\:placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .tablet\:placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .tablet\:placeholder-opacity-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .tablet\:placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .tablet\:placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .tablet\:placeholder-opacity-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .tablet\:placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .tablet\:placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .tablet\:placeholder-opacity-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .tablet\:placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .tablet\:placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .tablet\:placeholder-opacity-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .tablet\:placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .tablet\:placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .tablet\:placeholder-opacity-70:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .tablet\:placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .tablet\:placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .tablet\:placeholder-opacity-75:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .tablet\:placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .tablet\:placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .tablet\:placeholder-opacity-80:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .tablet\:placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .tablet\:placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .tablet\:placeholder-opacity-90:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .tablet\:placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .tablet\:placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .tablet\:placeholder-opacity-95:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .tablet\:placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .tablet\:placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
  }

  .tablet\:placeholder-opacity-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
  }

  .tablet\:placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1;
  }

  .tablet\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0;
  }

  .tablet\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0;
  }

  .tablet\:focus\:placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0;
  }

  .tablet\:focus\:placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .tablet\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .tablet\:focus\:placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .tablet\:focus\:placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .tablet\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .tablet\:focus\:placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .tablet\:focus\:placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .tablet\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .tablet\:focus\:placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .tablet\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .tablet\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .tablet\:focus\:placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .tablet\:focus\:placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .tablet\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .tablet\:focus\:placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .tablet\:focus\:placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .tablet\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .tablet\:focus\:placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .tablet\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .tablet\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .tablet\:focus\:placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .tablet\:focus\:placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .tablet\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .tablet\:focus\:placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .tablet\:focus\:placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .tablet\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .tablet\:focus\:placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .tablet\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .tablet\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .tablet\:focus\:placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .tablet\:focus\:placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .tablet\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .tablet\:focus\:placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .tablet\:focus\:placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .tablet\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .tablet\:focus\:placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .tablet\:focus\:placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .tablet\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .tablet\:focus\:placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .tablet\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
  }

  .tablet\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
  }

  .tablet\:focus\:placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
  }

  .tablet\:opacity-0{
    opacity: 0;
  }

  .tablet\:opacity-5{
    opacity: 0.05;
  }

  .tablet\:opacity-10{
    opacity: 0.1;
  }

  .tablet\:opacity-20{
    opacity: 0.2;
  }

  .tablet\:opacity-25{
    opacity: 0.25;
  }

  .tablet\:opacity-30{
    opacity: 0.3;
  }

  .tablet\:opacity-40{
    opacity: 0.4;
  }

  .tablet\:opacity-50{
    opacity: 0.5;
  }

  .tablet\:opacity-60{
    opacity: 0.6;
  }

  .tablet\:opacity-70{
    opacity: 0.7;
  }

  .tablet\:opacity-75{
    opacity: 0.75;
  }

  .tablet\:opacity-80{
    opacity: 0.8;
  }

  .tablet\:opacity-90{
    opacity: 0.9;
  }

  .tablet\:opacity-95{
    opacity: 0.95;
  }

  .tablet\:opacity-100{
    opacity: 1;
  }

  .group:hover .tablet\:group-hover\:opacity-0{
    opacity: 0;
  }

  .group:hover .tablet\:group-hover\:opacity-5{
    opacity: 0.05;
  }

  .group:hover .tablet\:group-hover\:opacity-10{
    opacity: 0.1;
  }

  .group:hover .tablet\:group-hover\:opacity-20{
    opacity: 0.2;
  }

  .group:hover .tablet\:group-hover\:opacity-25{
    opacity: 0.25;
  }

  .group:hover .tablet\:group-hover\:opacity-30{
    opacity: 0.3;
  }

  .group:hover .tablet\:group-hover\:opacity-40{
    opacity: 0.4;
  }

  .group:hover .tablet\:group-hover\:opacity-50{
    opacity: 0.5;
  }

  .group:hover .tablet\:group-hover\:opacity-60{
    opacity: 0.6;
  }

  .group:hover .tablet\:group-hover\:opacity-70{
    opacity: 0.7;
  }

  .group:hover .tablet\:group-hover\:opacity-75{
    opacity: 0.75;
  }

  .group:hover .tablet\:group-hover\:opacity-80{
    opacity: 0.8;
  }

  .group:hover .tablet\:group-hover\:opacity-90{
    opacity: 0.9;
  }

  .group:hover .tablet\:group-hover\:opacity-95{
    opacity: 0.95;
  }

  .group:hover .tablet\:group-hover\:opacity-100{
    opacity: 1;
  }

  .tablet\:focus-within\:opacity-0:focus-within{
    opacity: 0;
  }

  .tablet\:focus-within\:opacity-5:focus-within{
    opacity: 0.05;
  }

  .tablet\:focus-within\:opacity-10:focus-within{
    opacity: 0.1;
  }

  .tablet\:focus-within\:opacity-20:focus-within{
    opacity: 0.2;
  }

  .tablet\:focus-within\:opacity-25:focus-within{
    opacity: 0.25;
  }

  .tablet\:focus-within\:opacity-30:focus-within{
    opacity: 0.3;
  }

  .tablet\:focus-within\:opacity-40:focus-within{
    opacity: 0.4;
  }

  .tablet\:focus-within\:opacity-50:focus-within{
    opacity: 0.5;
  }

  .tablet\:focus-within\:opacity-60:focus-within{
    opacity: 0.6;
  }

  .tablet\:focus-within\:opacity-70:focus-within{
    opacity: 0.7;
  }

  .tablet\:focus-within\:opacity-75:focus-within{
    opacity: 0.75;
  }

  .tablet\:focus-within\:opacity-80:focus-within{
    opacity: 0.8;
  }

  .tablet\:focus-within\:opacity-90:focus-within{
    opacity: 0.9;
  }

  .tablet\:focus-within\:opacity-95:focus-within{
    opacity: 0.95;
  }

  .tablet\:focus-within\:opacity-100:focus-within{
    opacity: 1;
  }

  .tablet\:hover\:opacity-0:hover{
    opacity: 0;
  }

  .tablet\:hover\:opacity-5:hover{
    opacity: 0.05;
  }

  .tablet\:hover\:opacity-10:hover{
    opacity: 0.1;
  }

  .tablet\:hover\:opacity-20:hover{
    opacity: 0.2;
  }

  .tablet\:hover\:opacity-25:hover{
    opacity: 0.25;
  }

  .tablet\:hover\:opacity-30:hover{
    opacity: 0.3;
  }

  .tablet\:hover\:opacity-40:hover{
    opacity: 0.4;
  }

  .tablet\:hover\:opacity-50:hover{
    opacity: 0.5;
  }

  .tablet\:hover\:opacity-60:hover{
    opacity: 0.6;
  }

  .tablet\:hover\:opacity-70:hover{
    opacity: 0.7;
  }

  .tablet\:hover\:opacity-75:hover{
    opacity: 0.75;
  }

  .tablet\:hover\:opacity-80:hover{
    opacity: 0.8;
  }

  .tablet\:hover\:opacity-90:hover{
    opacity: 0.9;
  }

  .tablet\:hover\:opacity-95:hover{
    opacity: 0.95;
  }

  .tablet\:hover\:opacity-100:hover{
    opacity: 1;
  }

  .tablet\:focus\:opacity-0:focus{
    opacity: 0;
  }

  .tablet\:focus\:opacity-5:focus{
    opacity: 0.05;
  }

  .tablet\:focus\:opacity-10:focus{
    opacity: 0.1;
  }

  .tablet\:focus\:opacity-20:focus{
    opacity: 0.2;
  }

  .tablet\:focus\:opacity-25:focus{
    opacity: 0.25;
  }

  .tablet\:focus\:opacity-30:focus{
    opacity: 0.3;
  }

  .tablet\:focus\:opacity-40:focus{
    opacity: 0.4;
  }

  .tablet\:focus\:opacity-50:focus{
    opacity: 0.5;
  }

  .tablet\:focus\:opacity-60:focus{
    opacity: 0.6;
  }

  .tablet\:focus\:opacity-70:focus{
    opacity: 0.7;
  }

  .tablet\:focus\:opacity-75:focus{
    opacity: 0.75;
  }

  .tablet\:focus\:opacity-80:focus{
    opacity: 0.8;
  }

  .tablet\:focus\:opacity-90:focus{
    opacity: 0.9;
  }

  .tablet\:focus\:opacity-95:focus{
    opacity: 0.95;
  }

  .tablet\:focus\:opacity-100:focus{
    opacity: 1;
  }

  .tablet\:bg-blend-normal{
    background-blend-mode: normal;
  }

  .tablet\:bg-blend-multiply{
    background-blend-mode: multiply;
  }

  .tablet\:bg-blend-screen{
    background-blend-mode: screen;
  }

  .tablet\:bg-blend-overlay{
    background-blend-mode: overlay;
  }

  .tablet\:bg-blend-darken{
    background-blend-mode: darken;
  }

  .tablet\:bg-blend-lighten{
    background-blend-mode: lighten;
  }

  .tablet\:bg-blend-color-dodge{
    background-blend-mode: color-dodge;
  }

  .tablet\:bg-blend-color-burn{
    background-blend-mode: color-burn;
  }

  .tablet\:bg-blend-hard-light{
    background-blend-mode: hard-light;
  }

  .tablet\:bg-blend-soft-light{
    background-blend-mode: soft-light;
  }

  .tablet\:bg-blend-difference{
    background-blend-mode: difference;
  }

  .tablet\:bg-blend-exclusion{
    background-blend-mode: exclusion;
  }

  .tablet\:bg-blend-hue{
    background-blend-mode: hue;
  }

  .tablet\:bg-blend-saturation{
    background-blend-mode: saturation;
  }

  .tablet\:bg-blend-color{
    background-blend-mode: color;
  }

  .tablet\:bg-blend-luminosity{
    background-blend-mode: luminosity;
  }

  .tablet\:mix-blend-normal{
    mix-blend-mode: normal;
  }

  .tablet\:mix-blend-multiply{
    mix-blend-mode: multiply;
  }

  .tablet\:mix-blend-screen{
    mix-blend-mode: screen;
  }

  .tablet\:mix-blend-overlay{
    mix-blend-mode: overlay;
  }

  .tablet\:mix-blend-darken{
    mix-blend-mode: darken;
  }

  .tablet\:mix-blend-lighten{
    mix-blend-mode: lighten;
  }

  .tablet\:mix-blend-color-dodge{
    mix-blend-mode: color-dodge;
  }

  .tablet\:mix-blend-color-burn{
    mix-blend-mode: color-burn;
  }

  .tablet\:mix-blend-hard-light{
    mix-blend-mode: hard-light;
  }

  .tablet\:mix-blend-soft-light{
    mix-blend-mode: soft-light;
  }

  .tablet\:mix-blend-difference{
    mix-blend-mode: difference;
  }

  .tablet\:mix-blend-exclusion{
    mix-blend-mode: exclusion;
  }

  .tablet\:mix-blend-hue{
    mix-blend-mode: hue;
  }

  .tablet\:mix-blend-saturation{
    mix-blend-mode: saturation;
  }

  .tablet\:mix-blend-color{
    mix-blend-mode: color;
  }

  .tablet\:mix-blend-luminosity{
    mix-blend-mode: luminosity;
  }

  .tablet\:shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:shadow-none{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .tablet\:group-hover\:shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .tablet\:group-hover\:shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .tablet\:group-hover\:shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .tablet\:group-hover\:shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .tablet\:group-hover\:shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .tablet\:group-hover\:shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .tablet\:group-hover\:shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .tablet\:group-hover\:shadow-none{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus-within\:shadow-sm:focus-within{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus-within\:shadow:focus-within{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus-within\:shadow-md:focus-within{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus-within\:shadow-lg:focus-within{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus-within\:shadow-xl:focus-within{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus-within\:shadow-2xl:focus-within{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus-within\:shadow-inner:focus-within{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus-within\:shadow-none:focus-within{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:hover\:shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:hover\:shadow:hover{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:hover\:shadow-md:hover{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:hover\:shadow-lg:hover{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:hover\:shadow-xl:hover{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:hover\:shadow-2xl:hover{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:hover\:shadow-inner:hover{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:hover\:shadow-none:hover{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus\:shadow-sm:focus{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus\:shadow:focus{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus\:shadow-md:focus{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus\:shadow-lg:focus{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus\:shadow-xl:focus{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus\:shadow-2xl:focus{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus\:shadow-inner:focus{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:focus\:shadow-none:focus{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .tablet\:outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .tablet\:outline-white{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .tablet\:outline-black{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .tablet\:focus-within\:outline-none:focus-within{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .tablet\:focus-within\:outline-white:focus-within{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .tablet\:focus-within\:outline-black:focus-within{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .tablet\:focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .tablet\:focus\:outline-white:focus{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .tablet\:focus\:outline-black:focus{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .tablet\:ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:ring-2{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:ring-4{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:ring-8{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:focus-within\:ring-0:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:focus-within\:ring-1:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:focus-within\:ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:focus-within\:ring-4:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:focus-within\:ring-8:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:focus-within\:ring:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:focus\:ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:focus\:ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:focus\:ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:focus\:ring-4:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:focus\:ring-8:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:focus\:ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .tablet\:ring-inset{
    --tw-ring-inset: inset;
  }

  .tablet\:focus-within\:ring-inset:focus-within{
    --tw-ring-inset: inset;
  }

  .tablet\:focus\:ring-inset:focus{
    --tw-ring-inset: inset;
  }

  .tablet\:ring-transparent{
    --tw-ring-color: transparent;
  }

  .tablet\:ring-current{
    --tw-ring-color: currentColor;
  }

  .tablet\:ring-black{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
  }

  .tablet\:ring-white{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
  }

  .tablet\:ring-gray-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
  }

  .tablet\:ring-gray-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
  }

  .tablet\:ring-gray-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
  }

  .tablet\:ring-gray-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
  }

  .tablet\:ring-gray-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
  }

  .tablet\:ring-gray-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
  }

  .tablet\:ring-gray-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
  }

  .tablet\:ring-gray-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
  }

  .tablet\:ring-gray-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
  }

  .tablet\:ring-gray-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(234, 122, 122, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 0, 0, var(--tw-ring-opacity));
  }

  .tablet\:ring-red-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .tablet\:ring-yellow-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
  }

  .tablet\:ring-yellow-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
  }

  .tablet\:ring-yellow-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
  }

  .tablet\:ring-yellow-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
  }

  .tablet\:ring-yellow-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
  }

  .tablet\:ring-yellow-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
  }

  .tablet\:ring-yellow-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
  }

  .tablet\:ring-yellow-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
  }

  .tablet\:ring-yellow-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
  }

  .tablet\:ring-yellow-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(181, 209, 185, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .tablet\:ring-green-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(28, 37, 30, var(--tw-ring-opacity));
  }

  .tablet\:ring-blue-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
  }

  .tablet\:ring-blue-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
  }

  .tablet\:ring-blue-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
  }

  .tablet\:ring-blue-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
  }

  .tablet\:ring-blue-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
  }

  .tablet\:ring-blue-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
  }

  .tablet\:ring-blue-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
  }

  .tablet\:ring-blue-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
  }

  .tablet\:ring-blue-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
  }

  .tablet\:ring-blue-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
  }

  .tablet\:ring-indigo-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
  }

  .tablet\:ring-indigo-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
  }

  .tablet\:ring-indigo-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
  }

  .tablet\:ring-indigo-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
  }

  .tablet\:ring-indigo-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
  }

  .tablet\:ring-indigo-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
  }

  .tablet\:ring-indigo-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
  }

  .tablet\:ring-indigo-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
  }

  .tablet\:ring-indigo-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
  }

  .tablet\:ring-indigo-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
  }

  .tablet\:ring-purple-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
  }

  .tablet\:ring-purple-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
  }

  .tablet\:ring-purple-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
  }

  .tablet\:ring-purple-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
  }

  .tablet\:ring-purple-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
  }

  .tablet\:ring-purple-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
  }

  .tablet\:ring-purple-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
  }

  .tablet\:ring-purple-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
  }

  .tablet\:ring-purple-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
  }

  .tablet\:ring-purple-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
  }

  .tablet\:ring-pink-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
  }

  .tablet\:ring-pink-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
  }

  .tablet\:ring-pink-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
  }

  .tablet\:ring-pink-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
  }

  .tablet\:ring-pink-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
  }

  .tablet\:ring-pink-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
  }

  .tablet\:ring-pink-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
  }

  .tablet\:ring-pink-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
  }

  .tablet\:ring-pink-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
  }

  .tablet\:ring-pink-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
  }

  .tablet\:ring-brown-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(240, 233, 222, var(--tw-ring-opacity));
  }

  .tablet\:ring-brown-semi{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(222, 214, 202, var(--tw-ring-opacity));
  }

  .tablet\:ring-brown-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(123, 108, 92, var(--tw-ring-opacity));
  }

  .tablet\:ring-brown-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(61, 39, 6, var(--tw-ring-opacity));
  }

  .tablet\:ring-success-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(145, 224, 156, var(--tw-ring-opacity));
  }

  .tablet\:ring-success-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(45, 153, 60, var(--tw-ring-opacity));
  }

  .tablet\:ring-success-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .tablet\:ring-error-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 134, 134, var(--tw-ring-opacity));
  }

  .tablet\:ring-error-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(203, 7, 7, var(--tw-ring-opacity));
  }

  .tablet\:ring-error-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .tablet\:ring-navigation-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 205, 0, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-transparent:focus-within{
    --tw-ring-color: transparent;
  }

  .tablet\:focus-within\:ring-current:focus-within{
    --tw-ring-color: currentColor;
  }

  .tablet\:focus-within\:ring-black:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-white:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-gray-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-gray-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-gray-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-gray-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-gray-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-gray-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-gray-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-gray-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-gray-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-gray-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(234, 122, 122, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 0, 0, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-red-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-yellow-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-yellow-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-yellow-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-yellow-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-yellow-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-yellow-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-yellow-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-yellow-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-yellow-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-yellow-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(181, 209, 185, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-green-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(28, 37, 30, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-blue-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-blue-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-blue-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-blue-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-blue-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-blue-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-blue-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-blue-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-blue-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-blue-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-indigo-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-indigo-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-indigo-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-indigo-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-indigo-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-indigo-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-indigo-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-indigo-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-indigo-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-indigo-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-purple-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-purple-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-purple-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-purple-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-purple-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-purple-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-purple-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-purple-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-purple-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-purple-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-pink-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-pink-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-pink-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-pink-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-pink-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-pink-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-pink-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-pink-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-pink-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-pink-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-brown-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(240, 233, 222, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-brown-semi:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(222, 214, 202, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-brown-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(123, 108, 92, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-brown-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(61, 39, 6, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-success-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(145, 224, 156, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-success-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(45, 153, 60, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-success-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-error-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 134, 134, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-error-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(203, 7, 7, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-error-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .tablet\:focus-within\:ring-navigation-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 205, 0, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-transparent:focus{
    --tw-ring-color: transparent;
  }

  .tablet\:focus\:ring-current:focus{
    --tw-ring-color: currentColor;
  }

  .tablet\:focus\:ring-black:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-white:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-gray-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-gray-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-gray-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-gray-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-gray-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-gray-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-gray-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-gray-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-gray-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-gray-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(234, 122, 122, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 0, 0, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-red-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-yellow-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-yellow-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-yellow-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-yellow-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-yellow-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-yellow-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-yellow-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-yellow-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-yellow-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-yellow-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(181, 209, 185, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-green-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(28, 37, 30, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-blue-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-blue-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-blue-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-blue-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-blue-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-blue-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-blue-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-blue-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-blue-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-blue-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-indigo-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-indigo-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-indigo-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-indigo-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-indigo-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-indigo-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-indigo-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-indigo-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-indigo-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-indigo-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-purple-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-purple-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-purple-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-purple-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-purple-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-purple-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-purple-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-purple-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-purple-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-purple-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-pink-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-pink-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-pink-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-pink-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-pink-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-pink-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-pink-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-pink-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-pink-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-pink-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-brown-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(240, 233, 222, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-brown-semi:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(222, 214, 202, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-brown-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(123, 108, 92, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-brown-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(61, 39, 6, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-success-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(145, 224, 156, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-success-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(45, 153, 60, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-success-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-error-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 134, 134, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-error-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(203, 7, 7, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-error-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .tablet\:focus\:ring-navigation-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 205, 0, var(--tw-ring-opacity));
  }

  .tablet\:ring-opacity-0{
    --tw-ring-opacity: 0;
  }

  .tablet\:ring-opacity-5{
    --tw-ring-opacity: 0.05;
  }

  .tablet\:ring-opacity-10{
    --tw-ring-opacity: 0.1;
  }

  .tablet\:ring-opacity-20{
    --tw-ring-opacity: 0.2;
  }

  .tablet\:ring-opacity-25{
    --tw-ring-opacity: 0.25;
  }

  .tablet\:ring-opacity-30{
    --tw-ring-opacity: 0.3;
  }

  .tablet\:ring-opacity-40{
    --tw-ring-opacity: 0.4;
  }

  .tablet\:ring-opacity-50{
    --tw-ring-opacity: 0.5;
  }

  .tablet\:ring-opacity-60{
    --tw-ring-opacity: 0.6;
  }

  .tablet\:ring-opacity-70{
    --tw-ring-opacity: 0.7;
  }

  .tablet\:ring-opacity-75{
    --tw-ring-opacity: 0.75;
  }

  .tablet\:ring-opacity-80{
    --tw-ring-opacity: 0.8;
  }

  .tablet\:ring-opacity-90{
    --tw-ring-opacity: 0.9;
  }

  .tablet\:ring-opacity-95{
    --tw-ring-opacity: 0.95;
  }

  .tablet\:ring-opacity-100{
    --tw-ring-opacity: 1;
  }

  .tablet\:focus-within\:ring-opacity-0:focus-within{
    --tw-ring-opacity: 0;
  }

  .tablet\:focus-within\:ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05;
  }

  .tablet\:focus-within\:ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1;
  }

  .tablet\:focus-within\:ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2;
  }

  .tablet\:focus-within\:ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25;
  }

  .tablet\:focus-within\:ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3;
  }

  .tablet\:focus-within\:ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4;
  }

  .tablet\:focus-within\:ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5;
  }

  .tablet\:focus-within\:ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6;
  }

  .tablet\:focus-within\:ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7;
  }

  .tablet\:focus-within\:ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75;
  }

  .tablet\:focus-within\:ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8;
  }

  .tablet\:focus-within\:ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9;
  }

  .tablet\:focus-within\:ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95;
  }

  .tablet\:focus-within\:ring-opacity-100:focus-within{
    --tw-ring-opacity: 1;
  }

  .tablet\:focus\:ring-opacity-0:focus{
    --tw-ring-opacity: 0;
  }

  .tablet\:focus\:ring-opacity-5:focus{
    --tw-ring-opacity: 0.05;
  }

  .tablet\:focus\:ring-opacity-10:focus{
    --tw-ring-opacity: 0.1;
  }

  .tablet\:focus\:ring-opacity-20:focus{
    --tw-ring-opacity: 0.2;
  }

  .tablet\:focus\:ring-opacity-25:focus{
    --tw-ring-opacity: 0.25;
  }

  .tablet\:focus\:ring-opacity-30:focus{
    --tw-ring-opacity: 0.3;
  }

  .tablet\:focus\:ring-opacity-40:focus{
    --tw-ring-opacity: 0.4;
  }

  .tablet\:focus\:ring-opacity-50:focus{
    --tw-ring-opacity: 0.5;
  }

  .tablet\:focus\:ring-opacity-60:focus{
    --tw-ring-opacity: 0.6;
  }

  .tablet\:focus\:ring-opacity-70:focus{
    --tw-ring-opacity: 0.7;
  }

  .tablet\:focus\:ring-opacity-75:focus{
    --tw-ring-opacity: 0.75;
  }

  .tablet\:focus\:ring-opacity-80:focus{
    --tw-ring-opacity: 0.8;
  }

  .tablet\:focus\:ring-opacity-90:focus{
    --tw-ring-opacity: 0.9;
  }

  .tablet\:focus\:ring-opacity-95:focus{
    --tw-ring-opacity: 0.95;
  }

  .tablet\:focus\:ring-opacity-100:focus{
    --tw-ring-opacity: 1;
  }

  .tablet\:ring-offset-0{
    --tw-ring-offset-width: 0px;
  }

  .tablet\:ring-offset-1{
    --tw-ring-offset-width: 1px;
  }

  .tablet\:ring-offset-2{
    --tw-ring-offset-width: 2px;
  }

  .tablet\:ring-offset-4{
    --tw-ring-offset-width: 4px;
  }

  .tablet\:ring-offset-8{
    --tw-ring-offset-width: 8px;
  }

  .tablet\:focus-within\:ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px;
  }

  .tablet\:focus-within\:ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px;
  }

  .tablet\:focus-within\:ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px;
  }

  .tablet\:focus-within\:ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px;
  }

  .tablet\:focus-within\:ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px;
  }

  .tablet\:focus\:ring-offset-0:focus{
    --tw-ring-offset-width: 0px;
  }

  .tablet\:focus\:ring-offset-1:focus{
    --tw-ring-offset-width: 1px;
  }

  .tablet\:focus\:ring-offset-2:focus{
    --tw-ring-offset-width: 2px;
  }

  .tablet\:focus\:ring-offset-4:focus{
    --tw-ring-offset-width: 4px;
  }

  .tablet\:focus\:ring-offset-8:focus{
    --tw-ring-offset-width: 8px;
  }

  .tablet\:ring-offset-transparent{
    --tw-ring-offset-color: transparent;
  }

  .tablet\:ring-offset-current{
    --tw-ring-offset-color: currentColor;
  }

  .tablet\:ring-offset-black{
    --tw-ring-offset-color: #000;
  }

  .tablet\:ring-offset-white{
    --tw-ring-offset-color: #fff;
  }

  .tablet\:ring-offset-gray-50{
    --tw-ring-offset-color: #f9fafb;
  }

  .tablet\:ring-offset-gray-100{
    --tw-ring-offset-color: #f3f4f6;
  }

  .tablet\:ring-offset-gray-200{
    --tw-ring-offset-color: #e5e7eb;
  }

  .tablet\:ring-offset-gray-300{
    --tw-ring-offset-color: #d1d5db;
  }

  .tablet\:ring-offset-gray-400{
    --tw-ring-offset-color: #9ca3af;
  }

  .tablet\:ring-offset-gray-500{
    --tw-ring-offset-color: #6b7280;
  }

  .tablet\:ring-offset-gray-600{
    --tw-ring-offset-color: #4b5563;
  }

  .tablet\:ring-offset-gray-700{
    --tw-ring-offset-color: #374151;
  }

  .tablet\:ring-offset-gray-800{
    --tw-ring-offset-color: #1f2937;
  }

  .tablet\:ring-offset-gray-900{
    --tw-ring-offset-color: #111827;
  }

  .tablet\:ring-offset-red-50{
    --tw-ring-offset-color: #fef2f2;
  }

  .tablet\:ring-offset-red-100{
    --tw-ring-offset-color: #fee2e2;
  }

  .tablet\:ring-offset-red-200{
    --tw-ring-offset-color: #fecaca;
  }

  .tablet\:ring-offset-red-300{
    --tw-ring-offset-color: #fca5a5;
  }

  .tablet\:ring-offset-red-400{
    --tw-ring-offset-color: #f87171;
  }

  .tablet\:ring-offset-red-500{
    --tw-ring-offset-color: #ef4444;
  }

  .tablet\:ring-offset-red-600{
    --tw-ring-offset-color: #dc2626;
  }

  .tablet\:ring-offset-red-700{
    --tw-ring-offset-color: #b91c1c;
  }

  .tablet\:ring-offset-red-800{
    --tw-ring-offset-color: #991b1b;
  }

  .tablet\:ring-offset-red-900{
    --tw-ring-offset-color: #7f1d1d;
  }

  .tablet\:ring-offset-red-light{
    --tw-ring-offset-color: #EA7A7A;
  }

  .tablet\:ring-offset-red-default{
    --tw-ring-offset-color: #B90000;
  }

  .tablet\:ring-offset-red-dark{
    --tw-ring-offset-color: #580000;
  }

  .tablet\:ring-offset-yellow-50{
    --tw-ring-offset-color: #fffbeb;
  }

  .tablet\:ring-offset-yellow-100{
    --tw-ring-offset-color: #fef3c7;
  }

  .tablet\:ring-offset-yellow-200{
    --tw-ring-offset-color: #fde68a;
  }

  .tablet\:ring-offset-yellow-300{
    --tw-ring-offset-color: #fcd34d;
  }

  .tablet\:ring-offset-yellow-400{
    --tw-ring-offset-color: #fbbf24;
  }

  .tablet\:ring-offset-yellow-500{
    --tw-ring-offset-color: #f59e0b;
  }

  .tablet\:ring-offset-yellow-600{
    --tw-ring-offset-color: #d97706;
  }

  .tablet\:ring-offset-yellow-700{
    --tw-ring-offset-color: #b45309;
  }

  .tablet\:ring-offset-yellow-800{
    --tw-ring-offset-color: #92400e;
  }

  .tablet\:ring-offset-yellow-900{
    --tw-ring-offset-color: #78350f;
  }

  .tablet\:ring-offset-green-50{
    --tw-ring-offset-color: #ecfdf5;
  }

  .tablet\:ring-offset-green-100{
    --tw-ring-offset-color: #d1fae5;
  }

  .tablet\:ring-offset-green-200{
    --tw-ring-offset-color: #a7f3d0;
  }

  .tablet\:ring-offset-green-300{
    --tw-ring-offset-color: #6ee7b7;
  }

  .tablet\:ring-offset-green-400{
    --tw-ring-offset-color: #34d399;
  }

  .tablet\:ring-offset-green-500{
    --tw-ring-offset-color: #10b981;
  }

  .tablet\:ring-offset-green-600{
    --tw-ring-offset-color: #059669;
  }

  .tablet\:ring-offset-green-700{
    --tw-ring-offset-color: #047857;
  }

  .tablet\:ring-offset-green-800{
    --tw-ring-offset-color: #065f46;
  }

  .tablet\:ring-offset-green-900{
    --tw-ring-offset-color: #064e3b;
  }

  .tablet\:ring-offset-green-light{
    --tw-ring-offset-color: #B5D1B9;
  }

  .tablet\:ring-offset-green-default{
    --tw-ring-offset-color: #263B29;
  }

  .tablet\:ring-offset-green-dark{
    --tw-ring-offset-color: #1C251E;
  }

  .tablet\:ring-offset-blue-50{
    --tw-ring-offset-color: #eff6ff;
  }

  .tablet\:ring-offset-blue-100{
    --tw-ring-offset-color: #dbeafe;
  }

  .tablet\:ring-offset-blue-200{
    --tw-ring-offset-color: #bfdbfe;
  }

  .tablet\:ring-offset-blue-300{
    --tw-ring-offset-color: #93c5fd;
  }

  .tablet\:ring-offset-blue-400{
    --tw-ring-offset-color: #60a5fa;
  }

  .tablet\:ring-offset-blue-500{
    --tw-ring-offset-color: #3b82f6;
  }

  .tablet\:ring-offset-blue-600{
    --tw-ring-offset-color: #2563eb;
  }

  .tablet\:ring-offset-blue-700{
    --tw-ring-offset-color: #1d4ed8;
  }

  .tablet\:ring-offset-blue-800{
    --tw-ring-offset-color: #1e40af;
  }

  .tablet\:ring-offset-blue-900{
    --tw-ring-offset-color: #1e3a8a;
  }

  .tablet\:ring-offset-indigo-50{
    --tw-ring-offset-color: #eef2ff;
  }

  .tablet\:ring-offset-indigo-100{
    --tw-ring-offset-color: #e0e7ff;
  }

  .tablet\:ring-offset-indigo-200{
    --tw-ring-offset-color: #c7d2fe;
  }

  .tablet\:ring-offset-indigo-300{
    --tw-ring-offset-color: #a5b4fc;
  }

  .tablet\:ring-offset-indigo-400{
    --tw-ring-offset-color: #818cf8;
  }

  .tablet\:ring-offset-indigo-500{
    --tw-ring-offset-color: #6366f1;
  }

  .tablet\:ring-offset-indigo-600{
    --tw-ring-offset-color: #4f46e5;
  }

  .tablet\:ring-offset-indigo-700{
    --tw-ring-offset-color: #4338ca;
  }

  .tablet\:ring-offset-indigo-800{
    --tw-ring-offset-color: #3730a3;
  }

  .tablet\:ring-offset-indigo-900{
    --tw-ring-offset-color: #312e81;
  }

  .tablet\:ring-offset-purple-50{
    --tw-ring-offset-color: #f5f3ff;
  }

  .tablet\:ring-offset-purple-100{
    --tw-ring-offset-color: #ede9fe;
  }

  .tablet\:ring-offset-purple-200{
    --tw-ring-offset-color: #ddd6fe;
  }

  .tablet\:ring-offset-purple-300{
    --tw-ring-offset-color: #c4b5fd;
  }

  .tablet\:ring-offset-purple-400{
    --tw-ring-offset-color: #a78bfa;
  }

  .tablet\:ring-offset-purple-500{
    --tw-ring-offset-color: #8b5cf6;
  }

  .tablet\:ring-offset-purple-600{
    --tw-ring-offset-color: #7c3aed;
  }

  .tablet\:ring-offset-purple-700{
    --tw-ring-offset-color: #6d28d9;
  }

  .tablet\:ring-offset-purple-800{
    --tw-ring-offset-color: #5b21b6;
  }

  .tablet\:ring-offset-purple-900{
    --tw-ring-offset-color: #4c1d95;
  }

  .tablet\:ring-offset-pink-50{
    --tw-ring-offset-color: #fdf2f8;
  }

  .tablet\:ring-offset-pink-100{
    --tw-ring-offset-color: #fce7f3;
  }

  .tablet\:ring-offset-pink-200{
    --tw-ring-offset-color: #fbcfe8;
  }

  .tablet\:ring-offset-pink-300{
    --tw-ring-offset-color: #f9a8d4;
  }

  .tablet\:ring-offset-pink-400{
    --tw-ring-offset-color: #f472b6;
  }

  .tablet\:ring-offset-pink-500{
    --tw-ring-offset-color: #ec4899;
  }

  .tablet\:ring-offset-pink-600{
    --tw-ring-offset-color: #db2777;
  }

  .tablet\:ring-offset-pink-700{
    --tw-ring-offset-color: #be185d;
  }

  .tablet\:ring-offset-pink-800{
    --tw-ring-offset-color: #9d174d;
  }

  .tablet\:ring-offset-pink-900{
    --tw-ring-offset-color: #831843;
  }

  .tablet\:ring-offset-brown-light{
    --tw-ring-offset-color: #f0e9de;
  }

  .tablet\:ring-offset-brown-semi{
    --tw-ring-offset-color: #ded6ca;
  }

  .tablet\:ring-offset-brown-default{
    --tw-ring-offset-color: #7b6c5c;
  }

  .tablet\:ring-offset-brown-dark{
    --tw-ring-offset-color: #3d2706;
  }

  .tablet\:ring-offset-success-light{
    --tw-ring-offset-color: #91E09C;
  }

  .tablet\:ring-offset-success-default{
    --tw-ring-offset-color: #2D993C;
  }

  .tablet\:ring-offset-success-dark{
    --tw-ring-offset-color: #263B29;
  }

  .tablet\:ring-offset-error-light{
    --tw-ring-offset-color: #F98686;
  }

  .tablet\:ring-offset-error-default{
    --tw-ring-offset-color: #CB0707;
  }

  .tablet\:ring-offset-error-dark{
    --tw-ring-offset-color: #580000;
  }

  .tablet\:ring-offset-navigation-dark{
    --tw-ring-offset-color: #ffcd00;
  }

  .tablet\:focus-within\:ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent;
  }

  .tablet\:focus-within\:ring-offset-current:focus-within{
    --tw-ring-offset-color: currentColor;
  }

  .tablet\:focus-within\:ring-offset-black:focus-within{
    --tw-ring-offset-color: #000;
  }

  .tablet\:focus-within\:ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff;
  }

  .tablet\:focus-within\:ring-offset-gray-50:focus-within{
    --tw-ring-offset-color: #f9fafb;
  }

  .tablet\:focus-within\:ring-offset-gray-100:focus-within{
    --tw-ring-offset-color: #f3f4f6;
  }

  .tablet\:focus-within\:ring-offset-gray-200:focus-within{
    --tw-ring-offset-color: #e5e7eb;
  }

  .tablet\:focus-within\:ring-offset-gray-300:focus-within{
    --tw-ring-offset-color: #d1d5db;
  }

  .tablet\:focus-within\:ring-offset-gray-400:focus-within{
    --tw-ring-offset-color: #9ca3af;
  }

  .tablet\:focus-within\:ring-offset-gray-500:focus-within{
    --tw-ring-offset-color: #6b7280;
  }

  .tablet\:focus-within\:ring-offset-gray-600:focus-within{
    --tw-ring-offset-color: #4b5563;
  }

  .tablet\:focus-within\:ring-offset-gray-700:focus-within{
    --tw-ring-offset-color: #374151;
  }

  .tablet\:focus-within\:ring-offset-gray-800:focus-within{
    --tw-ring-offset-color: #1f2937;
  }

  .tablet\:focus-within\:ring-offset-gray-900:focus-within{
    --tw-ring-offset-color: #111827;
  }

  .tablet\:focus-within\:ring-offset-red-50:focus-within{
    --tw-ring-offset-color: #fef2f2;
  }

  .tablet\:focus-within\:ring-offset-red-100:focus-within{
    --tw-ring-offset-color: #fee2e2;
  }

  .tablet\:focus-within\:ring-offset-red-200:focus-within{
    --tw-ring-offset-color: #fecaca;
  }

  .tablet\:focus-within\:ring-offset-red-300:focus-within{
    --tw-ring-offset-color: #fca5a5;
  }

  .tablet\:focus-within\:ring-offset-red-400:focus-within{
    --tw-ring-offset-color: #f87171;
  }

  .tablet\:focus-within\:ring-offset-red-500:focus-within{
    --tw-ring-offset-color: #ef4444;
  }

  .tablet\:focus-within\:ring-offset-red-600:focus-within{
    --tw-ring-offset-color: #dc2626;
  }

  .tablet\:focus-within\:ring-offset-red-700:focus-within{
    --tw-ring-offset-color: #b91c1c;
  }

  .tablet\:focus-within\:ring-offset-red-800:focus-within{
    --tw-ring-offset-color: #991b1b;
  }

  .tablet\:focus-within\:ring-offset-red-900:focus-within{
    --tw-ring-offset-color: #7f1d1d;
  }

  .tablet\:focus-within\:ring-offset-red-light:focus-within{
    --tw-ring-offset-color: #EA7A7A;
  }

  .tablet\:focus-within\:ring-offset-red-default:focus-within{
    --tw-ring-offset-color: #B90000;
  }

  .tablet\:focus-within\:ring-offset-red-dark:focus-within{
    --tw-ring-offset-color: #580000;
  }

  .tablet\:focus-within\:ring-offset-yellow-50:focus-within{
    --tw-ring-offset-color: #fffbeb;
  }

  .tablet\:focus-within\:ring-offset-yellow-100:focus-within{
    --tw-ring-offset-color: #fef3c7;
  }

  .tablet\:focus-within\:ring-offset-yellow-200:focus-within{
    --tw-ring-offset-color: #fde68a;
  }

  .tablet\:focus-within\:ring-offset-yellow-300:focus-within{
    --tw-ring-offset-color: #fcd34d;
  }

  .tablet\:focus-within\:ring-offset-yellow-400:focus-within{
    --tw-ring-offset-color: #fbbf24;
  }

  .tablet\:focus-within\:ring-offset-yellow-500:focus-within{
    --tw-ring-offset-color: #f59e0b;
  }

  .tablet\:focus-within\:ring-offset-yellow-600:focus-within{
    --tw-ring-offset-color: #d97706;
  }

  .tablet\:focus-within\:ring-offset-yellow-700:focus-within{
    --tw-ring-offset-color: #b45309;
  }

  .tablet\:focus-within\:ring-offset-yellow-800:focus-within{
    --tw-ring-offset-color: #92400e;
  }

  .tablet\:focus-within\:ring-offset-yellow-900:focus-within{
    --tw-ring-offset-color: #78350f;
  }

  .tablet\:focus-within\:ring-offset-green-50:focus-within{
    --tw-ring-offset-color: #ecfdf5;
  }

  .tablet\:focus-within\:ring-offset-green-100:focus-within{
    --tw-ring-offset-color: #d1fae5;
  }

  .tablet\:focus-within\:ring-offset-green-200:focus-within{
    --tw-ring-offset-color: #a7f3d0;
  }

  .tablet\:focus-within\:ring-offset-green-300:focus-within{
    --tw-ring-offset-color: #6ee7b7;
  }

  .tablet\:focus-within\:ring-offset-green-400:focus-within{
    --tw-ring-offset-color: #34d399;
  }

  .tablet\:focus-within\:ring-offset-green-500:focus-within{
    --tw-ring-offset-color: #10b981;
  }

  .tablet\:focus-within\:ring-offset-green-600:focus-within{
    --tw-ring-offset-color: #059669;
  }

  .tablet\:focus-within\:ring-offset-green-700:focus-within{
    --tw-ring-offset-color: #047857;
  }

  .tablet\:focus-within\:ring-offset-green-800:focus-within{
    --tw-ring-offset-color: #065f46;
  }

  .tablet\:focus-within\:ring-offset-green-900:focus-within{
    --tw-ring-offset-color: #064e3b;
  }

  .tablet\:focus-within\:ring-offset-green-light:focus-within{
    --tw-ring-offset-color: #B5D1B9;
  }

  .tablet\:focus-within\:ring-offset-green-default:focus-within{
    --tw-ring-offset-color: #263B29;
  }

  .tablet\:focus-within\:ring-offset-green-dark:focus-within{
    --tw-ring-offset-color: #1C251E;
  }

  .tablet\:focus-within\:ring-offset-blue-50:focus-within{
    --tw-ring-offset-color: #eff6ff;
  }

  .tablet\:focus-within\:ring-offset-blue-100:focus-within{
    --tw-ring-offset-color: #dbeafe;
  }

  .tablet\:focus-within\:ring-offset-blue-200:focus-within{
    --tw-ring-offset-color: #bfdbfe;
  }

  .tablet\:focus-within\:ring-offset-blue-300:focus-within{
    --tw-ring-offset-color: #93c5fd;
  }

  .tablet\:focus-within\:ring-offset-blue-400:focus-within{
    --tw-ring-offset-color: #60a5fa;
  }

  .tablet\:focus-within\:ring-offset-blue-500:focus-within{
    --tw-ring-offset-color: #3b82f6;
  }

  .tablet\:focus-within\:ring-offset-blue-600:focus-within{
    --tw-ring-offset-color: #2563eb;
  }

  .tablet\:focus-within\:ring-offset-blue-700:focus-within{
    --tw-ring-offset-color: #1d4ed8;
  }

  .tablet\:focus-within\:ring-offset-blue-800:focus-within{
    --tw-ring-offset-color: #1e40af;
  }

  .tablet\:focus-within\:ring-offset-blue-900:focus-within{
    --tw-ring-offset-color: #1e3a8a;
  }

  .tablet\:focus-within\:ring-offset-indigo-50:focus-within{
    --tw-ring-offset-color: #eef2ff;
  }

  .tablet\:focus-within\:ring-offset-indigo-100:focus-within{
    --tw-ring-offset-color: #e0e7ff;
  }

  .tablet\:focus-within\:ring-offset-indigo-200:focus-within{
    --tw-ring-offset-color: #c7d2fe;
  }

  .tablet\:focus-within\:ring-offset-indigo-300:focus-within{
    --tw-ring-offset-color: #a5b4fc;
  }

  .tablet\:focus-within\:ring-offset-indigo-400:focus-within{
    --tw-ring-offset-color: #818cf8;
  }

  .tablet\:focus-within\:ring-offset-indigo-500:focus-within{
    --tw-ring-offset-color: #6366f1;
  }

  .tablet\:focus-within\:ring-offset-indigo-600:focus-within{
    --tw-ring-offset-color: #4f46e5;
  }

  .tablet\:focus-within\:ring-offset-indigo-700:focus-within{
    --tw-ring-offset-color: #4338ca;
  }

  .tablet\:focus-within\:ring-offset-indigo-800:focus-within{
    --tw-ring-offset-color: #3730a3;
  }

  .tablet\:focus-within\:ring-offset-indigo-900:focus-within{
    --tw-ring-offset-color: #312e81;
  }

  .tablet\:focus-within\:ring-offset-purple-50:focus-within{
    --tw-ring-offset-color: #f5f3ff;
  }

  .tablet\:focus-within\:ring-offset-purple-100:focus-within{
    --tw-ring-offset-color: #ede9fe;
  }

  .tablet\:focus-within\:ring-offset-purple-200:focus-within{
    --tw-ring-offset-color: #ddd6fe;
  }

  .tablet\:focus-within\:ring-offset-purple-300:focus-within{
    --tw-ring-offset-color: #c4b5fd;
  }

  .tablet\:focus-within\:ring-offset-purple-400:focus-within{
    --tw-ring-offset-color: #a78bfa;
  }

  .tablet\:focus-within\:ring-offset-purple-500:focus-within{
    --tw-ring-offset-color: #8b5cf6;
  }

  .tablet\:focus-within\:ring-offset-purple-600:focus-within{
    --tw-ring-offset-color: #7c3aed;
  }

  .tablet\:focus-within\:ring-offset-purple-700:focus-within{
    --tw-ring-offset-color: #6d28d9;
  }

  .tablet\:focus-within\:ring-offset-purple-800:focus-within{
    --tw-ring-offset-color: #5b21b6;
  }

  .tablet\:focus-within\:ring-offset-purple-900:focus-within{
    --tw-ring-offset-color: #4c1d95;
  }

  .tablet\:focus-within\:ring-offset-pink-50:focus-within{
    --tw-ring-offset-color: #fdf2f8;
  }

  .tablet\:focus-within\:ring-offset-pink-100:focus-within{
    --tw-ring-offset-color: #fce7f3;
  }

  .tablet\:focus-within\:ring-offset-pink-200:focus-within{
    --tw-ring-offset-color: #fbcfe8;
  }

  .tablet\:focus-within\:ring-offset-pink-300:focus-within{
    --tw-ring-offset-color: #f9a8d4;
  }

  .tablet\:focus-within\:ring-offset-pink-400:focus-within{
    --tw-ring-offset-color: #f472b6;
  }

  .tablet\:focus-within\:ring-offset-pink-500:focus-within{
    --tw-ring-offset-color: #ec4899;
  }

  .tablet\:focus-within\:ring-offset-pink-600:focus-within{
    --tw-ring-offset-color: #db2777;
  }

  .tablet\:focus-within\:ring-offset-pink-700:focus-within{
    --tw-ring-offset-color: #be185d;
  }

  .tablet\:focus-within\:ring-offset-pink-800:focus-within{
    --tw-ring-offset-color: #9d174d;
  }

  .tablet\:focus-within\:ring-offset-pink-900:focus-within{
    --tw-ring-offset-color: #831843;
  }

  .tablet\:focus-within\:ring-offset-brown-light:focus-within{
    --tw-ring-offset-color: #f0e9de;
  }

  .tablet\:focus-within\:ring-offset-brown-semi:focus-within{
    --tw-ring-offset-color: #ded6ca;
  }

  .tablet\:focus-within\:ring-offset-brown-default:focus-within{
    --tw-ring-offset-color: #7b6c5c;
  }

  .tablet\:focus-within\:ring-offset-brown-dark:focus-within{
    --tw-ring-offset-color: #3d2706;
  }

  .tablet\:focus-within\:ring-offset-success-light:focus-within{
    --tw-ring-offset-color: #91E09C;
  }

  .tablet\:focus-within\:ring-offset-success-default:focus-within{
    --tw-ring-offset-color: #2D993C;
  }

  .tablet\:focus-within\:ring-offset-success-dark:focus-within{
    --tw-ring-offset-color: #263B29;
  }

  .tablet\:focus-within\:ring-offset-error-light:focus-within{
    --tw-ring-offset-color: #F98686;
  }

  .tablet\:focus-within\:ring-offset-error-default:focus-within{
    --tw-ring-offset-color: #CB0707;
  }

  .tablet\:focus-within\:ring-offset-error-dark:focus-within{
    --tw-ring-offset-color: #580000;
  }

  .tablet\:focus-within\:ring-offset-navigation-dark:focus-within{
    --tw-ring-offset-color: #ffcd00;
  }

  .tablet\:focus\:ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent;
  }

  .tablet\:focus\:ring-offset-current:focus{
    --tw-ring-offset-color: currentColor;
  }

  .tablet\:focus\:ring-offset-black:focus{
    --tw-ring-offset-color: #000;
  }

  .tablet\:focus\:ring-offset-white:focus{
    --tw-ring-offset-color: #fff;
  }

  .tablet\:focus\:ring-offset-gray-50:focus{
    --tw-ring-offset-color: #f9fafb;
  }

  .tablet\:focus\:ring-offset-gray-100:focus{
    --tw-ring-offset-color: #f3f4f6;
  }

  .tablet\:focus\:ring-offset-gray-200:focus{
    --tw-ring-offset-color: #e5e7eb;
  }

  .tablet\:focus\:ring-offset-gray-300:focus{
    --tw-ring-offset-color: #d1d5db;
  }

  .tablet\:focus\:ring-offset-gray-400:focus{
    --tw-ring-offset-color: #9ca3af;
  }

  .tablet\:focus\:ring-offset-gray-500:focus{
    --tw-ring-offset-color: #6b7280;
  }

  .tablet\:focus\:ring-offset-gray-600:focus{
    --tw-ring-offset-color: #4b5563;
  }

  .tablet\:focus\:ring-offset-gray-700:focus{
    --tw-ring-offset-color: #374151;
  }

  .tablet\:focus\:ring-offset-gray-800:focus{
    --tw-ring-offset-color: #1f2937;
  }

  .tablet\:focus\:ring-offset-gray-900:focus{
    --tw-ring-offset-color: #111827;
  }

  .tablet\:focus\:ring-offset-red-50:focus{
    --tw-ring-offset-color: #fef2f2;
  }

  .tablet\:focus\:ring-offset-red-100:focus{
    --tw-ring-offset-color: #fee2e2;
  }

  .tablet\:focus\:ring-offset-red-200:focus{
    --tw-ring-offset-color: #fecaca;
  }

  .tablet\:focus\:ring-offset-red-300:focus{
    --tw-ring-offset-color: #fca5a5;
  }

  .tablet\:focus\:ring-offset-red-400:focus{
    --tw-ring-offset-color: #f87171;
  }

  .tablet\:focus\:ring-offset-red-500:focus{
    --tw-ring-offset-color: #ef4444;
  }

  .tablet\:focus\:ring-offset-red-600:focus{
    --tw-ring-offset-color: #dc2626;
  }

  .tablet\:focus\:ring-offset-red-700:focus{
    --tw-ring-offset-color: #b91c1c;
  }

  .tablet\:focus\:ring-offset-red-800:focus{
    --tw-ring-offset-color: #991b1b;
  }

  .tablet\:focus\:ring-offset-red-900:focus{
    --tw-ring-offset-color: #7f1d1d;
  }

  .tablet\:focus\:ring-offset-red-light:focus{
    --tw-ring-offset-color: #EA7A7A;
  }

  .tablet\:focus\:ring-offset-red-default:focus{
    --tw-ring-offset-color: #B90000;
  }

  .tablet\:focus\:ring-offset-red-dark:focus{
    --tw-ring-offset-color: #580000;
  }

  .tablet\:focus\:ring-offset-yellow-50:focus{
    --tw-ring-offset-color: #fffbeb;
  }

  .tablet\:focus\:ring-offset-yellow-100:focus{
    --tw-ring-offset-color: #fef3c7;
  }

  .tablet\:focus\:ring-offset-yellow-200:focus{
    --tw-ring-offset-color: #fde68a;
  }

  .tablet\:focus\:ring-offset-yellow-300:focus{
    --tw-ring-offset-color: #fcd34d;
  }

  .tablet\:focus\:ring-offset-yellow-400:focus{
    --tw-ring-offset-color: #fbbf24;
  }

  .tablet\:focus\:ring-offset-yellow-500:focus{
    --tw-ring-offset-color: #f59e0b;
  }

  .tablet\:focus\:ring-offset-yellow-600:focus{
    --tw-ring-offset-color: #d97706;
  }

  .tablet\:focus\:ring-offset-yellow-700:focus{
    --tw-ring-offset-color: #b45309;
  }

  .tablet\:focus\:ring-offset-yellow-800:focus{
    --tw-ring-offset-color: #92400e;
  }

  .tablet\:focus\:ring-offset-yellow-900:focus{
    --tw-ring-offset-color: #78350f;
  }

  .tablet\:focus\:ring-offset-green-50:focus{
    --tw-ring-offset-color: #ecfdf5;
  }

  .tablet\:focus\:ring-offset-green-100:focus{
    --tw-ring-offset-color: #d1fae5;
  }

  .tablet\:focus\:ring-offset-green-200:focus{
    --tw-ring-offset-color: #a7f3d0;
  }

  .tablet\:focus\:ring-offset-green-300:focus{
    --tw-ring-offset-color: #6ee7b7;
  }

  .tablet\:focus\:ring-offset-green-400:focus{
    --tw-ring-offset-color: #34d399;
  }

  .tablet\:focus\:ring-offset-green-500:focus{
    --tw-ring-offset-color: #10b981;
  }

  .tablet\:focus\:ring-offset-green-600:focus{
    --tw-ring-offset-color: #059669;
  }

  .tablet\:focus\:ring-offset-green-700:focus{
    --tw-ring-offset-color: #047857;
  }

  .tablet\:focus\:ring-offset-green-800:focus{
    --tw-ring-offset-color: #065f46;
  }

  .tablet\:focus\:ring-offset-green-900:focus{
    --tw-ring-offset-color: #064e3b;
  }

  .tablet\:focus\:ring-offset-green-light:focus{
    --tw-ring-offset-color: #B5D1B9;
  }

  .tablet\:focus\:ring-offset-green-default:focus{
    --tw-ring-offset-color: #263B29;
  }

  .tablet\:focus\:ring-offset-green-dark:focus{
    --tw-ring-offset-color: #1C251E;
  }

  .tablet\:focus\:ring-offset-blue-50:focus{
    --tw-ring-offset-color: #eff6ff;
  }

  .tablet\:focus\:ring-offset-blue-100:focus{
    --tw-ring-offset-color: #dbeafe;
  }

  .tablet\:focus\:ring-offset-blue-200:focus{
    --tw-ring-offset-color: #bfdbfe;
  }

  .tablet\:focus\:ring-offset-blue-300:focus{
    --tw-ring-offset-color: #93c5fd;
  }

  .tablet\:focus\:ring-offset-blue-400:focus{
    --tw-ring-offset-color: #60a5fa;
  }

  .tablet\:focus\:ring-offset-blue-500:focus{
    --tw-ring-offset-color: #3b82f6;
  }

  .tablet\:focus\:ring-offset-blue-600:focus{
    --tw-ring-offset-color: #2563eb;
  }

  .tablet\:focus\:ring-offset-blue-700:focus{
    --tw-ring-offset-color: #1d4ed8;
  }

  .tablet\:focus\:ring-offset-blue-800:focus{
    --tw-ring-offset-color: #1e40af;
  }

  .tablet\:focus\:ring-offset-blue-900:focus{
    --tw-ring-offset-color: #1e3a8a;
  }

  .tablet\:focus\:ring-offset-indigo-50:focus{
    --tw-ring-offset-color: #eef2ff;
  }

  .tablet\:focus\:ring-offset-indigo-100:focus{
    --tw-ring-offset-color: #e0e7ff;
  }

  .tablet\:focus\:ring-offset-indigo-200:focus{
    --tw-ring-offset-color: #c7d2fe;
  }

  .tablet\:focus\:ring-offset-indigo-300:focus{
    --tw-ring-offset-color: #a5b4fc;
  }

  .tablet\:focus\:ring-offset-indigo-400:focus{
    --tw-ring-offset-color: #818cf8;
  }

  .tablet\:focus\:ring-offset-indigo-500:focus{
    --tw-ring-offset-color: #6366f1;
  }

  .tablet\:focus\:ring-offset-indigo-600:focus{
    --tw-ring-offset-color: #4f46e5;
  }

  .tablet\:focus\:ring-offset-indigo-700:focus{
    --tw-ring-offset-color: #4338ca;
  }

  .tablet\:focus\:ring-offset-indigo-800:focus{
    --tw-ring-offset-color: #3730a3;
  }

  .tablet\:focus\:ring-offset-indigo-900:focus{
    --tw-ring-offset-color: #312e81;
  }

  .tablet\:focus\:ring-offset-purple-50:focus{
    --tw-ring-offset-color: #f5f3ff;
  }

  .tablet\:focus\:ring-offset-purple-100:focus{
    --tw-ring-offset-color: #ede9fe;
  }

  .tablet\:focus\:ring-offset-purple-200:focus{
    --tw-ring-offset-color: #ddd6fe;
  }

  .tablet\:focus\:ring-offset-purple-300:focus{
    --tw-ring-offset-color: #c4b5fd;
  }

  .tablet\:focus\:ring-offset-purple-400:focus{
    --tw-ring-offset-color: #a78bfa;
  }

  .tablet\:focus\:ring-offset-purple-500:focus{
    --tw-ring-offset-color: #8b5cf6;
  }

  .tablet\:focus\:ring-offset-purple-600:focus{
    --tw-ring-offset-color: #7c3aed;
  }

  .tablet\:focus\:ring-offset-purple-700:focus{
    --tw-ring-offset-color: #6d28d9;
  }

  .tablet\:focus\:ring-offset-purple-800:focus{
    --tw-ring-offset-color: #5b21b6;
  }

  .tablet\:focus\:ring-offset-purple-900:focus{
    --tw-ring-offset-color: #4c1d95;
  }

  .tablet\:focus\:ring-offset-pink-50:focus{
    --tw-ring-offset-color: #fdf2f8;
  }

  .tablet\:focus\:ring-offset-pink-100:focus{
    --tw-ring-offset-color: #fce7f3;
  }

  .tablet\:focus\:ring-offset-pink-200:focus{
    --tw-ring-offset-color: #fbcfe8;
  }

  .tablet\:focus\:ring-offset-pink-300:focus{
    --tw-ring-offset-color: #f9a8d4;
  }

  .tablet\:focus\:ring-offset-pink-400:focus{
    --tw-ring-offset-color: #f472b6;
  }

  .tablet\:focus\:ring-offset-pink-500:focus{
    --tw-ring-offset-color: #ec4899;
  }

  .tablet\:focus\:ring-offset-pink-600:focus{
    --tw-ring-offset-color: #db2777;
  }

  .tablet\:focus\:ring-offset-pink-700:focus{
    --tw-ring-offset-color: #be185d;
  }

  .tablet\:focus\:ring-offset-pink-800:focus{
    --tw-ring-offset-color: #9d174d;
  }

  .tablet\:focus\:ring-offset-pink-900:focus{
    --tw-ring-offset-color: #831843;
  }

  .tablet\:focus\:ring-offset-brown-light:focus{
    --tw-ring-offset-color: #f0e9de;
  }

  .tablet\:focus\:ring-offset-brown-semi:focus{
    --tw-ring-offset-color: #ded6ca;
  }

  .tablet\:focus\:ring-offset-brown-default:focus{
    --tw-ring-offset-color: #7b6c5c;
  }

  .tablet\:focus\:ring-offset-brown-dark:focus{
    --tw-ring-offset-color: #3d2706;
  }

  .tablet\:focus\:ring-offset-success-light:focus{
    --tw-ring-offset-color: #91E09C;
  }

  .tablet\:focus\:ring-offset-success-default:focus{
    --tw-ring-offset-color: #2D993C;
  }

  .tablet\:focus\:ring-offset-success-dark:focus{
    --tw-ring-offset-color: #263B29;
  }

  .tablet\:focus\:ring-offset-error-light:focus{
    --tw-ring-offset-color: #F98686;
  }

  .tablet\:focus\:ring-offset-error-default:focus{
    --tw-ring-offset-color: #CB0707;
  }

  .tablet\:focus\:ring-offset-error-dark:focus{
    --tw-ring-offset-color: #580000;
  }

  .tablet\:focus\:ring-offset-navigation-dark:focus{
    --tw-ring-offset-color: #ffcd00;
  }

  .tablet\:filter{
    --tw-blur: var(--tw-empty,/*!*/ /*!*/);
    --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
    --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
    --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
    --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
    --tw-invert: var(--tw-empty,/*!*/ /*!*/);
    --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
    --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
    --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  }

  .tablet\:filter-none{
    filter: none;
  }

  .tablet\:blur-0{
    --tw-blur: blur(0);
  }

  .tablet\:blur-none{
    --tw-blur: blur(0);
  }

  .tablet\:blur-sm{
    --tw-blur: blur(4px);
  }

  .tablet\:blur{
    --tw-blur: blur(8px);
  }

  .tablet\:blur-md{
    --tw-blur: blur(12px);
  }

  .tablet\:blur-lg{
    --tw-blur: blur(16px);
  }

  .tablet\:blur-xl{
    --tw-blur: blur(24px);
  }

  .tablet\:blur-2xl{
    --tw-blur: blur(40px);
  }

  .tablet\:blur-3xl{
    --tw-blur: blur(64px);
  }

  .tablet\:brightness-0{
    --tw-brightness: brightness(0);
  }

  .tablet\:brightness-50{
    --tw-brightness: brightness(.5);
  }

  .tablet\:brightness-75{
    --tw-brightness: brightness(.75);
  }

  .tablet\:brightness-90{
    --tw-brightness: brightness(.9);
  }

  .tablet\:brightness-95{
    --tw-brightness: brightness(.95);
  }

  .tablet\:brightness-100{
    --tw-brightness: brightness(1);
  }

  .tablet\:brightness-105{
    --tw-brightness: brightness(1.05);
  }

  .tablet\:brightness-110{
    --tw-brightness: brightness(1.1);
  }

  .tablet\:brightness-125{
    --tw-brightness: brightness(1.25);
  }

  .tablet\:brightness-150{
    --tw-brightness: brightness(1.5);
  }

  .tablet\:brightness-200{
    --tw-brightness: brightness(2);
  }

  .tablet\:contrast-0{
    --tw-contrast: contrast(0);
  }

  .tablet\:contrast-50{
    --tw-contrast: contrast(.5);
  }

  .tablet\:contrast-75{
    --tw-contrast: contrast(.75);
  }

  .tablet\:contrast-100{
    --tw-contrast: contrast(1);
  }

  .tablet\:contrast-125{
    --tw-contrast: contrast(1.25);
  }

  .tablet\:contrast-150{
    --tw-contrast: contrast(1.5);
  }

  .tablet\:contrast-200{
    --tw-contrast: contrast(2);
  }

  .tablet\:drop-shadow-sm{
    --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
  }

  .tablet\:drop-shadow{
    --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
  }

  .tablet\:drop-shadow-md{
    --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
  }

  .tablet\:drop-shadow-lg{
    --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
  }

  .tablet\:drop-shadow-xl{
    --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
  }

  .tablet\:drop-shadow-2xl{
    --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
  }

  .tablet\:drop-shadow-none{
    --tw-drop-shadow: drop-shadow(0 0 #0000);
  }

  .tablet\:grayscale-0{
    --tw-grayscale: grayscale(0);
  }

  .tablet\:grayscale{
    --tw-grayscale: grayscale(100%);
  }

  .tablet\:hue-rotate-0{
    --tw-hue-rotate: hue-rotate(0deg);
  }

  .tablet\:hue-rotate-15{
    --tw-hue-rotate: hue-rotate(15deg);
  }

  .tablet\:hue-rotate-30{
    --tw-hue-rotate: hue-rotate(30deg);
  }

  .tablet\:hue-rotate-60{
    --tw-hue-rotate: hue-rotate(60deg);
  }

  .tablet\:hue-rotate-90{
    --tw-hue-rotate: hue-rotate(90deg);
  }

  .tablet\:hue-rotate-180{
    --tw-hue-rotate: hue-rotate(180deg);
  }

  .tablet\:-hue-rotate-180{
    --tw-hue-rotate: hue-rotate(-180deg);
  }

  .tablet\:-hue-rotate-90{
    --tw-hue-rotate: hue-rotate(-90deg);
  }

  .tablet\:-hue-rotate-60{
    --tw-hue-rotate: hue-rotate(-60deg);
  }

  .tablet\:-hue-rotate-30{
    --tw-hue-rotate: hue-rotate(-30deg);
  }

  .tablet\:-hue-rotate-15{
    --tw-hue-rotate: hue-rotate(-15deg);
  }

  .tablet\:invert-0{
    --tw-invert: invert(0);
  }

  .tablet\:invert{
    --tw-invert: invert(100%);
  }

  .tablet\:saturate-0{
    --tw-saturate: saturate(0);
  }

  .tablet\:saturate-50{
    --tw-saturate: saturate(.5);
  }

  .tablet\:saturate-100{
    --tw-saturate: saturate(1);
  }

  .tablet\:saturate-150{
    --tw-saturate: saturate(1.5);
  }

  .tablet\:saturate-200{
    --tw-saturate: saturate(2);
  }

  .tablet\:sepia-0{
    --tw-sepia: sepia(0);
  }

  .tablet\:sepia{
    --tw-sepia: sepia(100%);
  }

  .tablet\:backdrop-filter{
    --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
            backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  }

  .tablet\:backdrop-filter-none{
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }

  .tablet\:backdrop-blur-0{
    --tw-backdrop-blur: blur(0);
  }

  .tablet\:backdrop-blur-none{
    --tw-backdrop-blur: blur(0);
  }

  .tablet\:backdrop-blur-sm{
    --tw-backdrop-blur: blur(4px);
  }

  .tablet\:backdrop-blur{
    --tw-backdrop-blur: blur(8px);
  }

  .tablet\:backdrop-blur-md{
    --tw-backdrop-blur: blur(12px);
  }

  .tablet\:backdrop-blur-lg{
    --tw-backdrop-blur: blur(16px);
  }

  .tablet\:backdrop-blur-xl{
    --tw-backdrop-blur: blur(24px);
  }

  .tablet\:backdrop-blur-2xl{
    --tw-backdrop-blur: blur(40px);
  }

  .tablet\:backdrop-blur-3xl{
    --tw-backdrop-blur: blur(64px);
  }

  .tablet\:backdrop-brightness-0{
    --tw-backdrop-brightness: brightness(0);
  }

  .tablet\:backdrop-brightness-50{
    --tw-backdrop-brightness: brightness(.5);
  }

  .tablet\:backdrop-brightness-75{
    --tw-backdrop-brightness: brightness(.75);
  }

  .tablet\:backdrop-brightness-90{
    --tw-backdrop-brightness: brightness(.9);
  }

  .tablet\:backdrop-brightness-95{
    --tw-backdrop-brightness: brightness(.95);
  }

  .tablet\:backdrop-brightness-100{
    --tw-backdrop-brightness: brightness(1);
  }

  .tablet\:backdrop-brightness-105{
    --tw-backdrop-brightness: brightness(1.05);
  }

  .tablet\:backdrop-brightness-110{
    --tw-backdrop-brightness: brightness(1.1);
  }

  .tablet\:backdrop-brightness-125{
    --tw-backdrop-brightness: brightness(1.25);
  }

  .tablet\:backdrop-brightness-150{
    --tw-backdrop-brightness: brightness(1.5);
  }

  .tablet\:backdrop-brightness-200{
    --tw-backdrop-brightness: brightness(2);
  }

  .tablet\:backdrop-contrast-0{
    --tw-backdrop-contrast: contrast(0);
  }

  .tablet\:backdrop-contrast-50{
    --tw-backdrop-contrast: contrast(.5);
  }

  .tablet\:backdrop-contrast-75{
    --tw-backdrop-contrast: contrast(.75);
  }

  .tablet\:backdrop-contrast-100{
    --tw-backdrop-contrast: contrast(1);
  }

  .tablet\:backdrop-contrast-125{
    --tw-backdrop-contrast: contrast(1.25);
  }

  .tablet\:backdrop-contrast-150{
    --tw-backdrop-contrast: contrast(1.5);
  }

  .tablet\:backdrop-contrast-200{
    --tw-backdrop-contrast: contrast(2);
  }

  .tablet\:backdrop-grayscale-0{
    --tw-backdrop-grayscale: grayscale(0);
  }

  .tablet\:backdrop-grayscale{
    --tw-backdrop-grayscale: grayscale(100%);
  }

  .tablet\:backdrop-hue-rotate-0{
    --tw-backdrop-hue-rotate: hue-rotate(0deg);
  }

  .tablet\:backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(15deg);
  }

  .tablet\:backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(30deg);
  }

  .tablet\:backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(60deg);
  }

  .tablet\:backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(90deg);
  }

  .tablet\:backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(180deg);
  }

  .tablet\:-backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(-180deg);
  }

  .tablet\:-backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(-90deg);
  }

  .tablet\:-backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(-60deg);
  }

  .tablet\:-backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(-30deg);
  }

  .tablet\:-backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(-15deg);
  }

  .tablet\:backdrop-invert-0{
    --tw-backdrop-invert: invert(0);
  }

  .tablet\:backdrop-invert{
    --tw-backdrop-invert: invert(100%);
  }

  .tablet\:backdrop-opacity-0{
    --tw-backdrop-opacity: opacity(0);
  }

  .tablet\:backdrop-opacity-5{
    --tw-backdrop-opacity: opacity(0.05);
  }

  .tablet\:backdrop-opacity-10{
    --tw-backdrop-opacity: opacity(0.1);
  }

  .tablet\:backdrop-opacity-20{
    --tw-backdrop-opacity: opacity(0.2);
  }

  .tablet\:backdrop-opacity-25{
    --tw-backdrop-opacity: opacity(0.25);
  }

  .tablet\:backdrop-opacity-30{
    --tw-backdrop-opacity: opacity(0.3);
  }

  .tablet\:backdrop-opacity-40{
    --tw-backdrop-opacity: opacity(0.4);
  }

  .tablet\:backdrop-opacity-50{
    --tw-backdrop-opacity: opacity(0.5);
  }

  .tablet\:backdrop-opacity-60{
    --tw-backdrop-opacity: opacity(0.6);
  }

  .tablet\:backdrop-opacity-70{
    --tw-backdrop-opacity: opacity(0.7);
  }

  .tablet\:backdrop-opacity-75{
    --tw-backdrop-opacity: opacity(0.75);
  }

  .tablet\:backdrop-opacity-80{
    --tw-backdrop-opacity: opacity(0.8);
  }

  .tablet\:backdrop-opacity-90{
    --tw-backdrop-opacity: opacity(0.9);
  }

  .tablet\:backdrop-opacity-95{
    --tw-backdrop-opacity: opacity(0.95);
  }

  .tablet\:backdrop-opacity-100{
    --tw-backdrop-opacity: opacity(1);
  }

  .tablet\:backdrop-saturate-0{
    --tw-backdrop-saturate: saturate(0);
  }

  .tablet\:backdrop-saturate-50{
    --tw-backdrop-saturate: saturate(.5);
  }

  .tablet\:backdrop-saturate-100{
    --tw-backdrop-saturate: saturate(1);
  }

  .tablet\:backdrop-saturate-150{
    --tw-backdrop-saturate: saturate(1.5);
  }

  .tablet\:backdrop-saturate-200{
    --tw-backdrop-saturate: saturate(2);
  }

  .tablet\:backdrop-sepia-0{
    --tw-backdrop-sepia: sepia(0);
  }

  .tablet\:backdrop-sepia{
    --tw-backdrop-sepia: sepia(100%);
  }

  .tablet\:transition-none{
    transition-property: none;
  }

  .tablet\:transition-all{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .tablet\:transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .tablet\:transition-colors{
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .tablet\:transition-opacity{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .tablet\:transition-shadow{
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .tablet\:transition-transform{
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .tablet\:delay-75{
    transition-delay: 75ms;
  }

  .tablet\:delay-100{
    transition-delay: 100ms;
  }

  .tablet\:delay-150{
    transition-delay: 150ms;
  }

  .tablet\:delay-200{
    transition-delay: 200ms;
  }

  .tablet\:delay-300{
    transition-delay: 300ms;
  }

  .tablet\:delay-500{
    transition-delay: 500ms;
  }

  .tablet\:delay-700{
    transition-delay: 700ms;
  }

  .tablet\:delay-1000{
    transition-delay: 1000ms;
  }

  .tablet\:duration-75{
    transition-duration: 75ms;
  }

  .tablet\:duration-100{
    transition-duration: 100ms;
  }

  .tablet\:duration-150{
    transition-duration: 150ms;
  }

  .tablet\:duration-200{
    transition-duration: 200ms;
  }

  .tablet\:duration-300{
    transition-duration: 300ms;
  }

  .tablet\:duration-500{
    transition-duration: 500ms;
  }

  .tablet\:duration-700{
    transition-duration: 700ms;
  }

  .tablet\:duration-1000{
    transition-duration: 1000ms;
  }

  .tablet\:ease-linear{
    transition-timing-function: linear;
  }

  .tablet\:ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .tablet\:ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .tablet\:ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
}

@media (min-width: 1200px){
  .desktop\:container{
    width: 100%;
  }

  @media (min-width: 768px){
    .desktop\:container{
      max-width: 768px;
    }
  }

  @media (min-width: 1200px){
    .desktop\:container{
      max-width: 1200px;
    }
  }

  .desktop\:bw-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .desktop\:bw-hover-animation, .desktop\:bw-hover-menu > li > a{
    opacity: 1;
  }

  .desktop\:bw-hover-animation, .desktop\:bw-hover-menu > li > a{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .desktop\:bw-hover-animation, .desktop\:bw-hover-menu > li > a{
    transition-duration: 300ms;
  }

  .desktop\:bw-hover-animation:hover, .desktop\:bw-hover-menu > li > a:hover{
    opacity: 0.5;
  }

  .desktop\:bw-hover-animation:hover, .desktop\:bw-hover-menu > li > a:hover{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .desktop\:bw-hover-animation:hover, .desktop\:bw-hover-menu > li > a:hover{
    transition-duration: 300ms;
  }

  .desktop\:sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .desktop\:not-sr-only{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .desktop\:focus-within\:sr-only:focus-within{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .desktop\:focus-within\:not-sr-only:focus-within{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .desktop\:focus\:sr-only:focus{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  .desktop\:focus\:not-sr-only:focus{
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .desktop\:pointer-events-none{
    pointer-events: none;
  }

  .desktop\:pointer-events-auto{
    pointer-events: auto;
  }

  .desktop\:visible{
    visibility: visible;
  }

  .desktop\:invisible{
    visibility: hidden;
  }

  .desktop\:static{
    position: static;
  }

  .desktop\:fixed{
    position: fixed;
  }

  .desktop\:absolute{
    position: absolute;
  }

  .desktop\:relative{
    position: relative;
  }

  .desktop\:sticky{
    position: -webkit-sticky;
    position: sticky;
  }

  .desktop\:inset-0{
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }

  .desktop\:inset-1{
    top: 0.25rem;
    right: 0.25rem;
    bottom: 0.25rem;
    left: 0.25rem;
  }

  .desktop\:inset-2{
    top: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
  }

  .desktop\:inset-3{
    top: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .desktop\:inset-4{
    top: 1rem;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .desktop\:inset-5{
    top: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .desktop\:inset-6{
    top: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .desktop\:inset-7{
    top: 1.75rem;
    right: 1.75rem;
    bottom: 1.75rem;
    left: 1.75rem;
  }

  .desktop\:inset-8{
    top: 2rem;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
  }

  .desktop\:inset-9{
    top: 2.25rem;
    right: 2.25rem;
    bottom: 2.25rem;
    left: 2.25rem;
  }

  .desktop\:inset-10{
    top: 2.5rem;
    right: 2.5rem;
    bottom: 2.5rem;
    left: 2.5rem;
  }

  .desktop\:inset-11{
    top: 2.75rem;
    right: 2.75rem;
    bottom: 2.75rem;
    left: 2.75rem;
  }

  .desktop\:inset-12{
    top: 3rem;
    right: 3rem;
    bottom: 3rem;
    left: 3rem;
  }

  .desktop\:inset-14{
    top: 3.5rem;
    right: 3.5rem;
    bottom: 3.5rem;
    left: 3.5rem;
  }

  .desktop\:inset-16{
    top: 4rem;
    right: 4rem;
    bottom: 4rem;
    left: 4rem;
  }

  .desktop\:inset-20{
    top: 5rem;
    right: 5rem;
    bottom: 5rem;
    left: 5rem;
  }

  .desktop\:inset-24{
    top: 6rem;
    right: 6rem;
    bottom: 6rem;
    left: 6rem;
  }

  .desktop\:inset-28{
    top: 7rem;
    right: 7rem;
    bottom: 7rem;
    left: 7rem;
  }

  .desktop\:inset-32{
    top: 8rem;
    right: 8rem;
    bottom: 8rem;
    left: 8rem;
  }

  .desktop\:inset-36{
    top: 9rem;
    right: 9rem;
    bottom: 9rem;
    left: 9rem;
  }

  .desktop\:inset-40{
    top: 10rem;
    right: 10rem;
    bottom: 10rem;
    left: 10rem;
  }

  .desktop\:inset-44{
    top: 11rem;
    right: 11rem;
    bottom: 11rem;
    left: 11rem;
  }

  .desktop\:inset-48{
    top: 12rem;
    right: 12rem;
    bottom: 12rem;
    left: 12rem;
  }

  .desktop\:inset-52{
    top: 13rem;
    right: 13rem;
    bottom: 13rem;
    left: 13rem;
  }

  .desktop\:inset-56{
    top: 14rem;
    right: 14rem;
    bottom: 14rem;
    left: 14rem;
  }

  .desktop\:inset-60{
    top: 15rem;
    right: 15rem;
    bottom: 15rem;
    left: 15rem;
  }

  .desktop\:inset-64{
    top: 16rem;
    right: 16rem;
    bottom: 16rem;
    left: 16rem;
  }

  .desktop\:inset-72{
    top: 18rem;
    right: 18rem;
    bottom: 18rem;
    left: 18rem;
  }

  .desktop\:inset-80{
    top: 20rem;
    right: 20rem;
    bottom: 20rem;
    left: 20rem;
  }

  .desktop\:inset-96{
    top: 24rem;
    right: 24rem;
    bottom: 24rem;
    left: 24rem;
  }

  .desktop\:inset-auto{
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .desktop\:inset-px{
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
  }

  .desktop\:inset-0\.5{
    top: 0.125rem;
    right: 0.125rem;
    bottom: 0.125rem;
    left: 0.125rem;
  }

  .desktop\:inset-1\.5{
    top: 0.375rem;
    right: 0.375rem;
    bottom: 0.375rem;
    left: 0.375rem;
  }

  .desktop\:inset-2\.5{
    top: 0.625rem;
    right: 0.625rem;
    bottom: 0.625rem;
    left: 0.625rem;
  }

  .desktop\:inset-3\.5{
    top: 0.875rem;
    right: 0.875rem;
    bottom: 0.875rem;
    left: 0.875rem;
  }

  .desktop\:-inset-0{
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }

  .desktop\:-inset-1{
    top: -0.25rem;
    right: -0.25rem;
    bottom: -0.25rem;
    left: -0.25rem;
  }

  .desktop\:-inset-2{
    top: -0.5rem;
    right: -0.5rem;
    bottom: -0.5rem;
    left: -0.5rem;
  }

  .desktop\:-inset-3{
    top: -0.75rem;
    right: -0.75rem;
    bottom: -0.75rem;
    left: -0.75rem;
  }

  .desktop\:-inset-4{
    top: -1rem;
    right: -1rem;
    bottom: -1rem;
    left: -1rem;
  }

  .desktop\:-inset-5{
    top: -1.25rem;
    right: -1.25rem;
    bottom: -1.25rem;
    left: -1.25rem;
  }

  .desktop\:-inset-6{
    top: -1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    left: -1.5rem;
  }

  .desktop\:-inset-7{
    top: -1.75rem;
    right: -1.75rem;
    bottom: -1.75rem;
    left: -1.75rem;
  }

  .desktop\:-inset-8{
    top: -2rem;
    right: -2rem;
    bottom: -2rem;
    left: -2rem;
  }

  .desktop\:-inset-9{
    top: -2.25rem;
    right: -2.25rem;
    bottom: -2.25rem;
    left: -2.25rem;
  }

  .desktop\:-inset-10{
    top: -2.5rem;
    right: -2.5rem;
    bottom: -2.5rem;
    left: -2.5rem;
  }

  .desktop\:-inset-11{
    top: -2.75rem;
    right: -2.75rem;
    bottom: -2.75rem;
    left: -2.75rem;
  }

  .desktop\:-inset-12{
    top: -3rem;
    right: -3rem;
    bottom: -3rem;
    left: -3rem;
  }

  .desktop\:-inset-14{
    top: -3.5rem;
    right: -3.5rem;
    bottom: -3.5rem;
    left: -3.5rem;
  }

  .desktop\:-inset-16{
    top: -4rem;
    right: -4rem;
    bottom: -4rem;
    left: -4rem;
  }

  .desktop\:-inset-20{
    top: -5rem;
    right: -5rem;
    bottom: -5rem;
    left: -5rem;
  }

  .desktop\:-inset-24{
    top: -6rem;
    right: -6rem;
    bottom: -6rem;
    left: -6rem;
  }

  .desktop\:-inset-28{
    top: -7rem;
    right: -7rem;
    bottom: -7rem;
    left: -7rem;
  }

  .desktop\:-inset-32{
    top: -8rem;
    right: -8rem;
    bottom: -8rem;
    left: -8rem;
  }

  .desktop\:-inset-36{
    top: -9rem;
    right: -9rem;
    bottom: -9rem;
    left: -9rem;
  }

  .desktop\:-inset-40{
    top: -10rem;
    right: -10rem;
    bottom: -10rem;
    left: -10rem;
  }

  .desktop\:-inset-44{
    top: -11rem;
    right: -11rem;
    bottom: -11rem;
    left: -11rem;
  }

  .desktop\:-inset-48{
    top: -12rem;
    right: -12rem;
    bottom: -12rem;
    left: -12rem;
  }

  .desktop\:-inset-52{
    top: -13rem;
    right: -13rem;
    bottom: -13rem;
    left: -13rem;
  }

  .desktop\:-inset-56{
    top: -14rem;
    right: -14rem;
    bottom: -14rem;
    left: -14rem;
  }

  .desktop\:-inset-60{
    top: -15rem;
    right: -15rem;
    bottom: -15rem;
    left: -15rem;
  }

  .desktop\:-inset-64{
    top: -16rem;
    right: -16rem;
    bottom: -16rem;
    left: -16rem;
  }

  .desktop\:-inset-72{
    top: -18rem;
    right: -18rem;
    bottom: -18rem;
    left: -18rem;
  }

  .desktop\:-inset-80{
    top: -20rem;
    right: -20rem;
    bottom: -20rem;
    left: -20rem;
  }

  .desktop\:-inset-96{
    top: -24rem;
    right: -24rem;
    bottom: -24rem;
    left: -24rem;
  }

  .desktop\:-inset-px{
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
  }

  .desktop\:-inset-0\.5{
    top: -0.125rem;
    right: -0.125rem;
    bottom: -0.125rem;
    left: -0.125rem;
  }

  .desktop\:-inset-1\.5{
    top: -0.375rem;
    right: -0.375rem;
    bottom: -0.375rem;
    left: -0.375rem;
  }

  .desktop\:-inset-2\.5{
    top: -0.625rem;
    right: -0.625rem;
    bottom: -0.625rem;
    left: -0.625rem;
  }

  .desktop\:-inset-3\.5{
    top: -0.875rem;
    right: -0.875rem;
    bottom: -0.875rem;
    left: -0.875rem;
  }

  .desktop\:inset-1\/2{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .desktop\:inset-1\/3{
    top: 33.333333%;
    right: 33.333333%;
    bottom: 33.333333%;
    left: 33.333333%;
  }

  .desktop\:inset-2\/3{
    top: 66.666667%;
    right: 66.666667%;
    bottom: 66.666667%;
    left: 66.666667%;
  }

  .desktop\:inset-1\/4{
    top: 25%;
    right: 25%;
    bottom: 25%;
    left: 25%;
  }

  .desktop\:inset-2\/4{
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
  }

  .desktop\:inset-3\/4{
    top: 75%;
    right: 75%;
    bottom: 75%;
    left: 75%;
  }

  .desktop\:inset-full{
    top: 100%;
    right: 100%;
    bottom: 100%;
    left: 100%;
  }

  .desktop\:-inset-1\/2{
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
  }

  .desktop\:-inset-1\/3{
    top: -33.333333%;
    right: -33.333333%;
    bottom: -33.333333%;
    left: -33.333333%;
  }

  .desktop\:-inset-2\/3{
    top: -66.666667%;
    right: -66.666667%;
    bottom: -66.666667%;
    left: -66.666667%;
  }

  .desktop\:-inset-1\/4{
    top: -25%;
    right: -25%;
    bottom: -25%;
    left: -25%;
  }

  .desktop\:-inset-2\/4{
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
  }

  .desktop\:-inset-3\/4{
    top: -75%;
    right: -75%;
    bottom: -75%;
    left: -75%;
  }

  .desktop\:-inset-full{
    top: -100%;
    right: -100%;
    bottom: -100%;
    left: -100%;
  }

  .desktop\:inset-x-0{
    left: 0px;
    right: 0px;
  }

  .desktop\:inset-x-1{
    left: 0.25rem;
    right: 0.25rem;
  }

  .desktop\:inset-x-2{
    left: 0.5rem;
    right: 0.5rem;
  }

  .desktop\:inset-x-3{
    left: 0.75rem;
    right: 0.75rem;
  }

  .desktop\:inset-x-4{
    left: 1rem;
    right: 1rem;
  }

  .desktop\:inset-x-5{
    left: 1.25rem;
    right: 1.25rem;
  }

  .desktop\:inset-x-6{
    left: 1.5rem;
    right: 1.5rem;
  }

  .desktop\:inset-x-7{
    left: 1.75rem;
    right: 1.75rem;
  }

  .desktop\:inset-x-8{
    left: 2rem;
    right: 2rem;
  }

  .desktop\:inset-x-9{
    left: 2.25rem;
    right: 2.25rem;
  }

  .desktop\:inset-x-10{
    left: 2.5rem;
    right: 2.5rem;
  }

  .desktop\:inset-x-11{
    left: 2.75rem;
    right: 2.75rem;
  }

  .desktop\:inset-x-12{
    left: 3rem;
    right: 3rem;
  }

  .desktop\:inset-x-14{
    left: 3.5rem;
    right: 3.5rem;
  }

  .desktop\:inset-x-16{
    left: 4rem;
    right: 4rem;
  }

  .desktop\:inset-x-20{
    left: 5rem;
    right: 5rem;
  }

  .desktop\:inset-x-24{
    left: 6rem;
    right: 6rem;
  }

  .desktop\:inset-x-28{
    left: 7rem;
    right: 7rem;
  }

  .desktop\:inset-x-32{
    left: 8rem;
    right: 8rem;
  }

  .desktop\:inset-x-36{
    left: 9rem;
    right: 9rem;
  }

  .desktop\:inset-x-40{
    left: 10rem;
    right: 10rem;
  }

  .desktop\:inset-x-44{
    left: 11rem;
    right: 11rem;
  }

  .desktop\:inset-x-48{
    left: 12rem;
    right: 12rem;
  }

  .desktop\:inset-x-52{
    left: 13rem;
    right: 13rem;
  }

  .desktop\:inset-x-56{
    left: 14rem;
    right: 14rem;
  }

  .desktop\:inset-x-60{
    left: 15rem;
    right: 15rem;
  }

  .desktop\:inset-x-64{
    left: 16rem;
    right: 16rem;
  }

  .desktop\:inset-x-72{
    left: 18rem;
    right: 18rem;
  }

  .desktop\:inset-x-80{
    left: 20rem;
    right: 20rem;
  }

  .desktop\:inset-x-96{
    left: 24rem;
    right: 24rem;
  }

  .desktop\:inset-x-auto{
    left: auto;
    right: auto;
  }

  .desktop\:inset-x-px{
    left: 1px;
    right: 1px;
  }

  .desktop\:inset-x-0\.5{
    left: 0.125rem;
    right: 0.125rem;
  }

  .desktop\:inset-x-1\.5{
    left: 0.375rem;
    right: 0.375rem;
  }

  .desktop\:inset-x-2\.5{
    left: 0.625rem;
    right: 0.625rem;
  }

  .desktop\:inset-x-3\.5{
    left: 0.875rem;
    right: 0.875rem;
  }

  .desktop\:-inset-x-0{
    left: 0px;
    right: 0px;
  }

  .desktop\:-inset-x-1{
    left: -0.25rem;
    right: -0.25rem;
  }

  .desktop\:-inset-x-2{
    left: -0.5rem;
    right: -0.5rem;
  }

  .desktop\:-inset-x-3{
    left: -0.75rem;
    right: -0.75rem;
  }

  .desktop\:-inset-x-4{
    left: -1rem;
    right: -1rem;
  }

  .desktop\:-inset-x-5{
    left: -1.25rem;
    right: -1.25rem;
  }

  .desktop\:-inset-x-6{
    left: -1.5rem;
    right: -1.5rem;
  }

  .desktop\:-inset-x-7{
    left: -1.75rem;
    right: -1.75rem;
  }

  .desktop\:-inset-x-8{
    left: -2rem;
    right: -2rem;
  }

  .desktop\:-inset-x-9{
    left: -2.25rem;
    right: -2.25rem;
  }

  .desktop\:-inset-x-10{
    left: -2.5rem;
    right: -2.5rem;
  }

  .desktop\:-inset-x-11{
    left: -2.75rem;
    right: -2.75rem;
  }

  .desktop\:-inset-x-12{
    left: -3rem;
    right: -3rem;
  }

  .desktop\:-inset-x-14{
    left: -3.5rem;
    right: -3.5rem;
  }

  .desktop\:-inset-x-16{
    left: -4rem;
    right: -4rem;
  }

  .desktop\:-inset-x-20{
    left: -5rem;
    right: -5rem;
  }

  .desktop\:-inset-x-24{
    left: -6rem;
    right: -6rem;
  }

  .desktop\:-inset-x-28{
    left: -7rem;
    right: -7rem;
  }

  .desktop\:-inset-x-32{
    left: -8rem;
    right: -8rem;
  }

  .desktop\:-inset-x-36{
    left: -9rem;
    right: -9rem;
  }

  .desktop\:-inset-x-40{
    left: -10rem;
    right: -10rem;
  }

  .desktop\:-inset-x-44{
    left: -11rem;
    right: -11rem;
  }

  .desktop\:-inset-x-48{
    left: -12rem;
    right: -12rem;
  }

  .desktop\:-inset-x-52{
    left: -13rem;
    right: -13rem;
  }

  .desktop\:-inset-x-56{
    left: -14rem;
    right: -14rem;
  }

  .desktop\:-inset-x-60{
    left: -15rem;
    right: -15rem;
  }

  .desktop\:-inset-x-64{
    left: -16rem;
    right: -16rem;
  }

  .desktop\:-inset-x-72{
    left: -18rem;
    right: -18rem;
  }

  .desktop\:-inset-x-80{
    left: -20rem;
    right: -20rem;
  }

  .desktop\:-inset-x-96{
    left: -24rem;
    right: -24rem;
  }

  .desktop\:-inset-x-px{
    left: -1px;
    right: -1px;
  }

  .desktop\:-inset-x-0\.5{
    left: -0.125rem;
    right: -0.125rem;
  }

  .desktop\:-inset-x-1\.5{
    left: -0.375rem;
    right: -0.375rem;
  }

  .desktop\:-inset-x-2\.5{
    left: -0.625rem;
    right: -0.625rem;
  }

  .desktop\:-inset-x-3\.5{
    left: -0.875rem;
    right: -0.875rem;
  }

  .desktop\:inset-x-1\/2{
    left: 50%;
    right: 50%;
  }

  .desktop\:inset-x-1\/3{
    left: 33.333333%;
    right: 33.333333%;
  }

  .desktop\:inset-x-2\/3{
    left: 66.666667%;
    right: 66.666667%;
  }

  .desktop\:inset-x-1\/4{
    left: 25%;
    right: 25%;
  }

  .desktop\:inset-x-2\/4{
    left: 50%;
    right: 50%;
  }

  .desktop\:inset-x-3\/4{
    left: 75%;
    right: 75%;
  }

  .desktop\:inset-x-full{
    left: 100%;
    right: 100%;
  }

  .desktop\:-inset-x-1\/2{
    left: -50%;
    right: -50%;
  }

  .desktop\:-inset-x-1\/3{
    left: -33.333333%;
    right: -33.333333%;
  }

  .desktop\:-inset-x-2\/3{
    left: -66.666667%;
    right: -66.666667%;
  }

  .desktop\:-inset-x-1\/4{
    left: -25%;
    right: -25%;
  }

  .desktop\:-inset-x-2\/4{
    left: -50%;
    right: -50%;
  }

  .desktop\:-inset-x-3\/4{
    left: -75%;
    right: -75%;
  }

  .desktop\:-inset-x-full{
    left: -100%;
    right: -100%;
  }

  .desktop\:inset-y-0{
    top: 0px;
    bottom: 0px;
  }

  .desktop\:inset-y-1{
    top: 0.25rem;
    bottom: 0.25rem;
  }

  .desktop\:inset-y-2{
    top: 0.5rem;
    bottom: 0.5rem;
  }

  .desktop\:inset-y-3{
    top: 0.75rem;
    bottom: 0.75rem;
  }

  .desktop\:inset-y-4{
    top: 1rem;
    bottom: 1rem;
  }

  .desktop\:inset-y-5{
    top: 1.25rem;
    bottom: 1.25rem;
  }

  .desktop\:inset-y-6{
    top: 1.5rem;
    bottom: 1.5rem;
  }

  .desktop\:inset-y-7{
    top: 1.75rem;
    bottom: 1.75rem;
  }

  .desktop\:inset-y-8{
    top: 2rem;
    bottom: 2rem;
  }

  .desktop\:inset-y-9{
    top: 2.25rem;
    bottom: 2.25rem;
  }

  .desktop\:inset-y-10{
    top: 2.5rem;
    bottom: 2.5rem;
  }

  .desktop\:inset-y-11{
    top: 2.75rem;
    bottom: 2.75rem;
  }

  .desktop\:inset-y-12{
    top: 3rem;
    bottom: 3rem;
  }

  .desktop\:inset-y-14{
    top: 3.5rem;
    bottom: 3.5rem;
  }

  .desktop\:inset-y-16{
    top: 4rem;
    bottom: 4rem;
  }

  .desktop\:inset-y-20{
    top: 5rem;
    bottom: 5rem;
  }

  .desktop\:inset-y-24{
    top: 6rem;
    bottom: 6rem;
  }

  .desktop\:inset-y-28{
    top: 7rem;
    bottom: 7rem;
  }

  .desktop\:inset-y-32{
    top: 8rem;
    bottom: 8rem;
  }

  .desktop\:inset-y-36{
    top: 9rem;
    bottom: 9rem;
  }

  .desktop\:inset-y-40{
    top: 10rem;
    bottom: 10rem;
  }

  .desktop\:inset-y-44{
    top: 11rem;
    bottom: 11rem;
  }

  .desktop\:inset-y-48{
    top: 12rem;
    bottom: 12rem;
  }

  .desktop\:inset-y-52{
    top: 13rem;
    bottom: 13rem;
  }

  .desktop\:inset-y-56{
    top: 14rem;
    bottom: 14rem;
  }

  .desktop\:inset-y-60{
    top: 15rem;
    bottom: 15rem;
  }

  .desktop\:inset-y-64{
    top: 16rem;
    bottom: 16rem;
  }

  .desktop\:inset-y-72{
    top: 18rem;
    bottom: 18rem;
  }

  .desktop\:inset-y-80{
    top: 20rem;
    bottom: 20rem;
  }

  .desktop\:inset-y-96{
    top: 24rem;
    bottom: 24rem;
  }

  .desktop\:inset-y-auto{
    top: auto;
    bottom: auto;
  }

  .desktop\:inset-y-px{
    top: 1px;
    bottom: 1px;
  }

  .desktop\:inset-y-0\.5{
    top: 0.125rem;
    bottom: 0.125rem;
  }

  .desktop\:inset-y-1\.5{
    top: 0.375rem;
    bottom: 0.375rem;
  }

  .desktop\:inset-y-2\.5{
    top: 0.625rem;
    bottom: 0.625rem;
  }

  .desktop\:inset-y-3\.5{
    top: 0.875rem;
    bottom: 0.875rem;
  }

  .desktop\:-inset-y-0{
    top: 0px;
    bottom: 0px;
  }

  .desktop\:-inset-y-1{
    top: -0.25rem;
    bottom: -0.25rem;
  }

  .desktop\:-inset-y-2{
    top: -0.5rem;
    bottom: -0.5rem;
  }

  .desktop\:-inset-y-3{
    top: -0.75rem;
    bottom: -0.75rem;
  }

  .desktop\:-inset-y-4{
    top: -1rem;
    bottom: -1rem;
  }

  .desktop\:-inset-y-5{
    top: -1.25rem;
    bottom: -1.25rem;
  }

  .desktop\:-inset-y-6{
    top: -1.5rem;
    bottom: -1.5rem;
  }

  .desktop\:-inset-y-7{
    top: -1.75rem;
    bottom: -1.75rem;
  }

  .desktop\:-inset-y-8{
    top: -2rem;
    bottom: -2rem;
  }

  .desktop\:-inset-y-9{
    top: -2.25rem;
    bottom: -2.25rem;
  }

  .desktop\:-inset-y-10{
    top: -2.5rem;
    bottom: -2.5rem;
  }

  .desktop\:-inset-y-11{
    top: -2.75rem;
    bottom: -2.75rem;
  }

  .desktop\:-inset-y-12{
    top: -3rem;
    bottom: -3rem;
  }

  .desktop\:-inset-y-14{
    top: -3.5rem;
    bottom: -3.5rem;
  }

  .desktop\:-inset-y-16{
    top: -4rem;
    bottom: -4rem;
  }

  .desktop\:-inset-y-20{
    top: -5rem;
    bottom: -5rem;
  }

  .desktop\:-inset-y-24{
    top: -6rem;
    bottom: -6rem;
  }

  .desktop\:-inset-y-28{
    top: -7rem;
    bottom: -7rem;
  }

  .desktop\:-inset-y-32{
    top: -8rem;
    bottom: -8rem;
  }

  .desktop\:-inset-y-36{
    top: -9rem;
    bottom: -9rem;
  }

  .desktop\:-inset-y-40{
    top: -10rem;
    bottom: -10rem;
  }

  .desktop\:-inset-y-44{
    top: -11rem;
    bottom: -11rem;
  }

  .desktop\:-inset-y-48{
    top: -12rem;
    bottom: -12rem;
  }

  .desktop\:-inset-y-52{
    top: -13rem;
    bottom: -13rem;
  }

  .desktop\:-inset-y-56{
    top: -14rem;
    bottom: -14rem;
  }

  .desktop\:-inset-y-60{
    top: -15rem;
    bottom: -15rem;
  }

  .desktop\:-inset-y-64{
    top: -16rem;
    bottom: -16rem;
  }

  .desktop\:-inset-y-72{
    top: -18rem;
    bottom: -18rem;
  }

  .desktop\:-inset-y-80{
    top: -20rem;
    bottom: -20rem;
  }

  .desktop\:-inset-y-96{
    top: -24rem;
    bottom: -24rem;
  }

  .desktop\:-inset-y-px{
    top: -1px;
    bottom: -1px;
  }

  .desktop\:-inset-y-0\.5{
    top: -0.125rem;
    bottom: -0.125rem;
  }

  .desktop\:-inset-y-1\.5{
    top: -0.375rem;
    bottom: -0.375rem;
  }

  .desktop\:-inset-y-2\.5{
    top: -0.625rem;
    bottom: -0.625rem;
  }

  .desktop\:-inset-y-3\.5{
    top: -0.875rem;
    bottom: -0.875rem;
  }

  .desktop\:inset-y-1\/2{
    top: 50%;
    bottom: 50%;
  }

  .desktop\:inset-y-1\/3{
    top: 33.333333%;
    bottom: 33.333333%;
  }

  .desktop\:inset-y-2\/3{
    top: 66.666667%;
    bottom: 66.666667%;
  }

  .desktop\:inset-y-1\/4{
    top: 25%;
    bottom: 25%;
  }

  .desktop\:inset-y-2\/4{
    top: 50%;
    bottom: 50%;
  }

  .desktop\:inset-y-3\/4{
    top: 75%;
    bottom: 75%;
  }

  .desktop\:inset-y-full{
    top: 100%;
    bottom: 100%;
  }

  .desktop\:-inset-y-1\/2{
    top: -50%;
    bottom: -50%;
  }

  .desktop\:-inset-y-1\/3{
    top: -33.333333%;
    bottom: -33.333333%;
  }

  .desktop\:-inset-y-2\/3{
    top: -66.666667%;
    bottom: -66.666667%;
  }

  .desktop\:-inset-y-1\/4{
    top: -25%;
    bottom: -25%;
  }

  .desktop\:-inset-y-2\/4{
    top: -50%;
    bottom: -50%;
  }

  .desktop\:-inset-y-3\/4{
    top: -75%;
    bottom: -75%;
  }

  .desktop\:-inset-y-full{
    top: -100%;
    bottom: -100%;
  }

  .desktop\:top-0{
    top: 0px;
  }

  .desktop\:top-1{
    top: 0.25rem;
  }

  .desktop\:top-2{
    top: 0.5rem;
  }

  .desktop\:top-3{
    top: 0.75rem;
  }

  .desktop\:top-4{
    top: 1rem;
  }

  .desktop\:top-5{
    top: 1.25rem;
  }

  .desktop\:top-6{
    top: 1.5rem;
  }

  .desktop\:top-7{
    top: 1.75rem;
  }

  .desktop\:top-8{
    top: 2rem;
  }

  .desktop\:top-9{
    top: 2.25rem;
  }

  .desktop\:top-10{
    top: 2.5rem;
  }

  .desktop\:top-11{
    top: 2.75rem;
  }

  .desktop\:top-12{
    top: 3rem;
  }

  .desktop\:top-14{
    top: 3.5rem;
  }

  .desktop\:top-16{
    top: 4rem;
  }

  .desktop\:top-20{
    top: 5rem;
  }

  .desktop\:top-24{
    top: 6rem;
  }

  .desktop\:top-28{
    top: 7rem;
  }

  .desktop\:top-32{
    top: 8rem;
  }

  .desktop\:top-36{
    top: 9rem;
  }

  .desktop\:top-40{
    top: 10rem;
  }

  .desktop\:top-44{
    top: 11rem;
  }

  .desktop\:top-48{
    top: 12rem;
  }

  .desktop\:top-52{
    top: 13rem;
  }

  .desktop\:top-56{
    top: 14rem;
  }

  .desktop\:top-60{
    top: 15rem;
  }

  .desktop\:top-64{
    top: 16rem;
  }

  .desktop\:top-72{
    top: 18rem;
  }

  .desktop\:top-80{
    top: 20rem;
  }

  .desktop\:top-96{
    top: 24rem;
  }

  .desktop\:top-auto{
    top: auto;
  }

  .desktop\:top-px{
    top: 1px;
  }

  .desktop\:top-0\.5{
    top: 0.125rem;
  }

  .desktop\:top-1\.5{
    top: 0.375rem;
  }

  .desktop\:top-2\.5{
    top: 0.625rem;
  }

  .desktop\:top-3\.5{
    top: 0.875rem;
  }

  .desktop\:-top-0{
    top: 0px;
  }

  .desktop\:-top-1{
    top: -0.25rem;
  }

  .desktop\:-top-2{
    top: -0.5rem;
  }

  .desktop\:-top-3{
    top: -0.75rem;
  }

  .desktop\:-top-4{
    top: -1rem;
  }

  .desktop\:-top-5{
    top: -1.25rem;
  }

  .desktop\:-top-6{
    top: -1.5rem;
  }

  .desktop\:-top-7{
    top: -1.75rem;
  }

  .desktop\:-top-8{
    top: -2rem;
  }

  .desktop\:-top-9{
    top: -2.25rem;
  }

  .desktop\:-top-10{
    top: -2.5rem;
  }

  .desktop\:-top-11{
    top: -2.75rem;
  }

  .desktop\:-top-12{
    top: -3rem;
  }

  .desktop\:-top-14{
    top: -3.5rem;
  }

  .desktop\:-top-16{
    top: -4rem;
  }

  .desktop\:-top-20{
    top: -5rem;
  }

  .desktop\:-top-24{
    top: -6rem;
  }

  .desktop\:-top-28{
    top: -7rem;
  }

  .desktop\:-top-32{
    top: -8rem;
  }

  .desktop\:-top-36{
    top: -9rem;
  }

  .desktop\:-top-40{
    top: -10rem;
  }

  .desktop\:-top-44{
    top: -11rem;
  }

  .desktop\:-top-48{
    top: -12rem;
  }

  .desktop\:-top-52{
    top: -13rem;
  }

  .desktop\:-top-56{
    top: -14rem;
  }

  .desktop\:-top-60{
    top: -15rem;
  }

  .desktop\:-top-64{
    top: -16rem;
  }

  .desktop\:-top-72{
    top: -18rem;
  }

  .desktop\:-top-80{
    top: -20rem;
  }

  .desktop\:-top-96{
    top: -24rem;
  }

  .desktop\:-top-px{
    top: -1px;
  }

  .desktop\:-top-0\.5{
    top: -0.125rem;
  }

  .desktop\:-top-1\.5{
    top: -0.375rem;
  }

  .desktop\:-top-2\.5{
    top: -0.625rem;
  }

  .desktop\:-top-3\.5{
    top: -0.875rem;
  }

  .desktop\:top-1\/2{
    top: 50%;
  }

  .desktop\:top-1\/3{
    top: 33.333333%;
  }

  .desktop\:top-2\/3{
    top: 66.666667%;
  }

  .desktop\:top-1\/4{
    top: 25%;
  }

  .desktop\:top-2\/4{
    top: 50%;
  }

  .desktop\:top-3\/4{
    top: 75%;
  }

  .desktop\:top-full{
    top: 100%;
  }

  .desktop\:-top-1\/2{
    top: -50%;
  }

  .desktop\:-top-1\/3{
    top: -33.333333%;
  }

  .desktop\:-top-2\/3{
    top: -66.666667%;
  }

  .desktop\:-top-1\/4{
    top: -25%;
  }

  .desktop\:-top-2\/4{
    top: -50%;
  }

  .desktop\:-top-3\/4{
    top: -75%;
  }

  .desktop\:-top-full{
    top: -100%;
  }

  .desktop\:right-0{
    right: 0px;
  }

  .desktop\:right-1{
    right: 0.25rem;
  }

  .desktop\:right-2{
    right: 0.5rem;
  }

  .desktop\:right-3{
    right: 0.75rem;
  }

  .desktop\:right-4{
    right: 1rem;
  }

  .desktop\:right-5{
    right: 1.25rem;
  }

  .desktop\:right-6{
    right: 1.5rem;
  }

  .desktop\:right-7{
    right: 1.75rem;
  }

  .desktop\:right-8{
    right: 2rem;
  }

  .desktop\:right-9{
    right: 2.25rem;
  }

  .desktop\:right-10{
    right: 2.5rem;
  }

  .desktop\:right-11{
    right: 2.75rem;
  }

  .desktop\:right-12{
    right: 3rem;
  }

  .desktop\:right-14{
    right: 3.5rem;
  }

  .desktop\:right-16{
    right: 4rem;
  }

  .desktop\:right-20{
    right: 5rem;
  }

  .desktop\:right-24{
    right: 6rem;
  }

  .desktop\:right-28{
    right: 7rem;
  }

  .desktop\:right-32{
    right: 8rem;
  }

  .desktop\:right-36{
    right: 9rem;
  }

  .desktop\:right-40{
    right: 10rem;
  }

  .desktop\:right-44{
    right: 11rem;
  }

  .desktop\:right-48{
    right: 12rem;
  }

  .desktop\:right-52{
    right: 13rem;
  }

  .desktop\:right-56{
    right: 14rem;
  }

  .desktop\:right-60{
    right: 15rem;
  }

  .desktop\:right-64{
    right: 16rem;
  }

  .desktop\:right-72{
    right: 18rem;
  }

  .desktop\:right-80{
    right: 20rem;
  }

  .desktop\:right-96{
    right: 24rem;
  }

  .desktop\:right-auto{
    right: auto;
  }

  .desktop\:right-px{
    right: 1px;
  }

  .desktop\:right-0\.5{
    right: 0.125rem;
  }

  .desktop\:right-1\.5{
    right: 0.375rem;
  }

  .desktop\:right-2\.5{
    right: 0.625rem;
  }

  .desktop\:right-3\.5{
    right: 0.875rem;
  }

  .desktop\:-right-0{
    right: 0px;
  }

  .desktop\:-right-1{
    right: -0.25rem;
  }

  .desktop\:-right-2{
    right: -0.5rem;
  }

  .desktop\:-right-3{
    right: -0.75rem;
  }

  .desktop\:-right-4{
    right: -1rem;
  }

  .desktop\:-right-5{
    right: -1.25rem;
  }

  .desktop\:-right-6{
    right: -1.5rem;
  }

  .desktop\:-right-7{
    right: -1.75rem;
  }

  .desktop\:-right-8{
    right: -2rem;
  }

  .desktop\:-right-9{
    right: -2.25rem;
  }

  .desktop\:-right-10{
    right: -2.5rem;
  }

  .desktop\:-right-11{
    right: -2.75rem;
  }

  .desktop\:-right-12{
    right: -3rem;
  }

  .desktop\:-right-14{
    right: -3.5rem;
  }

  .desktop\:-right-16{
    right: -4rem;
  }

  .desktop\:-right-20{
    right: -5rem;
  }

  .desktop\:-right-24{
    right: -6rem;
  }

  .desktop\:-right-28{
    right: -7rem;
  }

  .desktop\:-right-32{
    right: -8rem;
  }

  .desktop\:-right-36{
    right: -9rem;
  }

  .desktop\:-right-40{
    right: -10rem;
  }

  .desktop\:-right-44{
    right: -11rem;
  }

  .desktop\:-right-48{
    right: -12rem;
  }

  .desktop\:-right-52{
    right: -13rem;
  }

  .desktop\:-right-56{
    right: -14rem;
  }

  .desktop\:-right-60{
    right: -15rem;
  }

  .desktop\:-right-64{
    right: -16rem;
  }

  .desktop\:-right-72{
    right: -18rem;
  }

  .desktop\:-right-80{
    right: -20rem;
  }

  .desktop\:-right-96{
    right: -24rem;
  }

  .desktop\:-right-px{
    right: -1px;
  }

  .desktop\:-right-0\.5{
    right: -0.125rem;
  }

  .desktop\:-right-1\.5{
    right: -0.375rem;
  }

  .desktop\:-right-2\.5{
    right: -0.625rem;
  }

  .desktop\:-right-3\.5{
    right: -0.875rem;
  }

  .desktop\:right-1\/2{
    right: 50%;
  }

  .desktop\:right-1\/3{
    right: 33.333333%;
  }

  .desktop\:right-2\/3{
    right: 66.666667%;
  }

  .desktop\:right-1\/4{
    right: 25%;
  }

  .desktop\:right-2\/4{
    right: 50%;
  }

  .desktop\:right-3\/4{
    right: 75%;
  }

  .desktop\:right-full{
    right: 100%;
  }

  .desktop\:-right-1\/2{
    right: -50%;
  }

  .desktop\:-right-1\/3{
    right: -33.333333%;
  }

  .desktop\:-right-2\/3{
    right: -66.666667%;
  }

  .desktop\:-right-1\/4{
    right: -25%;
  }

  .desktop\:-right-2\/4{
    right: -50%;
  }

  .desktop\:-right-3\/4{
    right: -75%;
  }

  .desktop\:-right-full{
    right: -100%;
  }

  .desktop\:bottom-0{
    bottom: 0px;
  }

  .desktop\:bottom-1{
    bottom: 0.25rem;
  }

  .desktop\:bottom-2{
    bottom: 0.5rem;
  }

  .desktop\:bottom-3{
    bottom: 0.75rem;
  }

  .desktop\:bottom-4{
    bottom: 1rem;
  }

  .desktop\:bottom-5{
    bottom: 1.25rem;
  }

  .desktop\:bottom-6{
    bottom: 1.5rem;
  }

  .desktop\:bottom-7{
    bottom: 1.75rem;
  }

  .desktop\:bottom-8{
    bottom: 2rem;
  }

  .desktop\:bottom-9{
    bottom: 2.25rem;
  }

  .desktop\:bottom-10{
    bottom: 2.5rem;
  }

  .desktop\:bottom-11{
    bottom: 2.75rem;
  }

  .desktop\:bottom-12{
    bottom: 3rem;
  }

  .desktop\:bottom-14{
    bottom: 3.5rem;
  }

  .desktop\:bottom-16{
    bottom: 4rem;
  }

  .desktop\:bottom-20{
    bottom: 5rem;
  }

  .desktop\:bottom-24{
    bottom: 6rem;
  }

  .desktop\:bottom-28{
    bottom: 7rem;
  }

  .desktop\:bottom-32{
    bottom: 8rem;
  }

  .desktop\:bottom-36{
    bottom: 9rem;
  }

  .desktop\:bottom-40{
    bottom: 10rem;
  }

  .desktop\:bottom-44{
    bottom: 11rem;
  }

  .desktop\:bottom-48{
    bottom: 12rem;
  }

  .desktop\:bottom-52{
    bottom: 13rem;
  }

  .desktop\:bottom-56{
    bottom: 14rem;
  }

  .desktop\:bottom-60{
    bottom: 15rem;
  }

  .desktop\:bottom-64{
    bottom: 16rem;
  }

  .desktop\:bottom-72{
    bottom: 18rem;
  }

  .desktop\:bottom-80{
    bottom: 20rem;
  }

  .desktop\:bottom-96{
    bottom: 24rem;
  }

  .desktop\:bottom-auto{
    bottom: auto;
  }

  .desktop\:bottom-px{
    bottom: 1px;
  }

  .desktop\:bottom-0\.5{
    bottom: 0.125rem;
  }

  .desktop\:bottom-1\.5{
    bottom: 0.375rem;
  }

  .desktop\:bottom-2\.5{
    bottom: 0.625rem;
  }

  .desktop\:bottom-3\.5{
    bottom: 0.875rem;
  }

  .desktop\:-bottom-0{
    bottom: 0px;
  }

  .desktop\:-bottom-1{
    bottom: -0.25rem;
  }

  .desktop\:-bottom-2{
    bottom: -0.5rem;
  }

  .desktop\:-bottom-3{
    bottom: -0.75rem;
  }

  .desktop\:-bottom-4{
    bottom: -1rem;
  }

  .desktop\:-bottom-5{
    bottom: -1.25rem;
  }

  .desktop\:-bottom-6{
    bottom: -1.5rem;
  }

  .desktop\:-bottom-7{
    bottom: -1.75rem;
  }

  .desktop\:-bottom-8{
    bottom: -2rem;
  }

  .desktop\:-bottom-9{
    bottom: -2.25rem;
  }

  .desktop\:-bottom-10{
    bottom: -2.5rem;
  }

  .desktop\:-bottom-11{
    bottom: -2.75rem;
  }

  .desktop\:-bottom-12{
    bottom: -3rem;
  }

  .desktop\:-bottom-14{
    bottom: -3.5rem;
  }

  .desktop\:-bottom-16{
    bottom: -4rem;
  }

  .desktop\:-bottom-20{
    bottom: -5rem;
  }

  .desktop\:-bottom-24{
    bottom: -6rem;
  }

  .desktop\:-bottom-28{
    bottom: -7rem;
  }

  .desktop\:-bottom-32{
    bottom: -8rem;
  }

  .desktop\:-bottom-36{
    bottom: -9rem;
  }

  .desktop\:-bottom-40{
    bottom: -10rem;
  }

  .desktop\:-bottom-44{
    bottom: -11rem;
  }

  .desktop\:-bottom-48{
    bottom: -12rem;
  }

  .desktop\:-bottom-52{
    bottom: -13rem;
  }

  .desktop\:-bottom-56{
    bottom: -14rem;
  }

  .desktop\:-bottom-60{
    bottom: -15rem;
  }

  .desktop\:-bottom-64{
    bottom: -16rem;
  }

  .desktop\:-bottom-72{
    bottom: -18rem;
  }

  .desktop\:-bottom-80{
    bottom: -20rem;
  }

  .desktop\:-bottom-96{
    bottom: -24rem;
  }

  .desktop\:-bottom-px{
    bottom: -1px;
  }

  .desktop\:-bottom-0\.5{
    bottom: -0.125rem;
  }

  .desktop\:-bottom-1\.5{
    bottom: -0.375rem;
  }

  .desktop\:-bottom-2\.5{
    bottom: -0.625rem;
  }

  .desktop\:-bottom-3\.5{
    bottom: -0.875rem;
  }

  .desktop\:bottom-1\/2{
    bottom: 50%;
  }

  .desktop\:bottom-1\/3{
    bottom: 33.333333%;
  }

  .desktop\:bottom-2\/3{
    bottom: 66.666667%;
  }

  .desktop\:bottom-1\/4{
    bottom: 25%;
  }

  .desktop\:bottom-2\/4{
    bottom: 50%;
  }

  .desktop\:bottom-3\/4{
    bottom: 75%;
  }

  .desktop\:bottom-full{
    bottom: 100%;
  }

  .desktop\:-bottom-1\/2{
    bottom: -50%;
  }

  .desktop\:-bottom-1\/3{
    bottom: -33.333333%;
  }

  .desktop\:-bottom-2\/3{
    bottom: -66.666667%;
  }

  .desktop\:-bottom-1\/4{
    bottom: -25%;
  }

  .desktop\:-bottom-2\/4{
    bottom: -50%;
  }

  .desktop\:-bottom-3\/4{
    bottom: -75%;
  }

  .desktop\:-bottom-full{
    bottom: -100%;
  }

  .desktop\:left-0{
    left: 0px;
  }

  .desktop\:left-1{
    left: 0.25rem;
  }

  .desktop\:left-2{
    left: 0.5rem;
  }

  .desktop\:left-3{
    left: 0.75rem;
  }

  .desktop\:left-4{
    left: 1rem;
  }

  .desktop\:left-5{
    left: 1.25rem;
  }

  .desktop\:left-6{
    left: 1.5rem;
  }

  .desktop\:left-7{
    left: 1.75rem;
  }

  .desktop\:left-8{
    left: 2rem;
  }

  .desktop\:left-9{
    left: 2.25rem;
  }

  .desktop\:left-10{
    left: 2.5rem;
  }

  .desktop\:left-11{
    left: 2.75rem;
  }

  .desktop\:left-12{
    left: 3rem;
  }

  .desktop\:left-14{
    left: 3.5rem;
  }

  .desktop\:left-16{
    left: 4rem;
  }

  .desktop\:left-20{
    left: 5rem;
  }

  .desktop\:left-24{
    left: 6rem;
  }

  .desktop\:left-28{
    left: 7rem;
  }

  .desktop\:left-32{
    left: 8rem;
  }

  .desktop\:left-36{
    left: 9rem;
  }

  .desktop\:left-40{
    left: 10rem;
  }

  .desktop\:left-44{
    left: 11rem;
  }

  .desktop\:left-48{
    left: 12rem;
  }

  .desktop\:left-52{
    left: 13rem;
  }

  .desktop\:left-56{
    left: 14rem;
  }

  .desktop\:left-60{
    left: 15rem;
  }

  .desktop\:left-64{
    left: 16rem;
  }

  .desktop\:left-72{
    left: 18rem;
  }

  .desktop\:left-80{
    left: 20rem;
  }

  .desktop\:left-96{
    left: 24rem;
  }

  .desktop\:left-auto{
    left: auto;
  }

  .desktop\:left-px{
    left: 1px;
  }

  .desktop\:left-0\.5{
    left: 0.125rem;
  }

  .desktop\:left-1\.5{
    left: 0.375rem;
  }

  .desktop\:left-2\.5{
    left: 0.625rem;
  }

  .desktop\:left-3\.5{
    left: 0.875rem;
  }

  .desktop\:-left-0{
    left: 0px;
  }

  .desktop\:-left-1{
    left: -0.25rem;
  }

  .desktop\:-left-2{
    left: -0.5rem;
  }

  .desktop\:-left-3{
    left: -0.75rem;
  }

  .desktop\:-left-4{
    left: -1rem;
  }

  .desktop\:-left-5{
    left: -1.25rem;
  }

  .desktop\:-left-6{
    left: -1.5rem;
  }

  .desktop\:-left-7{
    left: -1.75rem;
  }

  .desktop\:-left-8{
    left: -2rem;
  }

  .desktop\:-left-9{
    left: -2.25rem;
  }

  .desktop\:-left-10{
    left: -2.5rem;
  }

  .desktop\:-left-11{
    left: -2.75rem;
  }

  .desktop\:-left-12{
    left: -3rem;
  }

  .desktop\:-left-14{
    left: -3.5rem;
  }

  .desktop\:-left-16{
    left: -4rem;
  }

  .desktop\:-left-20{
    left: -5rem;
  }

  .desktop\:-left-24{
    left: -6rem;
  }

  .desktop\:-left-28{
    left: -7rem;
  }

  .desktop\:-left-32{
    left: -8rem;
  }

  .desktop\:-left-36{
    left: -9rem;
  }

  .desktop\:-left-40{
    left: -10rem;
  }

  .desktop\:-left-44{
    left: -11rem;
  }

  .desktop\:-left-48{
    left: -12rem;
  }

  .desktop\:-left-52{
    left: -13rem;
  }

  .desktop\:-left-56{
    left: -14rem;
  }

  .desktop\:-left-60{
    left: -15rem;
  }

  .desktop\:-left-64{
    left: -16rem;
  }

  .desktop\:-left-72{
    left: -18rem;
  }

  .desktop\:-left-80{
    left: -20rem;
  }

  .desktop\:-left-96{
    left: -24rem;
  }

  .desktop\:-left-px{
    left: -1px;
  }

  .desktop\:-left-0\.5{
    left: -0.125rem;
  }

  .desktop\:-left-1\.5{
    left: -0.375rem;
  }

  .desktop\:-left-2\.5{
    left: -0.625rem;
  }

  .desktop\:-left-3\.5{
    left: -0.875rem;
  }

  .desktop\:left-1\/2{
    left: 50%;
  }

  .desktop\:left-1\/3{
    left: 33.333333%;
  }

  .desktop\:left-2\/3{
    left: 66.666667%;
  }

  .desktop\:left-1\/4{
    left: 25%;
  }

  .desktop\:left-2\/4{
    left: 50%;
  }

  .desktop\:left-3\/4{
    left: 75%;
  }

  .desktop\:left-full{
    left: 100%;
  }

  .desktop\:-left-1\/2{
    left: -50%;
  }

  .desktop\:-left-1\/3{
    left: -33.333333%;
  }

  .desktop\:-left-2\/3{
    left: -66.666667%;
  }

  .desktop\:-left-1\/4{
    left: -25%;
  }

  .desktop\:-left-2\/4{
    left: -50%;
  }

  .desktop\:-left-3\/4{
    left: -75%;
  }

  .desktop\:-left-full{
    left: -100%;
  }

  .desktop\:isolate{
    isolation: isolate;
  }

  .desktop\:isolation-auto{
    isolation: auto;
  }

  .desktop\:z-0{
    z-index: 0;
  }

  .desktop\:z-10{
    z-index: 10;
  }

  .desktop\:z-20{
    z-index: 20;
  }

  .desktop\:z-30{
    z-index: 30;
  }

  .desktop\:z-40{
    z-index: 40;
  }

  .desktop\:z-50{
    z-index: 50;
  }

  .desktop\:z-60{
    z-index: 60;
  }

  .desktop\:z-70{
    z-index: 70;
  }

  .desktop\:z-80{
    z-index: 80;
  }

  .desktop\:z-90{
    z-index: 90;
  }

  .desktop\:z-100{
    z-index: 100;
  }

  .desktop\:z-auto{
    z-index: auto;
  }

  .desktop\:focus-within\:z-0:focus-within{
    z-index: 0;
  }

  .desktop\:focus-within\:z-10:focus-within{
    z-index: 10;
  }

  .desktop\:focus-within\:z-20:focus-within{
    z-index: 20;
  }

  .desktop\:focus-within\:z-30:focus-within{
    z-index: 30;
  }

  .desktop\:focus-within\:z-40:focus-within{
    z-index: 40;
  }

  .desktop\:focus-within\:z-50:focus-within{
    z-index: 50;
  }

  .desktop\:focus-within\:z-60:focus-within{
    z-index: 60;
  }

  .desktop\:focus-within\:z-70:focus-within{
    z-index: 70;
  }

  .desktop\:focus-within\:z-80:focus-within{
    z-index: 80;
  }

  .desktop\:focus-within\:z-90:focus-within{
    z-index: 90;
  }

  .desktop\:focus-within\:z-100:focus-within{
    z-index: 100;
  }

  .desktop\:focus-within\:z-auto:focus-within{
    z-index: auto;
  }

  .desktop\:focus\:z-0:focus{
    z-index: 0;
  }

  .desktop\:focus\:z-10:focus{
    z-index: 10;
  }

  .desktop\:focus\:z-20:focus{
    z-index: 20;
  }

  .desktop\:focus\:z-30:focus{
    z-index: 30;
  }

  .desktop\:focus\:z-40:focus{
    z-index: 40;
  }

  .desktop\:focus\:z-50:focus{
    z-index: 50;
  }

  .desktop\:focus\:z-60:focus{
    z-index: 60;
  }

  .desktop\:focus\:z-70:focus{
    z-index: 70;
  }

  .desktop\:focus\:z-80:focus{
    z-index: 80;
  }

  .desktop\:focus\:z-90:focus{
    z-index: 90;
  }

  .desktop\:focus\:z-100:focus{
    z-index: 100;
  }

  .desktop\:focus\:z-auto:focus{
    z-index: auto;
  }

  .desktop\:order-1{
    order: 1;
  }

  .desktop\:order-2{
    order: 2;
  }

  .desktop\:order-3{
    order: 3;
  }

  .desktop\:order-4{
    order: 4;
  }

  .desktop\:order-5{
    order: 5;
  }

  .desktop\:order-6{
    order: 6;
  }

  .desktop\:order-7{
    order: 7;
  }

  .desktop\:order-8{
    order: 8;
  }

  .desktop\:order-9{
    order: 9;
  }

  .desktop\:order-10{
    order: 10;
  }

  .desktop\:order-11{
    order: 11;
  }

  .desktop\:order-12{
    order: 12;
  }

  .desktop\:order-first{
    order: -9999;
  }

  .desktop\:order-last{
    order: 9999;
  }

  .desktop\:order-none{
    order: 0;
  }

  .desktop\:col-auto{
    grid-column: auto;
  }

  .desktop\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .desktop\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .desktop\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .desktop\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .desktop\:col-span-5{
    grid-column: span 5 / span 5;
  }

  .desktop\:col-span-6{
    grid-column: span 6 / span 6;
  }

  .desktop\:col-span-7{
    grid-column: span 7 / span 7;
  }

  .desktop\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .desktop\:col-span-9{
    grid-column: span 9 / span 9;
  }

  .desktop\:col-span-10{
    grid-column: span 10 / span 10;
  }

  .desktop\:col-span-11{
    grid-column: span 11 / span 11;
  }

  .desktop\:col-span-12{
    grid-column: span 12 / span 12;
  }

  .desktop\:col-span-full{
    grid-column: 1 / -1;
  }

  .desktop\:col-start-1{
    grid-column-start: 1;
  }

  .desktop\:col-start-2{
    grid-column-start: 2;
  }

  .desktop\:col-start-3{
    grid-column-start: 3;
  }

  .desktop\:col-start-4{
    grid-column-start: 4;
  }

  .desktop\:col-start-5{
    grid-column-start: 5;
  }

  .desktop\:col-start-6{
    grid-column-start: 6;
  }

  .desktop\:col-start-7{
    grid-column-start: 7;
  }

  .desktop\:col-start-8{
    grid-column-start: 8;
  }

  .desktop\:col-start-9{
    grid-column-start: 9;
  }

  .desktop\:col-start-10{
    grid-column-start: 10;
  }

  .desktop\:col-start-11{
    grid-column-start: 11;
  }

  .desktop\:col-start-12{
    grid-column-start: 12;
  }

  .desktop\:col-start-13{
    grid-column-start: 13;
  }

  .desktop\:col-start-auto{
    grid-column-start: auto;
  }

  .desktop\:col-end-1{
    grid-column-end: 1;
  }

  .desktop\:col-end-2{
    grid-column-end: 2;
  }

  .desktop\:col-end-3{
    grid-column-end: 3;
  }

  .desktop\:col-end-4{
    grid-column-end: 4;
  }

  .desktop\:col-end-5{
    grid-column-end: 5;
  }

  .desktop\:col-end-6{
    grid-column-end: 6;
  }

  .desktop\:col-end-7{
    grid-column-end: 7;
  }

  .desktop\:col-end-8{
    grid-column-end: 8;
  }

  .desktop\:col-end-9{
    grid-column-end: 9;
  }

  .desktop\:col-end-10{
    grid-column-end: 10;
  }

  .desktop\:col-end-11{
    grid-column-end: 11;
  }

  .desktop\:col-end-12{
    grid-column-end: 12;
  }

  .desktop\:col-end-13{
    grid-column-end: 13;
  }

  .desktop\:col-end-auto{
    grid-column-end: auto;
  }

  .desktop\:row-auto{
    grid-row: auto;
  }

  .desktop\:row-span-1{
    grid-row: span 1 / span 1;
  }

  .desktop\:row-span-2{
    grid-row: span 2 / span 2;
  }

  .desktop\:row-span-3{
    grid-row: span 3 / span 3;
  }

  .desktop\:row-span-4{
    grid-row: span 4 / span 4;
  }

  .desktop\:row-span-5{
    grid-row: span 5 / span 5;
  }

  .desktop\:row-span-6{
    grid-row: span 6 / span 6;
  }

  .desktop\:row-span-full{
    grid-row: 1 / -1;
  }

  .desktop\:row-start-1{
    grid-row-start: 1;
  }

  .desktop\:row-start-2{
    grid-row-start: 2;
  }

  .desktop\:row-start-3{
    grid-row-start: 3;
  }

  .desktop\:row-start-4{
    grid-row-start: 4;
  }

  .desktop\:row-start-5{
    grid-row-start: 5;
  }

  .desktop\:row-start-6{
    grid-row-start: 6;
  }

  .desktop\:row-start-7{
    grid-row-start: 7;
  }

  .desktop\:row-start-auto{
    grid-row-start: auto;
  }

  .desktop\:row-end-1{
    grid-row-end: 1;
  }

  .desktop\:row-end-2{
    grid-row-end: 2;
  }

  .desktop\:row-end-3{
    grid-row-end: 3;
  }

  .desktop\:row-end-4{
    grid-row-end: 4;
  }

  .desktop\:row-end-5{
    grid-row-end: 5;
  }

  .desktop\:row-end-6{
    grid-row-end: 6;
  }

  .desktop\:row-end-7{
    grid-row-end: 7;
  }

  .desktop\:row-end-auto{
    grid-row-end: auto;
  }

  .desktop\:float-right{
    float: right;
  }

  .desktop\:float-left{
    float: left;
  }

  .desktop\:float-none{
    float: none;
  }

  .desktop\:clear-left{
    clear: left;
  }

  .desktop\:clear-right{
    clear: right;
  }

  .desktop\:clear-both{
    clear: both;
  }

  .desktop\:clear-none{
    clear: none;
  }

  .desktop\:m-0{
    margin: 0px;
  }

  .desktop\:m-1{
    margin: 0.25rem;
  }

  .desktop\:m-2{
    margin: 0.5rem;
  }

  .desktop\:m-3{
    margin: 0.75rem;
  }

  .desktop\:m-4{
    margin: 1rem;
  }

  .desktop\:m-5{
    margin: 1.25rem;
  }

  .desktop\:m-6{
    margin: 1.5rem;
  }

  .desktop\:m-7{
    margin: 1.75rem;
  }

  .desktop\:m-8{
    margin: 2rem;
  }

  .desktop\:m-9{
    margin: 2.25rem;
  }

  .desktop\:m-10{
    margin: 2.5rem;
  }

  .desktop\:m-11{
    margin: 2.75rem;
  }

  .desktop\:m-12{
    margin: 3rem;
  }

  .desktop\:m-14{
    margin: 3.5rem;
  }

  .desktop\:m-16{
    margin: 4rem;
  }

  .desktop\:m-20{
    margin: 5rem;
  }

  .desktop\:m-24{
    margin: 6rem;
  }

  .desktop\:m-28{
    margin: 7rem;
  }

  .desktop\:m-32{
    margin: 8rem;
  }

  .desktop\:m-36{
    margin: 9rem;
  }

  .desktop\:m-40{
    margin: 10rem;
  }

  .desktop\:m-44{
    margin: 11rem;
  }

  .desktop\:m-48{
    margin: 12rem;
  }

  .desktop\:m-52{
    margin: 13rem;
  }

  .desktop\:m-56{
    margin: 14rem;
  }

  .desktop\:m-60{
    margin: 15rem;
  }

  .desktop\:m-64{
    margin: 16rem;
  }

  .desktop\:m-72{
    margin: 18rem;
  }

  .desktop\:m-80{
    margin: 20rem;
  }

  .desktop\:m-96{
    margin: 24rem;
  }

  .desktop\:m-auto{
    margin: auto;
  }

  .desktop\:m-px{
    margin: 1px;
  }

  .desktop\:m-0\.5{
    margin: 0.125rem;
  }

  .desktop\:m-1\.5{
    margin: 0.375rem;
  }

  .desktop\:m-2\.5{
    margin: 0.625rem;
  }

  .desktop\:m-3\.5{
    margin: 0.875rem;
  }

  .desktop\:-m-0{
    margin: 0px;
  }

  .desktop\:-m-1{
    margin: -0.25rem;
  }

  .desktop\:-m-2{
    margin: -0.5rem;
  }

  .desktop\:-m-3{
    margin: -0.75rem;
  }

  .desktop\:-m-4{
    margin: -1rem;
  }

  .desktop\:-m-5{
    margin: -1.25rem;
  }

  .desktop\:-m-6{
    margin: -1.5rem;
  }

  .desktop\:-m-7{
    margin: -1.75rem;
  }

  .desktop\:-m-8{
    margin: -2rem;
  }

  .desktop\:-m-9{
    margin: -2.25rem;
  }

  .desktop\:-m-10{
    margin: -2.5rem;
  }

  .desktop\:-m-11{
    margin: -2.75rem;
  }

  .desktop\:-m-12{
    margin: -3rem;
  }

  .desktop\:-m-14{
    margin: -3.5rem;
  }

  .desktop\:-m-16{
    margin: -4rem;
  }

  .desktop\:-m-20{
    margin: -5rem;
  }

  .desktop\:-m-24{
    margin: -6rem;
  }

  .desktop\:-m-28{
    margin: -7rem;
  }

  .desktop\:-m-32{
    margin: -8rem;
  }

  .desktop\:-m-36{
    margin: -9rem;
  }

  .desktop\:-m-40{
    margin: -10rem;
  }

  .desktop\:-m-44{
    margin: -11rem;
  }

  .desktop\:-m-48{
    margin: -12rem;
  }

  .desktop\:-m-52{
    margin: -13rem;
  }

  .desktop\:-m-56{
    margin: -14rem;
  }

  .desktop\:-m-60{
    margin: -15rem;
  }

  .desktop\:-m-64{
    margin: -16rem;
  }

  .desktop\:-m-72{
    margin: -18rem;
  }

  .desktop\:-m-80{
    margin: -20rem;
  }

  .desktop\:-m-96{
    margin: -24rem;
  }

  .desktop\:-m-px{
    margin: -1px;
  }

  .desktop\:-m-0\.5{
    margin: -0.125rem;
  }

  .desktop\:-m-1\.5{
    margin: -0.375rem;
  }

  .desktop\:-m-2\.5{
    margin: -0.625rem;
  }

  .desktop\:-m-3\.5{
    margin: -0.875rem;
  }

  .desktop\:m-neg1{
    margin: -.25rem;
  }

  .desktop\:m-neg2{
    margin: -.5rem;
  }

  .desktop\:m-neg4{
    margin: -1.0rem;
  }

  .desktop\:m-neg6{
    margin: -1.5rem;
  }

  .desktop\:m-neg12{
    margin: -3rem;
  }

  .desktop\:m-neg20{
    margin: -5rem;
  }

  .desktop\:last\:m-0:last-child{
    margin: 0px;
  }

  .desktop\:last\:m-1:last-child{
    margin: 0.25rem;
  }

  .desktop\:last\:m-2:last-child{
    margin: 0.5rem;
  }

  .desktop\:last\:m-3:last-child{
    margin: 0.75rem;
  }

  .desktop\:last\:m-4:last-child{
    margin: 1rem;
  }

  .desktop\:last\:m-5:last-child{
    margin: 1.25rem;
  }

  .desktop\:last\:m-6:last-child{
    margin: 1.5rem;
  }

  .desktop\:last\:m-7:last-child{
    margin: 1.75rem;
  }

  .desktop\:last\:m-8:last-child{
    margin: 2rem;
  }

  .desktop\:last\:m-9:last-child{
    margin: 2.25rem;
  }

  .desktop\:last\:m-10:last-child{
    margin: 2.5rem;
  }

  .desktop\:last\:m-11:last-child{
    margin: 2.75rem;
  }

  .desktop\:last\:m-12:last-child{
    margin: 3rem;
  }

  .desktop\:last\:m-14:last-child{
    margin: 3.5rem;
  }

  .desktop\:last\:m-16:last-child{
    margin: 4rem;
  }

  .desktop\:last\:m-20:last-child{
    margin: 5rem;
  }

  .desktop\:last\:m-24:last-child{
    margin: 6rem;
  }

  .desktop\:last\:m-28:last-child{
    margin: 7rem;
  }

  .desktop\:last\:m-32:last-child{
    margin: 8rem;
  }

  .desktop\:last\:m-36:last-child{
    margin: 9rem;
  }

  .desktop\:last\:m-40:last-child{
    margin: 10rem;
  }

  .desktop\:last\:m-44:last-child{
    margin: 11rem;
  }

  .desktop\:last\:m-48:last-child{
    margin: 12rem;
  }

  .desktop\:last\:m-52:last-child{
    margin: 13rem;
  }

  .desktop\:last\:m-56:last-child{
    margin: 14rem;
  }

  .desktop\:last\:m-60:last-child{
    margin: 15rem;
  }

  .desktop\:last\:m-64:last-child{
    margin: 16rem;
  }

  .desktop\:last\:m-72:last-child{
    margin: 18rem;
  }

  .desktop\:last\:m-80:last-child{
    margin: 20rem;
  }

  .desktop\:last\:m-96:last-child{
    margin: 24rem;
  }

  .desktop\:last\:m-auto:last-child{
    margin: auto;
  }

  .desktop\:last\:m-px:last-child{
    margin: 1px;
  }

  .desktop\:last\:m-0\.5:last-child{
    margin: 0.125rem;
  }

  .desktop\:last\:m-1\.5:last-child{
    margin: 0.375rem;
  }

  .desktop\:last\:m-2\.5:last-child{
    margin: 0.625rem;
  }

  .desktop\:last\:m-3\.5:last-child{
    margin: 0.875rem;
  }

  .desktop\:last\:-m-0:last-child{
    margin: 0px;
  }

  .desktop\:last\:-m-1:last-child{
    margin: -0.25rem;
  }

  .desktop\:last\:-m-2:last-child{
    margin: -0.5rem;
  }

  .desktop\:last\:-m-3:last-child{
    margin: -0.75rem;
  }

  .desktop\:last\:-m-4:last-child{
    margin: -1rem;
  }

  .desktop\:last\:-m-5:last-child{
    margin: -1.25rem;
  }

  .desktop\:last\:-m-6:last-child{
    margin: -1.5rem;
  }

  .desktop\:last\:-m-7:last-child{
    margin: -1.75rem;
  }

  .desktop\:last\:-m-8:last-child{
    margin: -2rem;
  }

  .desktop\:last\:-m-9:last-child{
    margin: -2.25rem;
  }

  .desktop\:last\:-m-10:last-child{
    margin: -2.5rem;
  }

  .desktop\:last\:-m-11:last-child{
    margin: -2.75rem;
  }

  .desktop\:last\:-m-12:last-child{
    margin: -3rem;
  }

  .desktop\:last\:-m-14:last-child{
    margin: -3.5rem;
  }

  .desktop\:last\:-m-16:last-child{
    margin: -4rem;
  }

  .desktop\:last\:-m-20:last-child{
    margin: -5rem;
  }

  .desktop\:last\:-m-24:last-child{
    margin: -6rem;
  }

  .desktop\:last\:-m-28:last-child{
    margin: -7rem;
  }

  .desktop\:last\:-m-32:last-child{
    margin: -8rem;
  }

  .desktop\:last\:-m-36:last-child{
    margin: -9rem;
  }

  .desktop\:last\:-m-40:last-child{
    margin: -10rem;
  }

  .desktop\:last\:-m-44:last-child{
    margin: -11rem;
  }

  .desktop\:last\:-m-48:last-child{
    margin: -12rem;
  }

  .desktop\:last\:-m-52:last-child{
    margin: -13rem;
  }

  .desktop\:last\:-m-56:last-child{
    margin: -14rem;
  }

  .desktop\:last\:-m-60:last-child{
    margin: -15rem;
  }

  .desktop\:last\:-m-64:last-child{
    margin: -16rem;
  }

  .desktop\:last\:-m-72:last-child{
    margin: -18rem;
  }

  .desktop\:last\:-m-80:last-child{
    margin: -20rem;
  }

  .desktop\:last\:-m-96:last-child{
    margin: -24rem;
  }

  .desktop\:last\:-m-px:last-child{
    margin: -1px;
  }

  .desktop\:last\:-m-0\.5:last-child{
    margin: -0.125rem;
  }

  .desktop\:last\:-m-1\.5:last-child{
    margin: -0.375rem;
  }

  .desktop\:last\:-m-2\.5:last-child{
    margin: -0.625rem;
  }

  .desktop\:last\:-m-3\.5:last-child{
    margin: -0.875rem;
  }

  .desktop\:last\:m-neg1:last-child{
    margin: -.25rem;
  }

  .desktop\:last\:m-neg2:last-child{
    margin: -.5rem;
  }

  .desktop\:last\:m-neg4:last-child{
    margin: -1.0rem;
  }

  .desktop\:last\:m-neg6:last-child{
    margin: -1.5rem;
  }

  .desktop\:last\:m-neg12:last-child{
    margin: -3rem;
  }

  .desktop\:last\:m-neg20:last-child{
    margin: -5rem;
  }

  .desktop\:hover\:m-0:hover{
    margin: 0px;
  }

  .desktop\:hover\:m-1:hover{
    margin: 0.25rem;
  }

  .desktop\:hover\:m-2:hover{
    margin: 0.5rem;
  }

  .desktop\:hover\:m-3:hover{
    margin: 0.75rem;
  }

  .desktop\:hover\:m-4:hover{
    margin: 1rem;
  }

  .desktop\:hover\:m-5:hover{
    margin: 1.25rem;
  }

  .desktop\:hover\:m-6:hover{
    margin: 1.5rem;
  }

  .desktop\:hover\:m-7:hover{
    margin: 1.75rem;
  }

  .desktop\:hover\:m-8:hover{
    margin: 2rem;
  }

  .desktop\:hover\:m-9:hover{
    margin: 2.25rem;
  }

  .desktop\:hover\:m-10:hover{
    margin: 2.5rem;
  }

  .desktop\:hover\:m-11:hover{
    margin: 2.75rem;
  }

  .desktop\:hover\:m-12:hover{
    margin: 3rem;
  }

  .desktop\:hover\:m-14:hover{
    margin: 3.5rem;
  }

  .desktop\:hover\:m-16:hover{
    margin: 4rem;
  }

  .desktop\:hover\:m-20:hover{
    margin: 5rem;
  }

  .desktop\:hover\:m-24:hover{
    margin: 6rem;
  }

  .desktop\:hover\:m-28:hover{
    margin: 7rem;
  }

  .desktop\:hover\:m-32:hover{
    margin: 8rem;
  }

  .desktop\:hover\:m-36:hover{
    margin: 9rem;
  }

  .desktop\:hover\:m-40:hover{
    margin: 10rem;
  }

  .desktop\:hover\:m-44:hover{
    margin: 11rem;
  }

  .desktop\:hover\:m-48:hover{
    margin: 12rem;
  }

  .desktop\:hover\:m-52:hover{
    margin: 13rem;
  }

  .desktop\:hover\:m-56:hover{
    margin: 14rem;
  }

  .desktop\:hover\:m-60:hover{
    margin: 15rem;
  }

  .desktop\:hover\:m-64:hover{
    margin: 16rem;
  }

  .desktop\:hover\:m-72:hover{
    margin: 18rem;
  }

  .desktop\:hover\:m-80:hover{
    margin: 20rem;
  }

  .desktop\:hover\:m-96:hover{
    margin: 24rem;
  }

  .desktop\:hover\:m-auto:hover{
    margin: auto;
  }

  .desktop\:hover\:m-px:hover{
    margin: 1px;
  }

  .desktop\:hover\:m-0\.5:hover{
    margin: 0.125rem;
  }

  .desktop\:hover\:m-1\.5:hover{
    margin: 0.375rem;
  }

  .desktop\:hover\:m-2\.5:hover{
    margin: 0.625rem;
  }

  .desktop\:hover\:m-3\.5:hover{
    margin: 0.875rem;
  }

  .desktop\:hover\:-m-0:hover{
    margin: 0px;
  }

  .desktop\:hover\:-m-1:hover{
    margin: -0.25rem;
  }

  .desktop\:hover\:-m-2:hover{
    margin: -0.5rem;
  }

  .desktop\:hover\:-m-3:hover{
    margin: -0.75rem;
  }

  .desktop\:hover\:-m-4:hover{
    margin: -1rem;
  }

  .desktop\:hover\:-m-5:hover{
    margin: -1.25rem;
  }

  .desktop\:hover\:-m-6:hover{
    margin: -1.5rem;
  }

  .desktop\:hover\:-m-7:hover{
    margin: -1.75rem;
  }

  .desktop\:hover\:-m-8:hover{
    margin: -2rem;
  }

  .desktop\:hover\:-m-9:hover{
    margin: -2.25rem;
  }

  .desktop\:hover\:-m-10:hover{
    margin: -2.5rem;
  }

  .desktop\:hover\:-m-11:hover{
    margin: -2.75rem;
  }

  .desktop\:hover\:-m-12:hover{
    margin: -3rem;
  }

  .desktop\:hover\:-m-14:hover{
    margin: -3.5rem;
  }

  .desktop\:hover\:-m-16:hover{
    margin: -4rem;
  }

  .desktop\:hover\:-m-20:hover{
    margin: -5rem;
  }

  .desktop\:hover\:-m-24:hover{
    margin: -6rem;
  }

  .desktop\:hover\:-m-28:hover{
    margin: -7rem;
  }

  .desktop\:hover\:-m-32:hover{
    margin: -8rem;
  }

  .desktop\:hover\:-m-36:hover{
    margin: -9rem;
  }

  .desktop\:hover\:-m-40:hover{
    margin: -10rem;
  }

  .desktop\:hover\:-m-44:hover{
    margin: -11rem;
  }

  .desktop\:hover\:-m-48:hover{
    margin: -12rem;
  }

  .desktop\:hover\:-m-52:hover{
    margin: -13rem;
  }

  .desktop\:hover\:-m-56:hover{
    margin: -14rem;
  }

  .desktop\:hover\:-m-60:hover{
    margin: -15rem;
  }

  .desktop\:hover\:-m-64:hover{
    margin: -16rem;
  }

  .desktop\:hover\:-m-72:hover{
    margin: -18rem;
  }

  .desktop\:hover\:-m-80:hover{
    margin: -20rem;
  }

  .desktop\:hover\:-m-96:hover{
    margin: -24rem;
  }

  .desktop\:hover\:-m-px:hover{
    margin: -1px;
  }

  .desktop\:hover\:-m-0\.5:hover{
    margin: -0.125rem;
  }

  .desktop\:hover\:-m-1\.5:hover{
    margin: -0.375rem;
  }

  .desktop\:hover\:-m-2\.5:hover{
    margin: -0.625rem;
  }

  .desktop\:hover\:-m-3\.5:hover{
    margin: -0.875rem;
  }

  .desktop\:hover\:m-neg1:hover{
    margin: -.25rem;
  }

  .desktop\:hover\:m-neg2:hover{
    margin: -.5rem;
  }

  .desktop\:hover\:m-neg4:hover{
    margin: -1.0rem;
  }

  .desktop\:hover\:m-neg6:hover{
    margin: -1.5rem;
  }

  .desktop\:hover\:m-neg12:hover{
    margin: -3rem;
  }

  .desktop\:hover\:m-neg20:hover{
    margin: -5rem;
  }

  .desktop\:focus\:m-0:focus{
    margin: 0px;
  }

  .desktop\:focus\:m-1:focus{
    margin: 0.25rem;
  }

  .desktop\:focus\:m-2:focus{
    margin: 0.5rem;
  }

  .desktop\:focus\:m-3:focus{
    margin: 0.75rem;
  }

  .desktop\:focus\:m-4:focus{
    margin: 1rem;
  }

  .desktop\:focus\:m-5:focus{
    margin: 1.25rem;
  }

  .desktop\:focus\:m-6:focus{
    margin: 1.5rem;
  }

  .desktop\:focus\:m-7:focus{
    margin: 1.75rem;
  }

  .desktop\:focus\:m-8:focus{
    margin: 2rem;
  }

  .desktop\:focus\:m-9:focus{
    margin: 2.25rem;
  }

  .desktop\:focus\:m-10:focus{
    margin: 2.5rem;
  }

  .desktop\:focus\:m-11:focus{
    margin: 2.75rem;
  }

  .desktop\:focus\:m-12:focus{
    margin: 3rem;
  }

  .desktop\:focus\:m-14:focus{
    margin: 3.5rem;
  }

  .desktop\:focus\:m-16:focus{
    margin: 4rem;
  }

  .desktop\:focus\:m-20:focus{
    margin: 5rem;
  }

  .desktop\:focus\:m-24:focus{
    margin: 6rem;
  }

  .desktop\:focus\:m-28:focus{
    margin: 7rem;
  }

  .desktop\:focus\:m-32:focus{
    margin: 8rem;
  }

  .desktop\:focus\:m-36:focus{
    margin: 9rem;
  }

  .desktop\:focus\:m-40:focus{
    margin: 10rem;
  }

  .desktop\:focus\:m-44:focus{
    margin: 11rem;
  }

  .desktop\:focus\:m-48:focus{
    margin: 12rem;
  }

  .desktop\:focus\:m-52:focus{
    margin: 13rem;
  }

  .desktop\:focus\:m-56:focus{
    margin: 14rem;
  }

  .desktop\:focus\:m-60:focus{
    margin: 15rem;
  }

  .desktop\:focus\:m-64:focus{
    margin: 16rem;
  }

  .desktop\:focus\:m-72:focus{
    margin: 18rem;
  }

  .desktop\:focus\:m-80:focus{
    margin: 20rem;
  }

  .desktop\:focus\:m-96:focus{
    margin: 24rem;
  }

  .desktop\:focus\:m-auto:focus{
    margin: auto;
  }

  .desktop\:focus\:m-px:focus{
    margin: 1px;
  }

  .desktop\:focus\:m-0\.5:focus{
    margin: 0.125rem;
  }

  .desktop\:focus\:m-1\.5:focus{
    margin: 0.375rem;
  }

  .desktop\:focus\:m-2\.5:focus{
    margin: 0.625rem;
  }

  .desktop\:focus\:m-3\.5:focus{
    margin: 0.875rem;
  }

  .desktop\:focus\:-m-0:focus{
    margin: 0px;
  }

  .desktop\:focus\:-m-1:focus{
    margin: -0.25rem;
  }

  .desktop\:focus\:-m-2:focus{
    margin: -0.5rem;
  }

  .desktop\:focus\:-m-3:focus{
    margin: -0.75rem;
  }

  .desktop\:focus\:-m-4:focus{
    margin: -1rem;
  }

  .desktop\:focus\:-m-5:focus{
    margin: -1.25rem;
  }

  .desktop\:focus\:-m-6:focus{
    margin: -1.5rem;
  }

  .desktop\:focus\:-m-7:focus{
    margin: -1.75rem;
  }

  .desktop\:focus\:-m-8:focus{
    margin: -2rem;
  }

  .desktop\:focus\:-m-9:focus{
    margin: -2.25rem;
  }

  .desktop\:focus\:-m-10:focus{
    margin: -2.5rem;
  }

  .desktop\:focus\:-m-11:focus{
    margin: -2.75rem;
  }

  .desktop\:focus\:-m-12:focus{
    margin: -3rem;
  }

  .desktop\:focus\:-m-14:focus{
    margin: -3.5rem;
  }

  .desktop\:focus\:-m-16:focus{
    margin: -4rem;
  }

  .desktop\:focus\:-m-20:focus{
    margin: -5rem;
  }

  .desktop\:focus\:-m-24:focus{
    margin: -6rem;
  }

  .desktop\:focus\:-m-28:focus{
    margin: -7rem;
  }

  .desktop\:focus\:-m-32:focus{
    margin: -8rem;
  }

  .desktop\:focus\:-m-36:focus{
    margin: -9rem;
  }

  .desktop\:focus\:-m-40:focus{
    margin: -10rem;
  }

  .desktop\:focus\:-m-44:focus{
    margin: -11rem;
  }

  .desktop\:focus\:-m-48:focus{
    margin: -12rem;
  }

  .desktop\:focus\:-m-52:focus{
    margin: -13rem;
  }

  .desktop\:focus\:-m-56:focus{
    margin: -14rem;
  }

  .desktop\:focus\:-m-60:focus{
    margin: -15rem;
  }

  .desktop\:focus\:-m-64:focus{
    margin: -16rem;
  }

  .desktop\:focus\:-m-72:focus{
    margin: -18rem;
  }

  .desktop\:focus\:-m-80:focus{
    margin: -20rem;
  }

  .desktop\:focus\:-m-96:focus{
    margin: -24rem;
  }

  .desktop\:focus\:-m-px:focus{
    margin: -1px;
  }

  .desktop\:focus\:-m-0\.5:focus{
    margin: -0.125rem;
  }

  .desktop\:focus\:-m-1\.5:focus{
    margin: -0.375rem;
  }

  .desktop\:focus\:-m-2\.5:focus{
    margin: -0.625rem;
  }

  .desktop\:focus\:-m-3\.5:focus{
    margin: -0.875rem;
  }

  .desktop\:focus\:m-neg1:focus{
    margin: -.25rem;
  }

  .desktop\:focus\:m-neg2:focus{
    margin: -.5rem;
  }

  .desktop\:focus\:m-neg4:focus{
    margin: -1.0rem;
  }

  .desktop\:focus\:m-neg6:focus{
    margin: -1.5rem;
  }

  .desktop\:focus\:m-neg12:focus{
    margin: -3rem;
  }

  .desktop\:focus\:m-neg20:focus{
    margin: -5rem;
  }

  .desktop\:first\:m-0:first-child{
    margin: 0px;
  }

  .desktop\:first\:m-1:first-child{
    margin: 0.25rem;
  }

  .desktop\:first\:m-2:first-child{
    margin: 0.5rem;
  }

  .desktop\:first\:m-3:first-child{
    margin: 0.75rem;
  }

  .desktop\:first\:m-4:first-child{
    margin: 1rem;
  }

  .desktop\:first\:m-5:first-child{
    margin: 1.25rem;
  }

  .desktop\:first\:m-6:first-child{
    margin: 1.5rem;
  }

  .desktop\:first\:m-7:first-child{
    margin: 1.75rem;
  }

  .desktop\:first\:m-8:first-child{
    margin: 2rem;
  }

  .desktop\:first\:m-9:first-child{
    margin: 2.25rem;
  }

  .desktop\:first\:m-10:first-child{
    margin: 2.5rem;
  }

  .desktop\:first\:m-11:first-child{
    margin: 2.75rem;
  }

  .desktop\:first\:m-12:first-child{
    margin: 3rem;
  }

  .desktop\:first\:m-14:first-child{
    margin: 3.5rem;
  }

  .desktop\:first\:m-16:first-child{
    margin: 4rem;
  }

  .desktop\:first\:m-20:first-child{
    margin: 5rem;
  }

  .desktop\:first\:m-24:first-child{
    margin: 6rem;
  }

  .desktop\:first\:m-28:first-child{
    margin: 7rem;
  }

  .desktop\:first\:m-32:first-child{
    margin: 8rem;
  }

  .desktop\:first\:m-36:first-child{
    margin: 9rem;
  }

  .desktop\:first\:m-40:first-child{
    margin: 10rem;
  }

  .desktop\:first\:m-44:first-child{
    margin: 11rem;
  }

  .desktop\:first\:m-48:first-child{
    margin: 12rem;
  }

  .desktop\:first\:m-52:first-child{
    margin: 13rem;
  }

  .desktop\:first\:m-56:first-child{
    margin: 14rem;
  }

  .desktop\:first\:m-60:first-child{
    margin: 15rem;
  }

  .desktop\:first\:m-64:first-child{
    margin: 16rem;
  }

  .desktop\:first\:m-72:first-child{
    margin: 18rem;
  }

  .desktop\:first\:m-80:first-child{
    margin: 20rem;
  }

  .desktop\:first\:m-96:first-child{
    margin: 24rem;
  }

  .desktop\:first\:m-auto:first-child{
    margin: auto;
  }

  .desktop\:first\:m-px:first-child{
    margin: 1px;
  }

  .desktop\:first\:m-0\.5:first-child{
    margin: 0.125rem;
  }

  .desktop\:first\:m-1\.5:first-child{
    margin: 0.375rem;
  }

  .desktop\:first\:m-2\.5:first-child{
    margin: 0.625rem;
  }

  .desktop\:first\:m-3\.5:first-child{
    margin: 0.875rem;
  }

  .desktop\:first\:-m-0:first-child{
    margin: 0px;
  }

  .desktop\:first\:-m-1:first-child{
    margin: -0.25rem;
  }

  .desktop\:first\:-m-2:first-child{
    margin: -0.5rem;
  }

  .desktop\:first\:-m-3:first-child{
    margin: -0.75rem;
  }

  .desktop\:first\:-m-4:first-child{
    margin: -1rem;
  }

  .desktop\:first\:-m-5:first-child{
    margin: -1.25rem;
  }

  .desktop\:first\:-m-6:first-child{
    margin: -1.5rem;
  }

  .desktop\:first\:-m-7:first-child{
    margin: -1.75rem;
  }

  .desktop\:first\:-m-8:first-child{
    margin: -2rem;
  }

  .desktop\:first\:-m-9:first-child{
    margin: -2.25rem;
  }

  .desktop\:first\:-m-10:first-child{
    margin: -2.5rem;
  }

  .desktop\:first\:-m-11:first-child{
    margin: -2.75rem;
  }

  .desktop\:first\:-m-12:first-child{
    margin: -3rem;
  }

  .desktop\:first\:-m-14:first-child{
    margin: -3.5rem;
  }

  .desktop\:first\:-m-16:first-child{
    margin: -4rem;
  }

  .desktop\:first\:-m-20:first-child{
    margin: -5rem;
  }

  .desktop\:first\:-m-24:first-child{
    margin: -6rem;
  }

  .desktop\:first\:-m-28:first-child{
    margin: -7rem;
  }

  .desktop\:first\:-m-32:first-child{
    margin: -8rem;
  }

  .desktop\:first\:-m-36:first-child{
    margin: -9rem;
  }

  .desktop\:first\:-m-40:first-child{
    margin: -10rem;
  }

  .desktop\:first\:-m-44:first-child{
    margin: -11rem;
  }

  .desktop\:first\:-m-48:first-child{
    margin: -12rem;
  }

  .desktop\:first\:-m-52:first-child{
    margin: -13rem;
  }

  .desktop\:first\:-m-56:first-child{
    margin: -14rem;
  }

  .desktop\:first\:-m-60:first-child{
    margin: -15rem;
  }

  .desktop\:first\:-m-64:first-child{
    margin: -16rem;
  }

  .desktop\:first\:-m-72:first-child{
    margin: -18rem;
  }

  .desktop\:first\:-m-80:first-child{
    margin: -20rem;
  }

  .desktop\:first\:-m-96:first-child{
    margin: -24rem;
  }

  .desktop\:first\:-m-px:first-child{
    margin: -1px;
  }

  .desktop\:first\:-m-0\.5:first-child{
    margin: -0.125rem;
  }

  .desktop\:first\:-m-1\.5:first-child{
    margin: -0.375rem;
  }

  .desktop\:first\:-m-2\.5:first-child{
    margin: -0.625rem;
  }

  .desktop\:first\:-m-3\.5:first-child{
    margin: -0.875rem;
  }

  .desktop\:first\:m-neg1:first-child{
    margin: -.25rem;
  }

  .desktop\:first\:m-neg2:first-child{
    margin: -.5rem;
  }

  .desktop\:first\:m-neg4:first-child{
    margin: -1.0rem;
  }

  .desktop\:first\:m-neg6:first-child{
    margin: -1.5rem;
  }

  .desktop\:first\:m-neg12:first-child{
    margin: -3rem;
  }

  .desktop\:first\:m-neg20:first-child{
    margin: -5rem;
  }

  .desktop\:last\:m-0:last-child{
    margin: 0px;
  }

  .desktop\:last\:m-1:last-child{
    margin: 0.25rem;
  }

  .desktop\:last\:m-2:last-child{
    margin: 0.5rem;
  }

  .desktop\:last\:m-3:last-child{
    margin: 0.75rem;
  }

  .desktop\:last\:m-4:last-child{
    margin: 1rem;
  }

  .desktop\:last\:m-5:last-child{
    margin: 1.25rem;
  }

  .desktop\:last\:m-6:last-child{
    margin: 1.5rem;
  }

  .desktop\:last\:m-7:last-child{
    margin: 1.75rem;
  }

  .desktop\:last\:m-8:last-child{
    margin: 2rem;
  }

  .desktop\:last\:m-9:last-child{
    margin: 2.25rem;
  }

  .desktop\:last\:m-10:last-child{
    margin: 2.5rem;
  }

  .desktop\:last\:m-11:last-child{
    margin: 2.75rem;
  }

  .desktop\:last\:m-12:last-child{
    margin: 3rem;
  }

  .desktop\:last\:m-14:last-child{
    margin: 3.5rem;
  }

  .desktop\:last\:m-16:last-child{
    margin: 4rem;
  }

  .desktop\:last\:m-20:last-child{
    margin: 5rem;
  }

  .desktop\:last\:m-24:last-child{
    margin: 6rem;
  }

  .desktop\:last\:m-28:last-child{
    margin: 7rem;
  }

  .desktop\:last\:m-32:last-child{
    margin: 8rem;
  }

  .desktop\:last\:m-36:last-child{
    margin: 9rem;
  }

  .desktop\:last\:m-40:last-child{
    margin: 10rem;
  }

  .desktop\:last\:m-44:last-child{
    margin: 11rem;
  }

  .desktop\:last\:m-48:last-child{
    margin: 12rem;
  }

  .desktop\:last\:m-52:last-child{
    margin: 13rem;
  }

  .desktop\:last\:m-56:last-child{
    margin: 14rem;
  }

  .desktop\:last\:m-60:last-child{
    margin: 15rem;
  }

  .desktop\:last\:m-64:last-child{
    margin: 16rem;
  }

  .desktop\:last\:m-72:last-child{
    margin: 18rem;
  }

  .desktop\:last\:m-80:last-child{
    margin: 20rem;
  }

  .desktop\:last\:m-96:last-child{
    margin: 24rem;
  }

  .desktop\:last\:m-auto:last-child{
    margin: auto;
  }

  .desktop\:last\:m-px:last-child{
    margin: 1px;
  }

  .desktop\:last\:m-0\.5:last-child{
    margin: 0.125rem;
  }

  .desktop\:last\:m-1\.5:last-child{
    margin: 0.375rem;
  }

  .desktop\:last\:m-2\.5:last-child{
    margin: 0.625rem;
  }

  .desktop\:last\:m-3\.5:last-child{
    margin: 0.875rem;
  }

  .desktop\:last\:-m-0:last-child{
    margin: 0px;
  }

  .desktop\:last\:-m-1:last-child{
    margin: -0.25rem;
  }

  .desktop\:last\:-m-2:last-child{
    margin: -0.5rem;
  }

  .desktop\:last\:-m-3:last-child{
    margin: -0.75rem;
  }

  .desktop\:last\:-m-4:last-child{
    margin: -1rem;
  }

  .desktop\:last\:-m-5:last-child{
    margin: -1.25rem;
  }

  .desktop\:last\:-m-6:last-child{
    margin: -1.5rem;
  }

  .desktop\:last\:-m-7:last-child{
    margin: -1.75rem;
  }

  .desktop\:last\:-m-8:last-child{
    margin: -2rem;
  }

  .desktop\:last\:-m-9:last-child{
    margin: -2.25rem;
  }

  .desktop\:last\:-m-10:last-child{
    margin: -2.5rem;
  }

  .desktop\:last\:-m-11:last-child{
    margin: -2.75rem;
  }

  .desktop\:last\:-m-12:last-child{
    margin: -3rem;
  }

  .desktop\:last\:-m-14:last-child{
    margin: -3.5rem;
  }

  .desktop\:last\:-m-16:last-child{
    margin: -4rem;
  }

  .desktop\:last\:-m-20:last-child{
    margin: -5rem;
  }

  .desktop\:last\:-m-24:last-child{
    margin: -6rem;
  }

  .desktop\:last\:-m-28:last-child{
    margin: -7rem;
  }

  .desktop\:last\:-m-32:last-child{
    margin: -8rem;
  }

  .desktop\:last\:-m-36:last-child{
    margin: -9rem;
  }

  .desktop\:last\:-m-40:last-child{
    margin: -10rem;
  }

  .desktop\:last\:-m-44:last-child{
    margin: -11rem;
  }

  .desktop\:last\:-m-48:last-child{
    margin: -12rem;
  }

  .desktop\:last\:-m-52:last-child{
    margin: -13rem;
  }

  .desktop\:last\:-m-56:last-child{
    margin: -14rem;
  }

  .desktop\:last\:-m-60:last-child{
    margin: -15rem;
  }

  .desktop\:last\:-m-64:last-child{
    margin: -16rem;
  }

  .desktop\:last\:-m-72:last-child{
    margin: -18rem;
  }

  .desktop\:last\:-m-80:last-child{
    margin: -20rem;
  }

  .desktop\:last\:-m-96:last-child{
    margin: -24rem;
  }

  .desktop\:last\:-m-px:last-child{
    margin: -1px;
  }

  .desktop\:last\:-m-0\.5:last-child{
    margin: -0.125rem;
  }

  .desktop\:last\:-m-1\.5:last-child{
    margin: -0.375rem;
  }

  .desktop\:last\:-m-2\.5:last-child{
    margin: -0.625rem;
  }

  .desktop\:last\:-m-3\.5:last-child{
    margin: -0.875rem;
  }

  .desktop\:last\:m-neg1:last-child{
    margin: -.25rem;
  }

  .desktop\:last\:m-neg2:last-child{
    margin: -.5rem;
  }

  .desktop\:last\:m-neg4:last-child{
    margin: -1.0rem;
  }

  .desktop\:last\:m-neg6:last-child{
    margin: -1.5rem;
  }

  .desktop\:last\:m-neg12:last-child{
    margin: -3rem;
  }

  .desktop\:last\:m-neg20:last-child{
    margin: -5rem;
  }

  .desktop\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }

  .desktop\:mx-1{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .desktop\:mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .desktop\:mx-3{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .desktop\:mx-4{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .desktop\:mx-5{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .desktop\:mx-6{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .desktop\:mx-7{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .desktop\:mx-8{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .desktop\:mx-9{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .desktop\:mx-10{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .desktop\:mx-11{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .desktop\:mx-12{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .desktop\:mx-14{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .desktop\:mx-16{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .desktop\:mx-20{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .desktop\:mx-24{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .desktop\:mx-28{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .desktop\:mx-32{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .desktop\:mx-36{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .desktop\:mx-40{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .desktop\:mx-44{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .desktop\:mx-48{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .desktop\:mx-52{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .desktop\:mx-56{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .desktop\:mx-60{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .desktop\:mx-64{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .desktop\:mx-72{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .desktop\:mx-80{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .desktop\:mx-96{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .desktop\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .desktop\:mx-px{
    margin-left: 1px;
    margin-right: 1px;
  }

  .desktop\:mx-0\.5{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .desktop\:mx-1\.5{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .desktop\:mx-2\.5{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .desktop\:mx-3\.5{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .desktop\:-mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }

  .desktop\:-mx-1{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .desktop\:-mx-2{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .desktop\:-mx-3{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .desktop\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .desktop\:-mx-5{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .desktop\:-mx-6{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .desktop\:-mx-7{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .desktop\:-mx-8{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .desktop\:-mx-9{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .desktop\:-mx-10{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .desktop\:-mx-11{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .desktop\:-mx-12{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .desktop\:-mx-14{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .desktop\:-mx-16{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .desktop\:-mx-20{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .desktop\:-mx-24{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .desktop\:-mx-28{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .desktop\:-mx-32{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .desktop\:-mx-36{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .desktop\:-mx-40{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .desktop\:-mx-44{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .desktop\:-mx-48{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .desktop\:-mx-52{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .desktop\:-mx-56{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .desktop\:-mx-60{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .desktop\:-mx-64{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .desktop\:-mx-72{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .desktop\:-mx-80{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .desktop\:-mx-96{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .desktop\:-mx-px{
    margin-left: -1px;
    margin-right: -1px;
  }

  .desktop\:-mx-0\.5{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .desktop\:-mx-1\.5{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .desktop\:-mx-2\.5{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .desktop\:-mx-3\.5{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .desktop\:mx-neg1{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .desktop\:mx-neg2{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .desktop\:mx-neg4{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .desktop\:mx-neg6{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .desktop\:mx-neg12{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .desktop\:mx-neg20{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .desktop\:my-0{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .desktop\:my-1{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .desktop\:my-2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .desktop\:my-3{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .desktop\:my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .desktop\:my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .desktop\:my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .desktop\:my-7{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .desktop\:my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .desktop\:my-9{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .desktop\:my-10{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .desktop\:my-11{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .desktop\:my-12{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .desktop\:my-14{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .desktop\:my-16{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .desktop\:my-20{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .desktop\:my-24{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .desktop\:my-28{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .desktop\:my-32{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .desktop\:my-36{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .desktop\:my-40{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .desktop\:my-44{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .desktop\:my-48{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .desktop\:my-52{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .desktop\:my-56{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .desktop\:my-60{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .desktop\:my-64{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .desktop\:my-72{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .desktop\:my-80{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .desktop\:my-96{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .desktop\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }

  .desktop\:my-px{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .desktop\:my-0\.5{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .desktop\:my-1\.5{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .desktop\:my-2\.5{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .desktop\:my-3\.5{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .desktop\:-my-0{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .desktop\:-my-1{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .desktop\:-my-2{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .desktop\:-my-3{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .desktop\:-my-4{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .desktop\:-my-5{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .desktop\:-my-6{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .desktop\:-my-7{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .desktop\:-my-8{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .desktop\:-my-9{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .desktop\:-my-10{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .desktop\:-my-11{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .desktop\:-my-12{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .desktop\:-my-14{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .desktop\:-my-16{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .desktop\:-my-20{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .desktop\:-my-24{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .desktop\:-my-28{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .desktop\:-my-32{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .desktop\:-my-36{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .desktop\:-my-40{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .desktop\:-my-44{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .desktop\:-my-48{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .desktop\:-my-52{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .desktop\:-my-56{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .desktop\:-my-60{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .desktop\:-my-64{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .desktop\:-my-72{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .desktop\:-my-80{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .desktop\:-my-96{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .desktop\:-my-px{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .desktop\:-my-0\.5{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .desktop\:-my-1\.5{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .desktop\:-my-2\.5{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .desktop\:-my-3\.5{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .desktop\:my-neg1{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .desktop\:my-neg2{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .desktop\:my-neg4{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .desktop\:my-neg6{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .desktop\:my-neg12{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .desktop\:my-neg20{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .desktop\:last\:mx-0:last-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .desktop\:last\:mx-1:last-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .desktop\:last\:mx-2:last-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .desktop\:last\:mx-3:last-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .desktop\:last\:mx-4:last-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .desktop\:last\:mx-5:last-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .desktop\:last\:mx-6:last-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .desktop\:last\:mx-7:last-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .desktop\:last\:mx-8:last-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .desktop\:last\:mx-9:last-child{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .desktop\:last\:mx-10:last-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .desktop\:last\:mx-11:last-child{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .desktop\:last\:mx-12:last-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .desktop\:last\:mx-14:last-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .desktop\:last\:mx-16:last-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .desktop\:last\:mx-20:last-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .desktop\:last\:mx-24:last-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .desktop\:last\:mx-28:last-child{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .desktop\:last\:mx-32:last-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .desktop\:last\:mx-36:last-child{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .desktop\:last\:mx-40:last-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .desktop\:last\:mx-44:last-child{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .desktop\:last\:mx-48:last-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .desktop\:last\:mx-52:last-child{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .desktop\:last\:mx-56:last-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .desktop\:last\:mx-60:last-child{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .desktop\:last\:mx-64:last-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .desktop\:last\:mx-72:last-child{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .desktop\:last\:mx-80:last-child{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .desktop\:last\:mx-96:last-child{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .desktop\:last\:mx-auto:last-child{
    margin-left: auto;
    margin-right: auto;
  }

  .desktop\:last\:mx-px:last-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .desktop\:last\:mx-0\.5:last-child{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .desktop\:last\:mx-1\.5:last-child{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .desktop\:last\:mx-2\.5:last-child{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .desktop\:last\:mx-3\.5:last-child{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .desktop\:last\:-mx-0:last-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .desktop\:last\:-mx-1:last-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .desktop\:last\:-mx-2:last-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .desktop\:last\:-mx-3:last-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .desktop\:last\:-mx-4:last-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .desktop\:last\:-mx-5:last-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .desktop\:last\:-mx-6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .desktop\:last\:-mx-7:last-child{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .desktop\:last\:-mx-8:last-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .desktop\:last\:-mx-9:last-child{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .desktop\:last\:-mx-10:last-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .desktop\:last\:-mx-11:last-child{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .desktop\:last\:-mx-12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .desktop\:last\:-mx-14:last-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .desktop\:last\:-mx-16:last-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .desktop\:last\:-mx-20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .desktop\:last\:-mx-24:last-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .desktop\:last\:-mx-28:last-child{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .desktop\:last\:-mx-32:last-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .desktop\:last\:-mx-36:last-child{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .desktop\:last\:-mx-40:last-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .desktop\:last\:-mx-44:last-child{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .desktop\:last\:-mx-48:last-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .desktop\:last\:-mx-52:last-child{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .desktop\:last\:-mx-56:last-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .desktop\:last\:-mx-60:last-child{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .desktop\:last\:-mx-64:last-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .desktop\:last\:-mx-72:last-child{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .desktop\:last\:-mx-80:last-child{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .desktop\:last\:-mx-96:last-child{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .desktop\:last\:-mx-px:last-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .desktop\:last\:-mx-0\.5:last-child{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .desktop\:last\:-mx-1\.5:last-child{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .desktop\:last\:-mx-2\.5:last-child{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .desktop\:last\:-mx-3\.5:last-child{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .desktop\:last\:mx-neg1:last-child{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .desktop\:last\:mx-neg2:last-child{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .desktop\:last\:mx-neg4:last-child{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .desktop\:last\:mx-neg6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .desktop\:last\:mx-neg12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .desktop\:last\:mx-neg20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .desktop\:last\:my-0:last-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .desktop\:last\:my-1:last-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .desktop\:last\:my-2:last-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .desktop\:last\:my-3:last-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .desktop\:last\:my-4:last-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .desktop\:last\:my-5:last-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .desktop\:last\:my-6:last-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .desktop\:last\:my-7:last-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .desktop\:last\:my-8:last-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .desktop\:last\:my-9:last-child{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .desktop\:last\:my-10:last-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .desktop\:last\:my-11:last-child{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .desktop\:last\:my-12:last-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .desktop\:last\:my-14:last-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .desktop\:last\:my-16:last-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .desktop\:last\:my-20:last-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .desktop\:last\:my-24:last-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .desktop\:last\:my-28:last-child{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .desktop\:last\:my-32:last-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .desktop\:last\:my-36:last-child{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .desktop\:last\:my-40:last-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .desktop\:last\:my-44:last-child{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .desktop\:last\:my-48:last-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .desktop\:last\:my-52:last-child{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .desktop\:last\:my-56:last-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .desktop\:last\:my-60:last-child{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .desktop\:last\:my-64:last-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .desktop\:last\:my-72:last-child{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .desktop\:last\:my-80:last-child{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .desktop\:last\:my-96:last-child{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .desktop\:last\:my-auto:last-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .desktop\:last\:my-px:last-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .desktop\:last\:my-0\.5:last-child{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .desktop\:last\:my-1\.5:last-child{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .desktop\:last\:my-2\.5:last-child{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .desktop\:last\:my-3\.5:last-child{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .desktop\:last\:-my-0:last-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .desktop\:last\:-my-1:last-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .desktop\:last\:-my-2:last-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .desktop\:last\:-my-3:last-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .desktop\:last\:-my-4:last-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .desktop\:last\:-my-5:last-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .desktop\:last\:-my-6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .desktop\:last\:-my-7:last-child{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .desktop\:last\:-my-8:last-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .desktop\:last\:-my-9:last-child{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .desktop\:last\:-my-10:last-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .desktop\:last\:-my-11:last-child{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .desktop\:last\:-my-12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .desktop\:last\:-my-14:last-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .desktop\:last\:-my-16:last-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .desktop\:last\:-my-20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .desktop\:last\:-my-24:last-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .desktop\:last\:-my-28:last-child{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .desktop\:last\:-my-32:last-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .desktop\:last\:-my-36:last-child{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .desktop\:last\:-my-40:last-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .desktop\:last\:-my-44:last-child{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .desktop\:last\:-my-48:last-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .desktop\:last\:-my-52:last-child{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .desktop\:last\:-my-56:last-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .desktop\:last\:-my-60:last-child{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .desktop\:last\:-my-64:last-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .desktop\:last\:-my-72:last-child{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .desktop\:last\:-my-80:last-child{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .desktop\:last\:-my-96:last-child{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .desktop\:last\:-my-px:last-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .desktop\:last\:-my-0\.5:last-child{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .desktop\:last\:-my-1\.5:last-child{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .desktop\:last\:-my-2\.5:last-child{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .desktop\:last\:-my-3\.5:last-child{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .desktop\:last\:my-neg1:last-child{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .desktop\:last\:my-neg2:last-child{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .desktop\:last\:my-neg4:last-child{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .desktop\:last\:my-neg6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .desktop\:last\:my-neg12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .desktop\:last\:my-neg20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .desktop\:hover\:mx-0:hover{
    margin-left: 0px;
    margin-right: 0px;
  }

  .desktop\:hover\:mx-1:hover{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .desktop\:hover\:mx-2:hover{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .desktop\:hover\:mx-3:hover{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .desktop\:hover\:mx-4:hover{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .desktop\:hover\:mx-5:hover{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .desktop\:hover\:mx-6:hover{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .desktop\:hover\:mx-7:hover{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .desktop\:hover\:mx-8:hover{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .desktop\:hover\:mx-9:hover{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .desktop\:hover\:mx-10:hover{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .desktop\:hover\:mx-11:hover{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .desktop\:hover\:mx-12:hover{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .desktop\:hover\:mx-14:hover{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .desktop\:hover\:mx-16:hover{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .desktop\:hover\:mx-20:hover{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .desktop\:hover\:mx-24:hover{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .desktop\:hover\:mx-28:hover{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .desktop\:hover\:mx-32:hover{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .desktop\:hover\:mx-36:hover{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .desktop\:hover\:mx-40:hover{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .desktop\:hover\:mx-44:hover{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .desktop\:hover\:mx-48:hover{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .desktop\:hover\:mx-52:hover{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .desktop\:hover\:mx-56:hover{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .desktop\:hover\:mx-60:hover{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .desktop\:hover\:mx-64:hover{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .desktop\:hover\:mx-72:hover{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .desktop\:hover\:mx-80:hover{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .desktop\:hover\:mx-96:hover{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .desktop\:hover\:mx-auto:hover{
    margin-left: auto;
    margin-right: auto;
  }

  .desktop\:hover\:mx-px:hover{
    margin-left: 1px;
    margin-right: 1px;
  }

  .desktop\:hover\:mx-0\.5:hover{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .desktop\:hover\:mx-1\.5:hover{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .desktop\:hover\:mx-2\.5:hover{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .desktop\:hover\:mx-3\.5:hover{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .desktop\:hover\:-mx-0:hover{
    margin-left: 0px;
    margin-right: 0px;
  }

  .desktop\:hover\:-mx-1:hover{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .desktop\:hover\:-mx-2:hover{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .desktop\:hover\:-mx-3:hover{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .desktop\:hover\:-mx-4:hover{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .desktop\:hover\:-mx-5:hover{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .desktop\:hover\:-mx-6:hover{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .desktop\:hover\:-mx-7:hover{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .desktop\:hover\:-mx-8:hover{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .desktop\:hover\:-mx-9:hover{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .desktop\:hover\:-mx-10:hover{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .desktop\:hover\:-mx-11:hover{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .desktop\:hover\:-mx-12:hover{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .desktop\:hover\:-mx-14:hover{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .desktop\:hover\:-mx-16:hover{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .desktop\:hover\:-mx-20:hover{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .desktop\:hover\:-mx-24:hover{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .desktop\:hover\:-mx-28:hover{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .desktop\:hover\:-mx-32:hover{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .desktop\:hover\:-mx-36:hover{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .desktop\:hover\:-mx-40:hover{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .desktop\:hover\:-mx-44:hover{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .desktop\:hover\:-mx-48:hover{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .desktop\:hover\:-mx-52:hover{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .desktop\:hover\:-mx-56:hover{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .desktop\:hover\:-mx-60:hover{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .desktop\:hover\:-mx-64:hover{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .desktop\:hover\:-mx-72:hover{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .desktop\:hover\:-mx-80:hover{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .desktop\:hover\:-mx-96:hover{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .desktop\:hover\:-mx-px:hover{
    margin-left: -1px;
    margin-right: -1px;
  }

  .desktop\:hover\:-mx-0\.5:hover{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .desktop\:hover\:-mx-1\.5:hover{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .desktop\:hover\:-mx-2\.5:hover{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .desktop\:hover\:-mx-3\.5:hover{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .desktop\:hover\:mx-neg1:hover{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .desktop\:hover\:mx-neg2:hover{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .desktop\:hover\:mx-neg4:hover{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .desktop\:hover\:mx-neg6:hover{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .desktop\:hover\:mx-neg12:hover{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .desktop\:hover\:mx-neg20:hover{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .desktop\:hover\:my-0:hover{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .desktop\:hover\:my-1:hover{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .desktop\:hover\:my-2:hover{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .desktop\:hover\:my-3:hover{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .desktop\:hover\:my-4:hover{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .desktop\:hover\:my-5:hover{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .desktop\:hover\:my-6:hover{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .desktop\:hover\:my-7:hover{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .desktop\:hover\:my-8:hover{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .desktop\:hover\:my-9:hover{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .desktop\:hover\:my-10:hover{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .desktop\:hover\:my-11:hover{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .desktop\:hover\:my-12:hover{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .desktop\:hover\:my-14:hover{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .desktop\:hover\:my-16:hover{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .desktop\:hover\:my-20:hover{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .desktop\:hover\:my-24:hover{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .desktop\:hover\:my-28:hover{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .desktop\:hover\:my-32:hover{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .desktop\:hover\:my-36:hover{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .desktop\:hover\:my-40:hover{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .desktop\:hover\:my-44:hover{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .desktop\:hover\:my-48:hover{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .desktop\:hover\:my-52:hover{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .desktop\:hover\:my-56:hover{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .desktop\:hover\:my-60:hover{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .desktop\:hover\:my-64:hover{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .desktop\:hover\:my-72:hover{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .desktop\:hover\:my-80:hover{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .desktop\:hover\:my-96:hover{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .desktop\:hover\:my-auto:hover{
    margin-top: auto;
    margin-bottom: auto;
  }

  .desktop\:hover\:my-px:hover{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .desktop\:hover\:my-0\.5:hover{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .desktop\:hover\:my-1\.5:hover{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .desktop\:hover\:my-2\.5:hover{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .desktop\:hover\:my-3\.5:hover{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .desktop\:hover\:-my-0:hover{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .desktop\:hover\:-my-1:hover{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .desktop\:hover\:-my-2:hover{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .desktop\:hover\:-my-3:hover{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .desktop\:hover\:-my-4:hover{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .desktop\:hover\:-my-5:hover{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .desktop\:hover\:-my-6:hover{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .desktop\:hover\:-my-7:hover{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .desktop\:hover\:-my-8:hover{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .desktop\:hover\:-my-9:hover{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .desktop\:hover\:-my-10:hover{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .desktop\:hover\:-my-11:hover{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .desktop\:hover\:-my-12:hover{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .desktop\:hover\:-my-14:hover{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .desktop\:hover\:-my-16:hover{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .desktop\:hover\:-my-20:hover{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .desktop\:hover\:-my-24:hover{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .desktop\:hover\:-my-28:hover{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .desktop\:hover\:-my-32:hover{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .desktop\:hover\:-my-36:hover{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .desktop\:hover\:-my-40:hover{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .desktop\:hover\:-my-44:hover{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .desktop\:hover\:-my-48:hover{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .desktop\:hover\:-my-52:hover{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .desktop\:hover\:-my-56:hover{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .desktop\:hover\:-my-60:hover{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .desktop\:hover\:-my-64:hover{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .desktop\:hover\:-my-72:hover{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .desktop\:hover\:-my-80:hover{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .desktop\:hover\:-my-96:hover{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .desktop\:hover\:-my-px:hover{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .desktop\:hover\:-my-0\.5:hover{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .desktop\:hover\:-my-1\.5:hover{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .desktop\:hover\:-my-2\.5:hover{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .desktop\:hover\:-my-3\.5:hover{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .desktop\:hover\:my-neg1:hover{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .desktop\:hover\:my-neg2:hover{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .desktop\:hover\:my-neg4:hover{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .desktop\:hover\:my-neg6:hover{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .desktop\:hover\:my-neg12:hover{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .desktop\:hover\:my-neg20:hover{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .desktop\:focus\:mx-0:focus{
    margin-left: 0px;
    margin-right: 0px;
  }

  .desktop\:focus\:mx-1:focus{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .desktop\:focus\:mx-2:focus{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .desktop\:focus\:mx-3:focus{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .desktop\:focus\:mx-4:focus{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .desktop\:focus\:mx-5:focus{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .desktop\:focus\:mx-6:focus{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .desktop\:focus\:mx-7:focus{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .desktop\:focus\:mx-8:focus{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .desktop\:focus\:mx-9:focus{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .desktop\:focus\:mx-10:focus{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .desktop\:focus\:mx-11:focus{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .desktop\:focus\:mx-12:focus{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .desktop\:focus\:mx-14:focus{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .desktop\:focus\:mx-16:focus{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .desktop\:focus\:mx-20:focus{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .desktop\:focus\:mx-24:focus{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .desktop\:focus\:mx-28:focus{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .desktop\:focus\:mx-32:focus{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .desktop\:focus\:mx-36:focus{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .desktop\:focus\:mx-40:focus{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .desktop\:focus\:mx-44:focus{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .desktop\:focus\:mx-48:focus{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .desktop\:focus\:mx-52:focus{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .desktop\:focus\:mx-56:focus{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .desktop\:focus\:mx-60:focus{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .desktop\:focus\:mx-64:focus{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .desktop\:focus\:mx-72:focus{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .desktop\:focus\:mx-80:focus{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .desktop\:focus\:mx-96:focus{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .desktop\:focus\:mx-auto:focus{
    margin-left: auto;
    margin-right: auto;
  }

  .desktop\:focus\:mx-px:focus{
    margin-left: 1px;
    margin-right: 1px;
  }

  .desktop\:focus\:mx-0\.5:focus{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .desktop\:focus\:mx-1\.5:focus{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .desktop\:focus\:mx-2\.5:focus{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .desktop\:focus\:mx-3\.5:focus{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .desktop\:focus\:-mx-0:focus{
    margin-left: 0px;
    margin-right: 0px;
  }

  .desktop\:focus\:-mx-1:focus{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .desktop\:focus\:-mx-2:focus{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .desktop\:focus\:-mx-3:focus{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .desktop\:focus\:-mx-4:focus{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .desktop\:focus\:-mx-5:focus{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .desktop\:focus\:-mx-6:focus{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .desktop\:focus\:-mx-7:focus{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .desktop\:focus\:-mx-8:focus{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .desktop\:focus\:-mx-9:focus{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .desktop\:focus\:-mx-10:focus{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .desktop\:focus\:-mx-11:focus{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .desktop\:focus\:-mx-12:focus{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .desktop\:focus\:-mx-14:focus{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .desktop\:focus\:-mx-16:focus{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .desktop\:focus\:-mx-20:focus{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .desktop\:focus\:-mx-24:focus{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .desktop\:focus\:-mx-28:focus{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .desktop\:focus\:-mx-32:focus{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .desktop\:focus\:-mx-36:focus{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .desktop\:focus\:-mx-40:focus{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .desktop\:focus\:-mx-44:focus{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .desktop\:focus\:-mx-48:focus{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .desktop\:focus\:-mx-52:focus{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .desktop\:focus\:-mx-56:focus{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .desktop\:focus\:-mx-60:focus{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .desktop\:focus\:-mx-64:focus{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .desktop\:focus\:-mx-72:focus{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .desktop\:focus\:-mx-80:focus{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .desktop\:focus\:-mx-96:focus{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .desktop\:focus\:-mx-px:focus{
    margin-left: -1px;
    margin-right: -1px;
  }

  .desktop\:focus\:-mx-0\.5:focus{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .desktop\:focus\:-mx-1\.5:focus{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .desktop\:focus\:-mx-2\.5:focus{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .desktop\:focus\:-mx-3\.5:focus{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .desktop\:focus\:mx-neg1:focus{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .desktop\:focus\:mx-neg2:focus{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .desktop\:focus\:mx-neg4:focus{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .desktop\:focus\:mx-neg6:focus{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .desktop\:focus\:mx-neg12:focus{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .desktop\:focus\:mx-neg20:focus{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .desktop\:focus\:my-0:focus{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .desktop\:focus\:my-1:focus{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .desktop\:focus\:my-2:focus{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .desktop\:focus\:my-3:focus{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .desktop\:focus\:my-4:focus{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .desktop\:focus\:my-5:focus{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .desktop\:focus\:my-6:focus{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .desktop\:focus\:my-7:focus{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .desktop\:focus\:my-8:focus{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .desktop\:focus\:my-9:focus{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .desktop\:focus\:my-10:focus{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .desktop\:focus\:my-11:focus{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .desktop\:focus\:my-12:focus{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .desktop\:focus\:my-14:focus{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .desktop\:focus\:my-16:focus{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .desktop\:focus\:my-20:focus{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .desktop\:focus\:my-24:focus{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .desktop\:focus\:my-28:focus{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .desktop\:focus\:my-32:focus{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .desktop\:focus\:my-36:focus{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .desktop\:focus\:my-40:focus{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .desktop\:focus\:my-44:focus{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .desktop\:focus\:my-48:focus{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .desktop\:focus\:my-52:focus{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .desktop\:focus\:my-56:focus{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .desktop\:focus\:my-60:focus{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .desktop\:focus\:my-64:focus{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .desktop\:focus\:my-72:focus{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .desktop\:focus\:my-80:focus{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .desktop\:focus\:my-96:focus{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .desktop\:focus\:my-auto:focus{
    margin-top: auto;
    margin-bottom: auto;
  }

  .desktop\:focus\:my-px:focus{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .desktop\:focus\:my-0\.5:focus{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .desktop\:focus\:my-1\.5:focus{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .desktop\:focus\:my-2\.5:focus{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .desktop\:focus\:my-3\.5:focus{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .desktop\:focus\:-my-0:focus{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .desktop\:focus\:-my-1:focus{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .desktop\:focus\:-my-2:focus{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .desktop\:focus\:-my-3:focus{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .desktop\:focus\:-my-4:focus{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .desktop\:focus\:-my-5:focus{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .desktop\:focus\:-my-6:focus{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .desktop\:focus\:-my-7:focus{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .desktop\:focus\:-my-8:focus{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .desktop\:focus\:-my-9:focus{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .desktop\:focus\:-my-10:focus{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .desktop\:focus\:-my-11:focus{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .desktop\:focus\:-my-12:focus{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .desktop\:focus\:-my-14:focus{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .desktop\:focus\:-my-16:focus{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .desktop\:focus\:-my-20:focus{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .desktop\:focus\:-my-24:focus{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .desktop\:focus\:-my-28:focus{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .desktop\:focus\:-my-32:focus{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .desktop\:focus\:-my-36:focus{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .desktop\:focus\:-my-40:focus{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .desktop\:focus\:-my-44:focus{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .desktop\:focus\:-my-48:focus{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .desktop\:focus\:-my-52:focus{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .desktop\:focus\:-my-56:focus{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .desktop\:focus\:-my-60:focus{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .desktop\:focus\:-my-64:focus{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .desktop\:focus\:-my-72:focus{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .desktop\:focus\:-my-80:focus{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .desktop\:focus\:-my-96:focus{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .desktop\:focus\:-my-px:focus{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .desktop\:focus\:-my-0\.5:focus{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .desktop\:focus\:-my-1\.5:focus{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .desktop\:focus\:-my-2\.5:focus{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .desktop\:focus\:-my-3\.5:focus{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .desktop\:focus\:my-neg1:focus{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .desktop\:focus\:my-neg2:focus{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .desktop\:focus\:my-neg4:focus{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .desktop\:focus\:my-neg6:focus{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .desktop\:focus\:my-neg12:focus{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .desktop\:focus\:my-neg20:focus{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .desktop\:first\:mx-0:first-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .desktop\:first\:mx-1:first-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .desktop\:first\:mx-2:first-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .desktop\:first\:mx-3:first-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .desktop\:first\:mx-4:first-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .desktop\:first\:mx-5:first-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .desktop\:first\:mx-6:first-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .desktop\:first\:mx-7:first-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .desktop\:first\:mx-8:first-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .desktop\:first\:mx-9:first-child{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .desktop\:first\:mx-10:first-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .desktop\:first\:mx-11:first-child{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .desktop\:first\:mx-12:first-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .desktop\:first\:mx-14:first-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .desktop\:first\:mx-16:first-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .desktop\:first\:mx-20:first-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .desktop\:first\:mx-24:first-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .desktop\:first\:mx-28:first-child{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .desktop\:first\:mx-32:first-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .desktop\:first\:mx-36:first-child{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .desktop\:first\:mx-40:first-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .desktop\:first\:mx-44:first-child{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .desktop\:first\:mx-48:first-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .desktop\:first\:mx-52:first-child{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .desktop\:first\:mx-56:first-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .desktop\:first\:mx-60:first-child{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .desktop\:first\:mx-64:first-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .desktop\:first\:mx-72:first-child{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .desktop\:first\:mx-80:first-child{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .desktop\:first\:mx-96:first-child{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .desktop\:first\:mx-auto:first-child{
    margin-left: auto;
    margin-right: auto;
  }

  .desktop\:first\:mx-px:first-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .desktop\:first\:mx-0\.5:first-child{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .desktop\:first\:mx-1\.5:first-child{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .desktop\:first\:mx-2\.5:first-child{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .desktop\:first\:mx-3\.5:first-child{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .desktop\:first\:-mx-0:first-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .desktop\:first\:-mx-1:first-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .desktop\:first\:-mx-2:first-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .desktop\:first\:-mx-3:first-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .desktop\:first\:-mx-4:first-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .desktop\:first\:-mx-5:first-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .desktop\:first\:-mx-6:first-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .desktop\:first\:-mx-7:first-child{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .desktop\:first\:-mx-8:first-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .desktop\:first\:-mx-9:first-child{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .desktop\:first\:-mx-10:first-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .desktop\:first\:-mx-11:first-child{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .desktop\:first\:-mx-12:first-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .desktop\:first\:-mx-14:first-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .desktop\:first\:-mx-16:first-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .desktop\:first\:-mx-20:first-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .desktop\:first\:-mx-24:first-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .desktop\:first\:-mx-28:first-child{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .desktop\:first\:-mx-32:first-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .desktop\:first\:-mx-36:first-child{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .desktop\:first\:-mx-40:first-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .desktop\:first\:-mx-44:first-child{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .desktop\:first\:-mx-48:first-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .desktop\:first\:-mx-52:first-child{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .desktop\:first\:-mx-56:first-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .desktop\:first\:-mx-60:first-child{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .desktop\:first\:-mx-64:first-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .desktop\:first\:-mx-72:first-child{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .desktop\:first\:-mx-80:first-child{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .desktop\:first\:-mx-96:first-child{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .desktop\:first\:-mx-px:first-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .desktop\:first\:-mx-0\.5:first-child{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .desktop\:first\:-mx-1\.5:first-child{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .desktop\:first\:-mx-2\.5:first-child{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .desktop\:first\:-mx-3\.5:first-child{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .desktop\:first\:mx-neg1:first-child{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .desktop\:first\:mx-neg2:first-child{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .desktop\:first\:mx-neg4:first-child{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .desktop\:first\:mx-neg6:first-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .desktop\:first\:mx-neg12:first-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .desktop\:first\:mx-neg20:first-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .desktop\:first\:my-0:first-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .desktop\:first\:my-1:first-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .desktop\:first\:my-2:first-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .desktop\:first\:my-3:first-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .desktop\:first\:my-4:first-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .desktop\:first\:my-5:first-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .desktop\:first\:my-6:first-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .desktop\:first\:my-7:first-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .desktop\:first\:my-8:first-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .desktop\:first\:my-9:first-child{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .desktop\:first\:my-10:first-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .desktop\:first\:my-11:first-child{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .desktop\:first\:my-12:first-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .desktop\:first\:my-14:first-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .desktop\:first\:my-16:first-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .desktop\:first\:my-20:first-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .desktop\:first\:my-24:first-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .desktop\:first\:my-28:first-child{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .desktop\:first\:my-32:first-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .desktop\:first\:my-36:first-child{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .desktop\:first\:my-40:first-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .desktop\:first\:my-44:first-child{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .desktop\:first\:my-48:first-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .desktop\:first\:my-52:first-child{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .desktop\:first\:my-56:first-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .desktop\:first\:my-60:first-child{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .desktop\:first\:my-64:first-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .desktop\:first\:my-72:first-child{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .desktop\:first\:my-80:first-child{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .desktop\:first\:my-96:first-child{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .desktop\:first\:my-auto:first-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .desktop\:first\:my-px:first-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .desktop\:first\:my-0\.5:first-child{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .desktop\:first\:my-1\.5:first-child{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .desktop\:first\:my-2\.5:first-child{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .desktop\:first\:my-3\.5:first-child{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .desktop\:first\:-my-0:first-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .desktop\:first\:-my-1:first-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .desktop\:first\:-my-2:first-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .desktop\:first\:-my-3:first-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .desktop\:first\:-my-4:first-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .desktop\:first\:-my-5:first-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .desktop\:first\:-my-6:first-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .desktop\:first\:-my-7:first-child{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .desktop\:first\:-my-8:first-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .desktop\:first\:-my-9:first-child{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .desktop\:first\:-my-10:first-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .desktop\:first\:-my-11:first-child{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .desktop\:first\:-my-12:first-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .desktop\:first\:-my-14:first-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .desktop\:first\:-my-16:first-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .desktop\:first\:-my-20:first-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .desktop\:first\:-my-24:first-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .desktop\:first\:-my-28:first-child{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .desktop\:first\:-my-32:first-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .desktop\:first\:-my-36:first-child{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .desktop\:first\:-my-40:first-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .desktop\:first\:-my-44:first-child{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .desktop\:first\:-my-48:first-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .desktop\:first\:-my-52:first-child{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .desktop\:first\:-my-56:first-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .desktop\:first\:-my-60:first-child{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .desktop\:first\:-my-64:first-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .desktop\:first\:-my-72:first-child{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .desktop\:first\:-my-80:first-child{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .desktop\:first\:-my-96:first-child{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .desktop\:first\:-my-px:first-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .desktop\:first\:-my-0\.5:first-child{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .desktop\:first\:-my-1\.5:first-child{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .desktop\:first\:-my-2\.5:first-child{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .desktop\:first\:-my-3\.5:first-child{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .desktop\:first\:my-neg1:first-child{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .desktop\:first\:my-neg2:first-child{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .desktop\:first\:my-neg4:first-child{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .desktop\:first\:my-neg6:first-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .desktop\:first\:my-neg12:first-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .desktop\:first\:my-neg20:first-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .desktop\:last\:mx-0:last-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .desktop\:last\:mx-1:last-child{
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .desktop\:last\:mx-2:last-child{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .desktop\:last\:mx-3:last-child{
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .desktop\:last\:mx-4:last-child{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .desktop\:last\:mx-5:last-child{
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .desktop\:last\:mx-6:last-child{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .desktop\:last\:mx-7:last-child{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .desktop\:last\:mx-8:last-child{
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .desktop\:last\:mx-9:last-child{
    margin-left: 2.25rem;
    margin-right: 2.25rem;
  }

  .desktop\:last\:mx-10:last-child{
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .desktop\:last\:mx-11:last-child{
    margin-left: 2.75rem;
    margin-right: 2.75rem;
  }

  .desktop\:last\:mx-12:last-child{
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .desktop\:last\:mx-14:last-child{
    margin-left: 3.5rem;
    margin-right: 3.5rem;
  }

  .desktop\:last\:mx-16:last-child{
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .desktop\:last\:mx-20:last-child{
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .desktop\:last\:mx-24:last-child{
    margin-left: 6rem;
    margin-right: 6rem;
  }

  .desktop\:last\:mx-28:last-child{
    margin-left: 7rem;
    margin-right: 7rem;
  }

  .desktop\:last\:mx-32:last-child{
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .desktop\:last\:mx-36:last-child{
    margin-left: 9rem;
    margin-right: 9rem;
  }

  .desktop\:last\:mx-40:last-child{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .desktop\:last\:mx-44:last-child{
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .desktop\:last\:mx-48:last-child{
    margin-left: 12rem;
    margin-right: 12rem;
  }

  .desktop\:last\:mx-52:last-child{
    margin-left: 13rem;
    margin-right: 13rem;
  }

  .desktop\:last\:mx-56:last-child{
    margin-left: 14rem;
    margin-right: 14rem;
  }

  .desktop\:last\:mx-60:last-child{
    margin-left: 15rem;
    margin-right: 15rem;
  }

  .desktop\:last\:mx-64:last-child{
    margin-left: 16rem;
    margin-right: 16rem;
  }

  .desktop\:last\:mx-72:last-child{
    margin-left: 18rem;
    margin-right: 18rem;
  }

  .desktop\:last\:mx-80:last-child{
    margin-left: 20rem;
    margin-right: 20rem;
  }

  .desktop\:last\:mx-96:last-child{
    margin-left: 24rem;
    margin-right: 24rem;
  }

  .desktop\:last\:mx-auto:last-child{
    margin-left: auto;
    margin-right: auto;
  }

  .desktop\:last\:mx-px:last-child{
    margin-left: 1px;
    margin-right: 1px;
  }

  .desktop\:last\:mx-0\.5:last-child{
    margin-left: 0.125rem;
    margin-right: 0.125rem;
  }

  .desktop\:last\:mx-1\.5:last-child{
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .desktop\:last\:mx-2\.5:last-child{
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }

  .desktop\:last\:mx-3\.5:last-child{
    margin-left: 0.875rem;
    margin-right: 0.875rem;
  }

  .desktop\:last\:-mx-0:last-child{
    margin-left: 0px;
    margin-right: 0px;
  }

  .desktop\:last\:-mx-1:last-child{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }

  .desktop\:last\:-mx-2:last-child{
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .desktop\:last\:-mx-3:last-child{
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }

  .desktop\:last\:-mx-4:last-child{
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .desktop\:last\:-mx-5:last-child{
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }

  .desktop\:last\:-mx-6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .desktop\:last\:-mx-7:last-child{
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }

  .desktop\:last\:-mx-8:last-child{
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .desktop\:last\:-mx-9:last-child{
    margin-left: -2.25rem;
    margin-right: -2.25rem;
  }

  .desktop\:last\:-mx-10:last-child{
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .desktop\:last\:-mx-11:last-child{
    margin-left: -2.75rem;
    margin-right: -2.75rem;
  }

  .desktop\:last\:-mx-12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .desktop\:last\:-mx-14:last-child{
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }

  .desktop\:last\:-mx-16:last-child{
    margin-left: -4rem;
    margin-right: -4rem;
  }

  .desktop\:last\:-mx-20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .desktop\:last\:-mx-24:last-child{
    margin-left: -6rem;
    margin-right: -6rem;
  }

  .desktop\:last\:-mx-28:last-child{
    margin-left: -7rem;
    margin-right: -7rem;
  }

  .desktop\:last\:-mx-32:last-child{
    margin-left: -8rem;
    margin-right: -8rem;
  }

  .desktop\:last\:-mx-36:last-child{
    margin-left: -9rem;
    margin-right: -9rem;
  }

  .desktop\:last\:-mx-40:last-child{
    margin-left: -10rem;
    margin-right: -10rem;
  }

  .desktop\:last\:-mx-44:last-child{
    margin-left: -11rem;
    margin-right: -11rem;
  }

  .desktop\:last\:-mx-48:last-child{
    margin-left: -12rem;
    margin-right: -12rem;
  }

  .desktop\:last\:-mx-52:last-child{
    margin-left: -13rem;
    margin-right: -13rem;
  }

  .desktop\:last\:-mx-56:last-child{
    margin-left: -14rem;
    margin-right: -14rem;
  }

  .desktop\:last\:-mx-60:last-child{
    margin-left: -15rem;
    margin-right: -15rem;
  }

  .desktop\:last\:-mx-64:last-child{
    margin-left: -16rem;
    margin-right: -16rem;
  }

  .desktop\:last\:-mx-72:last-child{
    margin-left: -18rem;
    margin-right: -18rem;
  }

  .desktop\:last\:-mx-80:last-child{
    margin-left: -20rem;
    margin-right: -20rem;
  }

  .desktop\:last\:-mx-96:last-child{
    margin-left: -24rem;
    margin-right: -24rem;
  }

  .desktop\:last\:-mx-px:last-child{
    margin-left: -1px;
    margin-right: -1px;
  }

  .desktop\:last\:-mx-0\.5:last-child{
    margin-left: -0.125rem;
    margin-right: -0.125rem;
  }

  .desktop\:last\:-mx-1\.5:last-child{
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }

  .desktop\:last\:-mx-2\.5:last-child{
    margin-left: -0.625rem;
    margin-right: -0.625rem;
  }

  .desktop\:last\:-mx-3\.5:last-child{
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .desktop\:last\:mx-neg1:last-child{
    margin-left: -.25rem;
    margin-right: -.25rem;
  }

  .desktop\:last\:mx-neg2:last-child{
    margin-left: -.5rem;
    margin-right: -.5rem;
  }

  .desktop\:last\:mx-neg4:last-child{
    margin-left: -1.0rem;
    margin-right: -1.0rem;
  }

  .desktop\:last\:mx-neg6:last-child{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .desktop\:last\:mx-neg12:last-child{
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .desktop\:last\:mx-neg20:last-child{
    margin-left: -5rem;
    margin-right: -5rem;
  }

  .desktop\:last\:my-0:last-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .desktop\:last\:my-1:last-child{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .desktop\:last\:my-2:last-child{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .desktop\:last\:my-3:last-child{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .desktop\:last\:my-4:last-child{
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .desktop\:last\:my-5:last-child{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .desktop\:last\:my-6:last-child{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .desktop\:last\:my-7:last-child{
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .desktop\:last\:my-8:last-child{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .desktop\:last\:my-9:last-child{
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
  }

  .desktop\:last\:my-10:last-child{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .desktop\:last\:my-11:last-child{
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
  }

  .desktop\:last\:my-12:last-child{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .desktop\:last\:my-14:last-child{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }

  .desktop\:last\:my-16:last-child{
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .desktop\:last\:my-20:last-child{
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

  .desktop\:last\:my-24:last-child{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .desktop\:last\:my-28:last-child{
    margin-top: 7rem;
    margin-bottom: 7rem;
  }

  .desktop\:last\:my-32:last-child{
    margin-top: 8rem;
    margin-bottom: 8rem;
  }

  .desktop\:last\:my-36:last-child{
    margin-top: 9rem;
    margin-bottom: 9rem;
  }

  .desktop\:last\:my-40:last-child{
    margin-top: 10rem;
    margin-bottom: 10rem;
  }

  .desktop\:last\:my-44:last-child{
    margin-top: 11rem;
    margin-bottom: 11rem;
  }

  .desktop\:last\:my-48:last-child{
    margin-top: 12rem;
    margin-bottom: 12rem;
  }

  .desktop\:last\:my-52:last-child{
    margin-top: 13rem;
    margin-bottom: 13rem;
  }

  .desktop\:last\:my-56:last-child{
    margin-top: 14rem;
    margin-bottom: 14rem;
  }

  .desktop\:last\:my-60:last-child{
    margin-top: 15rem;
    margin-bottom: 15rem;
  }

  .desktop\:last\:my-64:last-child{
    margin-top: 16rem;
    margin-bottom: 16rem;
  }

  .desktop\:last\:my-72:last-child{
    margin-top: 18rem;
    margin-bottom: 18rem;
  }

  .desktop\:last\:my-80:last-child{
    margin-top: 20rem;
    margin-bottom: 20rem;
  }

  .desktop\:last\:my-96:last-child{
    margin-top: 24rem;
    margin-bottom: 24rem;
  }

  .desktop\:last\:my-auto:last-child{
    margin-top: auto;
    margin-bottom: auto;
  }

  .desktop\:last\:my-px:last-child{
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .desktop\:last\:my-0\.5:last-child{
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
  }

  .desktop\:last\:my-1\.5:last-child{
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .desktop\:last\:my-2\.5:last-child{
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .desktop\:last\:my-3\.5:last-child{
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .desktop\:last\:-my-0:last-child{
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .desktop\:last\:-my-1:last-child{
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
  }

  .desktop\:last\:-my-2:last-child{
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .desktop\:last\:-my-3:last-child{
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .desktop\:last\:-my-4:last-child{
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .desktop\:last\:-my-5:last-child{
    margin-top: -1.25rem;
    margin-bottom: -1.25rem;
  }

  .desktop\:last\:-my-6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .desktop\:last\:-my-7:last-child{
    margin-top: -1.75rem;
    margin-bottom: -1.75rem;
  }

  .desktop\:last\:-my-8:last-child{
    margin-top: -2rem;
    margin-bottom: -2rem;
  }

  .desktop\:last\:-my-9:last-child{
    margin-top: -2.25rem;
    margin-bottom: -2.25rem;
  }

  .desktop\:last\:-my-10:last-child{
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }

  .desktop\:last\:-my-11:last-child{
    margin-top: -2.75rem;
    margin-bottom: -2.75rem;
  }

  .desktop\:last\:-my-12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .desktop\:last\:-my-14:last-child{
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }

  .desktop\:last\:-my-16:last-child{
    margin-top: -4rem;
    margin-bottom: -4rem;
  }

  .desktop\:last\:-my-20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .desktop\:last\:-my-24:last-child{
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .desktop\:last\:-my-28:last-child{
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .desktop\:last\:-my-32:last-child{
    margin-top: -8rem;
    margin-bottom: -8rem;
  }

  .desktop\:last\:-my-36:last-child{
    margin-top: -9rem;
    margin-bottom: -9rem;
  }

  .desktop\:last\:-my-40:last-child{
    margin-top: -10rem;
    margin-bottom: -10rem;
  }

  .desktop\:last\:-my-44:last-child{
    margin-top: -11rem;
    margin-bottom: -11rem;
  }

  .desktop\:last\:-my-48:last-child{
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .desktop\:last\:-my-52:last-child{
    margin-top: -13rem;
    margin-bottom: -13rem;
  }

  .desktop\:last\:-my-56:last-child{
    margin-top: -14rem;
    margin-bottom: -14rem;
  }

  .desktop\:last\:-my-60:last-child{
    margin-top: -15rem;
    margin-bottom: -15rem;
  }

  .desktop\:last\:-my-64:last-child{
    margin-top: -16rem;
    margin-bottom: -16rem;
  }

  .desktop\:last\:-my-72:last-child{
    margin-top: -18rem;
    margin-bottom: -18rem;
  }

  .desktop\:last\:-my-80:last-child{
    margin-top: -20rem;
    margin-bottom: -20rem;
  }

  .desktop\:last\:-my-96:last-child{
    margin-top: -24rem;
    margin-bottom: -24rem;
  }

  .desktop\:last\:-my-px:last-child{
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .desktop\:last\:-my-0\.5:last-child{
    margin-top: -0.125rem;
    margin-bottom: -0.125rem;
  }

  .desktop\:last\:-my-1\.5:last-child{
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
  }

  .desktop\:last\:-my-2\.5:last-child{
    margin-top: -0.625rem;
    margin-bottom: -0.625rem;
  }

  .desktop\:last\:-my-3\.5:last-child{
    margin-top: -0.875rem;
    margin-bottom: -0.875rem;
  }

  .desktop\:last\:my-neg1:last-child{
    margin-top: -.25rem;
    margin-bottom: -.25rem;
  }

  .desktop\:last\:my-neg2:last-child{
    margin-top: -.5rem;
    margin-bottom: -.5rem;
  }

  .desktop\:last\:my-neg4:last-child{
    margin-top: -1.0rem;
    margin-bottom: -1.0rem;
  }

  .desktop\:last\:my-neg6:last-child{
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .desktop\:last\:my-neg12:last-child{
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  .desktop\:last\:my-neg20:last-child{
    margin-top: -5rem;
    margin-bottom: -5rem;
  }

  .desktop\:mt-0{
    margin-top: 0px;
  }

  .desktop\:mt-1{
    margin-top: 0.25rem;
  }

  .desktop\:mt-2{
    margin-top: 0.5rem;
  }

  .desktop\:mt-3{
    margin-top: 0.75rem;
  }

  .desktop\:mt-4{
    margin-top: 1rem;
  }

  .desktop\:mt-5{
    margin-top: 1.25rem;
  }

  .desktop\:mt-6{
    margin-top: 1.5rem;
  }

  .desktop\:mt-7{
    margin-top: 1.75rem;
  }

  .desktop\:mt-8{
    margin-top: 2rem;
  }

  .desktop\:mt-9{
    margin-top: 2.25rem;
  }

  .desktop\:mt-10{
    margin-top: 2.5rem;
  }

  .desktop\:mt-11{
    margin-top: 2.75rem;
  }

  .desktop\:mt-12{
    margin-top: 3rem;
  }

  .desktop\:mt-14{
    margin-top: 3.5rem;
  }

  .desktop\:mt-16{
    margin-top: 4rem;
  }

  .desktop\:mt-20{
    margin-top: 5rem;
  }

  .desktop\:mt-24{
    margin-top: 6rem;
  }

  .desktop\:mt-28{
    margin-top: 7rem;
  }

  .desktop\:mt-32{
    margin-top: 8rem;
  }

  .desktop\:mt-36{
    margin-top: 9rem;
  }

  .desktop\:mt-40{
    margin-top: 10rem;
  }

  .desktop\:mt-44{
    margin-top: 11rem;
  }

  .desktop\:mt-48{
    margin-top: 12rem;
  }

  .desktop\:mt-52{
    margin-top: 13rem;
  }

  .desktop\:mt-56{
    margin-top: 14rem;
  }

  .desktop\:mt-60{
    margin-top: 15rem;
  }

  .desktop\:mt-64{
    margin-top: 16rem;
  }

  .desktop\:mt-72{
    margin-top: 18rem;
  }

  .desktop\:mt-80{
    margin-top: 20rem;
  }

  .desktop\:mt-96{
    margin-top: 24rem;
  }

  .desktop\:mt-auto{
    margin-top: auto;
  }

  .desktop\:mt-px{
    margin-top: 1px;
  }

  .desktop\:mt-0\.5{
    margin-top: 0.125rem;
  }

  .desktop\:mt-1\.5{
    margin-top: 0.375rem;
  }

  .desktop\:mt-2\.5{
    margin-top: 0.625rem;
  }

  .desktop\:mt-3\.5{
    margin-top: 0.875rem;
  }

  .desktop\:-mt-0{
    margin-top: 0px;
  }

  .desktop\:-mt-1{
    margin-top: -0.25rem;
  }

  .desktop\:-mt-2{
    margin-top: -0.5rem;
  }

  .desktop\:-mt-3{
    margin-top: -0.75rem;
  }

  .desktop\:-mt-4{
    margin-top: -1rem;
  }

  .desktop\:-mt-5{
    margin-top: -1.25rem;
  }

  .desktop\:-mt-6{
    margin-top: -1.5rem;
  }

  .desktop\:-mt-7{
    margin-top: -1.75rem;
  }

  .desktop\:-mt-8{
    margin-top: -2rem;
  }

  .desktop\:-mt-9{
    margin-top: -2.25rem;
  }

  .desktop\:-mt-10{
    margin-top: -2.5rem;
  }

  .desktop\:-mt-11{
    margin-top: -2.75rem;
  }

  .desktop\:-mt-12{
    margin-top: -3rem;
  }

  .desktop\:-mt-14{
    margin-top: -3.5rem;
  }

  .desktop\:-mt-16{
    margin-top: -4rem;
  }

  .desktop\:-mt-20{
    margin-top: -5rem;
  }

  .desktop\:-mt-24{
    margin-top: -6rem;
  }

  .desktop\:-mt-28{
    margin-top: -7rem;
  }

  .desktop\:-mt-32{
    margin-top: -8rem;
  }

  .desktop\:-mt-36{
    margin-top: -9rem;
  }

  .desktop\:-mt-40{
    margin-top: -10rem;
  }

  .desktop\:-mt-44{
    margin-top: -11rem;
  }

  .desktop\:-mt-48{
    margin-top: -12rem;
  }

  .desktop\:-mt-52{
    margin-top: -13rem;
  }

  .desktop\:-mt-56{
    margin-top: -14rem;
  }

  .desktop\:-mt-60{
    margin-top: -15rem;
  }

  .desktop\:-mt-64{
    margin-top: -16rem;
  }

  .desktop\:-mt-72{
    margin-top: -18rem;
  }

  .desktop\:-mt-80{
    margin-top: -20rem;
  }

  .desktop\:-mt-96{
    margin-top: -24rem;
  }

  .desktop\:-mt-px{
    margin-top: -1px;
  }

  .desktop\:-mt-0\.5{
    margin-top: -0.125rem;
  }

  .desktop\:-mt-1\.5{
    margin-top: -0.375rem;
  }

  .desktop\:-mt-2\.5{
    margin-top: -0.625rem;
  }

  .desktop\:-mt-3\.5{
    margin-top: -0.875rem;
  }

  .desktop\:mt-neg1{
    margin-top: -.25rem;
  }

  .desktop\:mt-neg2{
    margin-top: -.5rem;
  }

  .desktop\:mt-neg4{
    margin-top: -1.0rem;
  }

  .desktop\:mt-neg6{
    margin-top: -1.5rem;
  }

  .desktop\:mt-neg12{
    margin-top: -3rem;
  }

  .desktop\:mt-neg20{
    margin-top: -5rem;
  }

  .desktop\:mr-0{
    margin-right: 0px;
  }

  .desktop\:mr-1{
    margin-right: 0.25rem;
  }

  .desktop\:mr-2{
    margin-right: 0.5rem;
  }

  .desktop\:mr-3{
    margin-right: 0.75rem;
  }

  .desktop\:mr-4{
    margin-right: 1rem;
  }

  .desktop\:mr-5{
    margin-right: 1.25rem;
  }

  .desktop\:mr-6{
    margin-right: 1.5rem;
  }

  .desktop\:mr-7{
    margin-right: 1.75rem;
  }

  .desktop\:mr-8{
    margin-right: 2rem;
  }

  .desktop\:mr-9{
    margin-right: 2.25rem;
  }

  .desktop\:mr-10{
    margin-right: 2.5rem;
  }

  .desktop\:mr-11{
    margin-right: 2.75rem;
  }

  .desktop\:mr-12{
    margin-right: 3rem;
  }

  .desktop\:mr-14{
    margin-right: 3.5rem;
  }

  .desktop\:mr-16{
    margin-right: 4rem;
  }

  .desktop\:mr-20{
    margin-right: 5rem;
  }

  .desktop\:mr-24{
    margin-right: 6rem;
  }

  .desktop\:mr-28{
    margin-right: 7rem;
  }

  .desktop\:mr-32{
    margin-right: 8rem;
  }

  .desktop\:mr-36{
    margin-right: 9rem;
  }

  .desktop\:mr-40{
    margin-right: 10rem;
  }

  .desktop\:mr-44{
    margin-right: 11rem;
  }

  .desktop\:mr-48{
    margin-right: 12rem;
  }

  .desktop\:mr-52{
    margin-right: 13rem;
  }

  .desktop\:mr-56{
    margin-right: 14rem;
  }

  .desktop\:mr-60{
    margin-right: 15rem;
  }

  .desktop\:mr-64{
    margin-right: 16rem;
  }

  .desktop\:mr-72{
    margin-right: 18rem;
  }

  .desktop\:mr-80{
    margin-right: 20rem;
  }

  .desktop\:mr-96{
    margin-right: 24rem;
  }

  .desktop\:mr-auto{
    margin-right: auto;
  }

  .desktop\:mr-px{
    margin-right: 1px;
  }

  .desktop\:mr-0\.5{
    margin-right: 0.125rem;
  }

  .desktop\:mr-1\.5{
    margin-right: 0.375rem;
  }

  .desktop\:mr-2\.5{
    margin-right: 0.625rem;
  }

  .desktop\:mr-3\.5{
    margin-right: 0.875rem;
  }

  .desktop\:-mr-0{
    margin-right: 0px;
  }

  .desktop\:-mr-1{
    margin-right: -0.25rem;
  }

  .desktop\:-mr-2{
    margin-right: -0.5rem;
  }

  .desktop\:-mr-3{
    margin-right: -0.75rem;
  }

  .desktop\:-mr-4{
    margin-right: -1rem;
  }

  .desktop\:-mr-5{
    margin-right: -1.25rem;
  }

  .desktop\:-mr-6{
    margin-right: -1.5rem;
  }

  .desktop\:-mr-7{
    margin-right: -1.75rem;
  }

  .desktop\:-mr-8{
    margin-right: -2rem;
  }

  .desktop\:-mr-9{
    margin-right: -2.25rem;
  }

  .desktop\:-mr-10{
    margin-right: -2.5rem;
  }

  .desktop\:-mr-11{
    margin-right: -2.75rem;
  }

  .desktop\:-mr-12{
    margin-right: -3rem;
  }

  .desktop\:-mr-14{
    margin-right: -3.5rem;
  }

  .desktop\:-mr-16{
    margin-right: -4rem;
  }

  .desktop\:-mr-20{
    margin-right: -5rem;
  }

  .desktop\:-mr-24{
    margin-right: -6rem;
  }

  .desktop\:-mr-28{
    margin-right: -7rem;
  }

  .desktop\:-mr-32{
    margin-right: -8rem;
  }

  .desktop\:-mr-36{
    margin-right: -9rem;
  }

  .desktop\:-mr-40{
    margin-right: -10rem;
  }

  .desktop\:-mr-44{
    margin-right: -11rem;
  }

  .desktop\:-mr-48{
    margin-right: -12rem;
  }

  .desktop\:-mr-52{
    margin-right: -13rem;
  }

  .desktop\:-mr-56{
    margin-right: -14rem;
  }

  .desktop\:-mr-60{
    margin-right: -15rem;
  }

  .desktop\:-mr-64{
    margin-right: -16rem;
  }

  .desktop\:-mr-72{
    margin-right: -18rem;
  }

  .desktop\:-mr-80{
    margin-right: -20rem;
  }

  .desktop\:-mr-96{
    margin-right: -24rem;
  }

  .desktop\:-mr-px{
    margin-right: -1px;
  }

  .desktop\:-mr-0\.5{
    margin-right: -0.125rem;
  }

  .desktop\:-mr-1\.5{
    margin-right: -0.375rem;
  }

  .desktop\:-mr-2\.5{
    margin-right: -0.625rem;
  }

  .desktop\:-mr-3\.5{
    margin-right: -0.875rem;
  }

  .desktop\:mr-neg1{
    margin-right: -.25rem;
  }

  .desktop\:mr-neg2{
    margin-right: -.5rem;
  }

  .desktop\:mr-neg4{
    margin-right: -1.0rem;
  }

  .desktop\:mr-neg6{
    margin-right: -1.5rem;
  }

  .desktop\:mr-neg12{
    margin-right: -3rem;
  }

  .desktop\:mr-neg20{
    margin-right: -5rem;
  }

  .desktop\:mb-0{
    margin-bottom: 0px;
  }

  .desktop\:mb-1{
    margin-bottom: 0.25rem;
  }

  .desktop\:mb-2{
    margin-bottom: 0.5rem;
  }

  .desktop\:mb-3{
    margin-bottom: 0.75rem;
  }

  .desktop\:mb-4{
    margin-bottom: 1rem;
  }

  .desktop\:mb-5{
    margin-bottom: 1.25rem;
  }

  .desktop\:mb-6{
    margin-bottom: 1.5rem;
  }

  .desktop\:mb-7{
    margin-bottom: 1.75rem;
  }

  .desktop\:mb-8{
    margin-bottom: 2rem;
  }

  .desktop\:mb-9{
    margin-bottom: 2.25rem;
  }

  .desktop\:mb-10{
    margin-bottom: 2.5rem;
  }

  .desktop\:mb-11{
    margin-bottom: 2.75rem;
  }

  .desktop\:mb-12{
    margin-bottom: 3rem;
  }

  .desktop\:mb-14{
    margin-bottom: 3.5rem;
  }

  .desktop\:mb-16{
    margin-bottom: 4rem;
  }

  .desktop\:mb-20{
    margin-bottom: 5rem;
  }

  .desktop\:mb-24{
    margin-bottom: 6rem;
  }

  .desktop\:mb-28{
    margin-bottom: 7rem;
  }

  .desktop\:mb-32{
    margin-bottom: 8rem;
  }

  .desktop\:mb-36{
    margin-bottom: 9rem;
  }

  .desktop\:mb-40{
    margin-bottom: 10rem;
  }

  .desktop\:mb-44{
    margin-bottom: 11rem;
  }

  .desktop\:mb-48{
    margin-bottom: 12rem;
  }

  .desktop\:mb-52{
    margin-bottom: 13rem;
  }

  .desktop\:mb-56{
    margin-bottom: 14rem;
  }

  .desktop\:mb-60{
    margin-bottom: 15rem;
  }

  .desktop\:mb-64{
    margin-bottom: 16rem;
  }

  .desktop\:mb-72{
    margin-bottom: 18rem;
  }

  .desktop\:mb-80{
    margin-bottom: 20rem;
  }

  .desktop\:mb-96{
    margin-bottom: 24rem;
  }

  .desktop\:mb-auto{
    margin-bottom: auto;
  }

  .desktop\:mb-px{
    margin-bottom: 1px;
  }

  .desktop\:mb-0\.5{
    margin-bottom: 0.125rem;
  }

  .desktop\:mb-1\.5{
    margin-bottom: 0.375rem;
  }

  .desktop\:mb-2\.5{
    margin-bottom: 0.625rem;
  }

  .desktop\:mb-3\.5{
    margin-bottom: 0.875rem;
  }

  .desktop\:-mb-0{
    margin-bottom: 0px;
  }

  .desktop\:-mb-1{
    margin-bottom: -0.25rem;
  }

  .desktop\:-mb-2{
    margin-bottom: -0.5rem;
  }

  .desktop\:-mb-3{
    margin-bottom: -0.75rem;
  }

  .desktop\:-mb-4{
    margin-bottom: -1rem;
  }

  .desktop\:-mb-5{
    margin-bottom: -1.25rem;
  }

  .desktop\:-mb-6{
    margin-bottom: -1.5rem;
  }

  .desktop\:-mb-7{
    margin-bottom: -1.75rem;
  }

  .desktop\:-mb-8{
    margin-bottom: -2rem;
  }

  .desktop\:-mb-9{
    margin-bottom: -2.25rem;
  }

  .desktop\:-mb-10{
    margin-bottom: -2.5rem;
  }

  .desktop\:-mb-11{
    margin-bottom: -2.75rem;
  }

  .desktop\:-mb-12{
    margin-bottom: -3rem;
  }

  .desktop\:-mb-14{
    margin-bottom: -3.5rem;
  }

  .desktop\:-mb-16{
    margin-bottom: -4rem;
  }

  .desktop\:-mb-20{
    margin-bottom: -5rem;
  }

  .desktop\:-mb-24{
    margin-bottom: -6rem;
  }

  .desktop\:-mb-28{
    margin-bottom: -7rem;
  }

  .desktop\:-mb-32{
    margin-bottom: -8rem;
  }

  .desktop\:-mb-36{
    margin-bottom: -9rem;
  }

  .desktop\:-mb-40{
    margin-bottom: -10rem;
  }

  .desktop\:-mb-44{
    margin-bottom: -11rem;
  }

  .desktop\:-mb-48{
    margin-bottom: -12rem;
  }

  .desktop\:-mb-52{
    margin-bottom: -13rem;
  }

  .desktop\:-mb-56{
    margin-bottom: -14rem;
  }

  .desktop\:-mb-60{
    margin-bottom: -15rem;
  }

  .desktop\:-mb-64{
    margin-bottom: -16rem;
  }

  .desktop\:-mb-72{
    margin-bottom: -18rem;
  }

  .desktop\:-mb-80{
    margin-bottom: -20rem;
  }

  .desktop\:-mb-96{
    margin-bottom: -24rem;
  }

  .desktop\:-mb-px{
    margin-bottom: -1px;
  }

  .desktop\:-mb-0\.5{
    margin-bottom: -0.125rem;
  }

  .desktop\:-mb-1\.5{
    margin-bottom: -0.375rem;
  }

  .desktop\:-mb-2\.5{
    margin-bottom: -0.625rem;
  }

  .desktop\:-mb-3\.5{
    margin-bottom: -0.875rem;
  }

  .desktop\:mb-neg1{
    margin-bottom: -.25rem;
  }

  .desktop\:mb-neg2{
    margin-bottom: -.5rem;
  }

  .desktop\:mb-neg4{
    margin-bottom: -1.0rem;
  }

  .desktop\:mb-neg6{
    margin-bottom: -1.5rem;
  }

  .desktop\:mb-neg12{
    margin-bottom: -3rem;
  }

  .desktop\:mb-neg20{
    margin-bottom: -5rem;
  }

  .desktop\:ml-0{
    margin-left: 0px;
  }

  .desktop\:ml-1{
    margin-left: 0.25rem;
  }

  .desktop\:ml-2{
    margin-left: 0.5rem;
  }

  .desktop\:ml-3{
    margin-left: 0.75rem;
  }

  .desktop\:ml-4{
    margin-left: 1rem;
  }

  .desktop\:ml-5{
    margin-left: 1.25rem;
  }

  .desktop\:ml-6{
    margin-left: 1.5rem;
  }

  .desktop\:ml-7{
    margin-left: 1.75rem;
  }

  .desktop\:ml-8{
    margin-left: 2rem;
  }

  .desktop\:ml-9{
    margin-left: 2.25rem;
  }

  .desktop\:ml-10{
    margin-left: 2.5rem;
  }

  .desktop\:ml-11{
    margin-left: 2.75rem;
  }

  .desktop\:ml-12{
    margin-left: 3rem;
  }

  .desktop\:ml-14{
    margin-left: 3.5rem;
  }

  .desktop\:ml-16{
    margin-left: 4rem;
  }

  .desktop\:ml-20{
    margin-left: 5rem;
  }

  .desktop\:ml-24{
    margin-left: 6rem;
  }

  .desktop\:ml-28{
    margin-left: 7rem;
  }

  .desktop\:ml-32{
    margin-left: 8rem;
  }

  .desktop\:ml-36{
    margin-left: 9rem;
  }

  .desktop\:ml-40{
    margin-left: 10rem;
  }

  .desktop\:ml-44{
    margin-left: 11rem;
  }

  .desktop\:ml-48{
    margin-left: 12rem;
  }

  .desktop\:ml-52{
    margin-left: 13rem;
  }

  .desktop\:ml-56{
    margin-left: 14rem;
  }

  .desktop\:ml-60{
    margin-left: 15rem;
  }

  .desktop\:ml-64{
    margin-left: 16rem;
  }

  .desktop\:ml-72{
    margin-left: 18rem;
  }

  .desktop\:ml-80{
    margin-left: 20rem;
  }

  .desktop\:ml-96{
    margin-left: 24rem;
  }

  .desktop\:ml-auto{
    margin-left: auto;
  }

  .desktop\:ml-px{
    margin-left: 1px;
  }

  .desktop\:ml-0\.5{
    margin-left: 0.125rem;
  }

  .desktop\:ml-1\.5{
    margin-left: 0.375rem;
  }

  .desktop\:ml-2\.5{
    margin-left: 0.625rem;
  }

  .desktop\:ml-3\.5{
    margin-left: 0.875rem;
  }

  .desktop\:-ml-0{
    margin-left: 0px;
  }

  .desktop\:-ml-1{
    margin-left: -0.25rem;
  }

  .desktop\:-ml-2{
    margin-left: -0.5rem;
  }

  .desktop\:-ml-3{
    margin-left: -0.75rem;
  }

  .desktop\:-ml-4{
    margin-left: -1rem;
  }

  .desktop\:-ml-5{
    margin-left: -1.25rem;
  }

  .desktop\:-ml-6{
    margin-left: -1.5rem;
  }

  .desktop\:-ml-7{
    margin-left: -1.75rem;
  }

  .desktop\:-ml-8{
    margin-left: -2rem;
  }

  .desktop\:-ml-9{
    margin-left: -2.25rem;
  }

  .desktop\:-ml-10{
    margin-left: -2.5rem;
  }

  .desktop\:-ml-11{
    margin-left: -2.75rem;
  }

  .desktop\:-ml-12{
    margin-left: -3rem;
  }

  .desktop\:-ml-14{
    margin-left: -3.5rem;
  }

  .desktop\:-ml-16{
    margin-left: -4rem;
  }

  .desktop\:-ml-20{
    margin-left: -5rem;
  }

  .desktop\:-ml-24{
    margin-left: -6rem;
  }

  .desktop\:-ml-28{
    margin-left: -7rem;
  }

  .desktop\:-ml-32{
    margin-left: -8rem;
  }

  .desktop\:-ml-36{
    margin-left: -9rem;
  }

  .desktop\:-ml-40{
    margin-left: -10rem;
  }

  .desktop\:-ml-44{
    margin-left: -11rem;
  }

  .desktop\:-ml-48{
    margin-left: -12rem;
  }

  .desktop\:-ml-52{
    margin-left: -13rem;
  }

  .desktop\:-ml-56{
    margin-left: -14rem;
  }

  .desktop\:-ml-60{
    margin-left: -15rem;
  }

  .desktop\:-ml-64{
    margin-left: -16rem;
  }

  .desktop\:-ml-72{
    margin-left: -18rem;
  }

  .desktop\:-ml-80{
    margin-left: -20rem;
  }

  .desktop\:-ml-96{
    margin-left: -24rem;
  }

  .desktop\:-ml-px{
    margin-left: -1px;
  }

  .desktop\:-ml-0\.5{
    margin-left: -0.125rem;
  }

  .desktop\:-ml-1\.5{
    margin-left: -0.375rem;
  }

  .desktop\:-ml-2\.5{
    margin-left: -0.625rem;
  }

  .desktop\:-ml-3\.5{
    margin-left: -0.875rem;
  }

  .desktop\:ml-neg1{
    margin-left: -.25rem;
  }

  .desktop\:ml-neg2{
    margin-left: -.5rem;
  }

  .desktop\:ml-neg4{
    margin-left: -1.0rem;
  }

  .desktop\:ml-neg6{
    margin-left: -1.5rem;
  }

  .desktop\:ml-neg12{
    margin-left: -3rem;
  }

  .desktop\:ml-neg20{
    margin-left: -5rem;
  }

  .desktop\:last\:mt-0:last-child{
    margin-top: 0px;
  }

  .desktop\:last\:mt-1:last-child{
    margin-top: 0.25rem;
  }

  .desktop\:last\:mt-2:last-child{
    margin-top: 0.5rem;
  }

  .desktop\:last\:mt-3:last-child{
    margin-top: 0.75rem;
  }

  .desktop\:last\:mt-4:last-child{
    margin-top: 1rem;
  }

  .desktop\:last\:mt-5:last-child{
    margin-top: 1.25rem;
  }

  .desktop\:last\:mt-6:last-child{
    margin-top: 1.5rem;
  }

  .desktop\:last\:mt-7:last-child{
    margin-top: 1.75rem;
  }

  .desktop\:last\:mt-8:last-child{
    margin-top: 2rem;
  }

  .desktop\:last\:mt-9:last-child{
    margin-top: 2.25rem;
  }

  .desktop\:last\:mt-10:last-child{
    margin-top: 2.5rem;
  }

  .desktop\:last\:mt-11:last-child{
    margin-top: 2.75rem;
  }

  .desktop\:last\:mt-12:last-child{
    margin-top: 3rem;
  }

  .desktop\:last\:mt-14:last-child{
    margin-top: 3.5rem;
  }

  .desktop\:last\:mt-16:last-child{
    margin-top: 4rem;
  }

  .desktop\:last\:mt-20:last-child{
    margin-top: 5rem;
  }

  .desktop\:last\:mt-24:last-child{
    margin-top: 6rem;
  }

  .desktop\:last\:mt-28:last-child{
    margin-top: 7rem;
  }

  .desktop\:last\:mt-32:last-child{
    margin-top: 8rem;
  }

  .desktop\:last\:mt-36:last-child{
    margin-top: 9rem;
  }

  .desktop\:last\:mt-40:last-child{
    margin-top: 10rem;
  }

  .desktop\:last\:mt-44:last-child{
    margin-top: 11rem;
  }

  .desktop\:last\:mt-48:last-child{
    margin-top: 12rem;
  }

  .desktop\:last\:mt-52:last-child{
    margin-top: 13rem;
  }

  .desktop\:last\:mt-56:last-child{
    margin-top: 14rem;
  }

  .desktop\:last\:mt-60:last-child{
    margin-top: 15rem;
  }

  .desktop\:last\:mt-64:last-child{
    margin-top: 16rem;
  }

  .desktop\:last\:mt-72:last-child{
    margin-top: 18rem;
  }

  .desktop\:last\:mt-80:last-child{
    margin-top: 20rem;
  }

  .desktop\:last\:mt-96:last-child{
    margin-top: 24rem;
  }

  .desktop\:last\:mt-auto:last-child{
    margin-top: auto;
  }

  .desktop\:last\:mt-px:last-child{
    margin-top: 1px;
  }

  .desktop\:last\:mt-0\.5:last-child{
    margin-top: 0.125rem;
  }

  .desktop\:last\:mt-1\.5:last-child{
    margin-top: 0.375rem;
  }

  .desktop\:last\:mt-2\.5:last-child{
    margin-top: 0.625rem;
  }

  .desktop\:last\:mt-3\.5:last-child{
    margin-top: 0.875rem;
  }

  .desktop\:last\:-mt-0:last-child{
    margin-top: 0px;
  }

  .desktop\:last\:-mt-1:last-child{
    margin-top: -0.25rem;
  }

  .desktop\:last\:-mt-2:last-child{
    margin-top: -0.5rem;
  }

  .desktop\:last\:-mt-3:last-child{
    margin-top: -0.75rem;
  }

  .desktop\:last\:-mt-4:last-child{
    margin-top: -1rem;
  }

  .desktop\:last\:-mt-5:last-child{
    margin-top: -1.25rem;
  }

  .desktop\:last\:-mt-6:last-child{
    margin-top: -1.5rem;
  }

  .desktop\:last\:-mt-7:last-child{
    margin-top: -1.75rem;
  }

  .desktop\:last\:-mt-8:last-child{
    margin-top: -2rem;
  }

  .desktop\:last\:-mt-9:last-child{
    margin-top: -2.25rem;
  }

  .desktop\:last\:-mt-10:last-child{
    margin-top: -2.5rem;
  }

  .desktop\:last\:-mt-11:last-child{
    margin-top: -2.75rem;
  }

  .desktop\:last\:-mt-12:last-child{
    margin-top: -3rem;
  }

  .desktop\:last\:-mt-14:last-child{
    margin-top: -3.5rem;
  }

  .desktop\:last\:-mt-16:last-child{
    margin-top: -4rem;
  }

  .desktop\:last\:-mt-20:last-child{
    margin-top: -5rem;
  }

  .desktop\:last\:-mt-24:last-child{
    margin-top: -6rem;
  }

  .desktop\:last\:-mt-28:last-child{
    margin-top: -7rem;
  }

  .desktop\:last\:-mt-32:last-child{
    margin-top: -8rem;
  }

  .desktop\:last\:-mt-36:last-child{
    margin-top: -9rem;
  }

  .desktop\:last\:-mt-40:last-child{
    margin-top: -10rem;
  }

  .desktop\:last\:-mt-44:last-child{
    margin-top: -11rem;
  }

  .desktop\:last\:-mt-48:last-child{
    margin-top: -12rem;
  }

  .desktop\:last\:-mt-52:last-child{
    margin-top: -13rem;
  }

  .desktop\:last\:-mt-56:last-child{
    margin-top: -14rem;
  }

  .desktop\:last\:-mt-60:last-child{
    margin-top: -15rem;
  }

  .desktop\:last\:-mt-64:last-child{
    margin-top: -16rem;
  }

  .desktop\:last\:-mt-72:last-child{
    margin-top: -18rem;
  }

  .desktop\:last\:-mt-80:last-child{
    margin-top: -20rem;
  }

  .desktop\:last\:-mt-96:last-child{
    margin-top: -24rem;
  }

  .desktop\:last\:-mt-px:last-child{
    margin-top: -1px;
  }

  .desktop\:last\:-mt-0\.5:last-child{
    margin-top: -0.125rem;
  }

  .desktop\:last\:-mt-1\.5:last-child{
    margin-top: -0.375rem;
  }

  .desktop\:last\:-mt-2\.5:last-child{
    margin-top: -0.625rem;
  }

  .desktop\:last\:-mt-3\.5:last-child{
    margin-top: -0.875rem;
  }

  .desktop\:last\:mt-neg1:last-child{
    margin-top: -.25rem;
  }

  .desktop\:last\:mt-neg2:last-child{
    margin-top: -.5rem;
  }

  .desktop\:last\:mt-neg4:last-child{
    margin-top: -1.0rem;
  }

  .desktop\:last\:mt-neg6:last-child{
    margin-top: -1.5rem;
  }

  .desktop\:last\:mt-neg12:last-child{
    margin-top: -3rem;
  }

  .desktop\:last\:mt-neg20:last-child{
    margin-top: -5rem;
  }

  .desktop\:last\:mr-0:last-child{
    margin-right: 0px;
  }

  .desktop\:last\:mr-1:last-child{
    margin-right: 0.25rem;
  }

  .desktop\:last\:mr-2:last-child{
    margin-right: 0.5rem;
  }

  .desktop\:last\:mr-3:last-child{
    margin-right: 0.75rem;
  }

  .desktop\:last\:mr-4:last-child{
    margin-right: 1rem;
  }

  .desktop\:last\:mr-5:last-child{
    margin-right: 1.25rem;
  }

  .desktop\:last\:mr-6:last-child{
    margin-right: 1.5rem;
  }

  .desktop\:last\:mr-7:last-child{
    margin-right: 1.75rem;
  }

  .desktop\:last\:mr-8:last-child{
    margin-right: 2rem;
  }

  .desktop\:last\:mr-9:last-child{
    margin-right: 2.25rem;
  }

  .desktop\:last\:mr-10:last-child{
    margin-right: 2.5rem;
  }

  .desktop\:last\:mr-11:last-child{
    margin-right: 2.75rem;
  }

  .desktop\:last\:mr-12:last-child{
    margin-right: 3rem;
  }

  .desktop\:last\:mr-14:last-child{
    margin-right: 3.5rem;
  }

  .desktop\:last\:mr-16:last-child{
    margin-right: 4rem;
  }

  .desktop\:last\:mr-20:last-child{
    margin-right: 5rem;
  }

  .desktop\:last\:mr-24:last-child{
    margin-right: 6rem;
  }

  .desktop\:last\:mr-28:last-child{
    margin-right: 7rem;
  }

  .desktop\:last\:mr-32:last-child{
    margin-right: 8rem;
  }

  .desktop\:last\:mr-36:last-child{
    margin-right: 9rem;
  }

  .desktop\:last\:mr-40:last-child{
    margin-right: 10rem;
  }

  .desktop\:last\:mr-44:last-child{
    margin-right: 11rem;
  }

  .desktop\:last\:mr-48:last-child{
    margin-right: 12rem;
  }

  .desktop\:last\:mr-52:last-child{
    margin-right: 13rem;
  }

  .desktop\:last\:mr-56:last-child{
    margin-right: 14rem;
  }

  .desktop\:last\:mr-60:last-child{
    margin-right: 15rem;
  }

  .desktop\:last\:mr-64:last-child{
    margin-right: 16rem;
  }

  .desktop\:last\:mr-72:last-child{
    margin-right: 18rem;
  }

  .desktop\:last\:mr-80:last-child{
    margin-right: 20rem;
  }

  .desktop\:last\:mr-96:last-child{
    margin-right: 24rem;
  }

  .desktop\:last\:mr-auto:last-child{
    margin-right: auto;
  }

  .desktop\:last\:mr-px:last-child{
    margin-right: 1px;
  }

  .desktop\:last\:mr-0\.5:last-child{
    margin-right: 0.125rem;
  }

  .desktop\:last\:mr-1\.5:last-child{
    margin-right: 0.375rem;
  }

  .desktop\:last\:mr-2\.5:last-child{
    margin-right: 0.625rem;
  }

  .desktop\:last\:mr-3\.5:last-child{
    margin-right: 0.875rem;
  }

  .desktop\:last\:-mr-0:last-child{
    margin-right: 0px;
  }

  .desktop\:last\:-mr-1:last-child{
    margin-right: -0.25rem;
  }

  .desktop\:last\:-mr-2:last-child{
    margin-right: -0.5rem;
  }

  .desktop\:last\:-mr-3:last-child{
    margin-right: -0.75rem;
  }

  .desktop\:last\:-mr-4:last-child{
    margin-right: -1rem;
  }

  .desktop\:last\:-mr-5:last-child{
    margin-right: -1.25rem;
  }

  .desktop\:last\:-mr-6:last-child{
    margin-right: -1.5rem;
  }

  .desktop\:last\:-mr-7:last-child{
    margin-right: -1.75rem;
  }

  .desktop\:last\:-mr-8:last-child{
    margin-right: -2rem;
  }

  .desktop\:last\:-mr-9:last-child{
    margin-right: -2.25rem;
  }

  .desktop\:last\:-mr-10:last-child{
    margin-right: -2.5rem;
  }

  .desktop\:last\:-mr-11:last-child{
    margin-right: -2.75rem;
  }

  .desktop\:last\:-mr-12:last-child{
    margin-right: -3rem;
  }

  .desktop\:last\:-mr-14:last-child{
    margin-right: -3.5rem;
  }

  .desktop\:last\:-mr-16:last-child{
    margin-right: -4rem;
  }

  .desktop\:last\:-mr-20:last-child{
    margin-right: -5rem;
  }

  .desktop\:last\:-mr-24:last-child{
    margin-right: -6rem;
  }

  .desktop\:last\:-mr-28:last-child{
    margin-right: -7rem;
  }

  .desktop\:last\:-mr-32:last-child{
    margin-right: -8rem;
  }

  .desktop\:last\:-mr-36:last-child{
    margin-right: -9rem;
  }

  .desktop\:last\:-mr-40:last-child{
    margin-right: -10rem;
  }

  .desktop\:last\:-mr-44:last-child{
    margin-right: -11rem;
  }

  .desktop\:last\:-mr-48:last-child{
    margin-right: -12rem;
  }

  .desktop\:last\:-mr-52:last-child{
    margin-right: -13rem;
  }

  .desktop\:last\:-mr-56:last-child{
    margin-right: -14rem;
  }

  .desktop\:last\:-mr-60:last-child{
    margin-right: -15rem;
  }

  .desktop\:last\:-mr-64:last-child{
    margin-right: -16rem;
  }

  .desktop\:last\:-mr-72:last-child{
    margin-right: -18rem;
  }

  .desktop\:last\:-mr-80:last-child{
    margin-right: -20rem;
  }

  .desktop\:last\:-mr-96:last-child{
    margin-right: -24rem;
  }

  .desktop\:last\:-mr-px:last-child{
    margin-right: -1px;
  }

  .desktop\:last\:-mr-0\.5:last-child{
    margin-right: -0.125rem;
  }

  .desktop\:last\:-mr-1\.5:last-child{
    margin-right: -0.375rem;
  }

  .desktop\:last\:-mr-2\.5:last-child{
    margin-right: -0.625rem;
  }

  .desktop\:last\:-mr-3\.5:last-child{
    margin-right: -0.875rem;
  }

  .desktop\:last\:mr-neg1:last-child{
    margin-right: -.25rem;
  }

  .desktop\:last\:mr-neg2:last-child{
    margin-right: -.5rem;
  }

  .desktop\:last\:mr-neg4:last-child{
    margin-right: -1.0rem;
  }

  .desktop\:last\:mr-neg6:last-child{
    margin-right: -1.5rem;
  }

  .desktop\:last\:mr-neg12:last-child{
    margin-right: -3rem;
  }

  .desktop\:last\:mr-neg20:last-child{
    margin-right: -5rem;
  }

  .desktop\:last\:mb-0:last-child{
    margin-bottom: 0px;
  }

  .desktop\:last\:mb-1:last-child{
    margin-bottom: 0.25rem;
  }

  .desktop\:last\:mb-2:last-child{
    margin-bottom: 0.5rem;
  }

  .desktop\:last\:mb-3:last-child{
    margin-bottom: 0.75rem;
  }

  .desktop\:last\:mb-4:last-child{
    margin-bottom: 1rem;
  }

  .desktop\:last\:mb-5:last-child{
    margin-bottom: 1.25rem;
  }

  .desktop\:last\:mb-6:last-child{
    margin-bottom: 1.5rem;
  }

  .desktop\:last\:mb-7:last-child{
    margin-bottom: 1.75rem;
  }

  .desktop\:last\:mb-8:last-child{
    margin-bottom: 2rem;
  }

  .desktop\:last\:mb-9:last-child{
    margin-bottom: 2.25rem;
  }

  .desktop\:last\:mb-10:last-child{
    margin-bottom: 2.5rem;
  }

  .desktop\:last\:mb-11:last-child{
    margin-bottom: 2.75rem;
  }

  .desktop\:last\:mb-12:last-child{
    margin-bottom: 3rem;
  }

  .desktop\:last\:mb-14:last-child{
    margin-bottom: 3.5rem;
  }

  .desktop\:last\:mb-16:last-child{
    margin-bottom: 4rem;
  }

  .desktop\:last\:mb-20:last-child{
    margin-bottom: 5rem;
  }

  .desktop\:last\:mb-24:last-child{
    margin-bottom: 6rem;
  }

  .desktop\:last\:mb-28:last-child{
    margin-bottom: 7rem;
  }

  .desktop\:last\:mb-32:last-child{
    margin-bottom: 8rem;
  }

  .desktop\:last\:mb-36:last-child{
    margin-bottom: 9rem;
  }

  .desktop\:last\:mb-40:last-child{
    margin-bottom: 10rem;
  }

  .desktop\:last\:mb-44:last-child{
    margin-bottom: 11rem;
  }

  .desktop\:last\:mb-48:last-child{
    margin-bottom: 12rem;
  }

  .desktop\:last\:mb-52:last-child{
    margin-bottom: 13rem;
  }

  .desktop\:last\:mb-56:last-child{
    margin-bottom: 14rem;
  }

  .desktop\:last\:mb-60:last-child{
    margin-bottom: 15rem;
  }

  .desktop\:last\:mb-64:last-child{
    margin-bottom: 16rem;
  }

  .desktop\:last\:mb-72:last-child{
    margin-bottom: 18rem;
  }

  .desktop\:last\:mb-80:last-child{
    margin-bottom: 20rem;
  }

  .desktop\:last\:mb-96:last-child{
    margin-bottom: 24rem;
  }

  .desktop\:last\:mb-auto:last-child{
    margin-bottom: auto;
  }

  .desktop\:last\:mb-px:last-child{
    margin-bottom: 1px;
  }

  .desktop\:last\:mb-0\.5:last-child{
    margin-bottom: 0.125rem;
  }

  .desktop\:last\:mb-1\.5:last-child{
    margin-bottom: 0.375rem;
  }

  .desktop\:last\:mb-2\.5:last-child{
    margin-bottom: 0.625rem;
  }

  .desktop\:last\:mb-3\.5:last-child{
    margin-bottom: 0.875rem;
  }

  .desktop\:last\:-mb-0:last-child{
    margin-bottom: 0px;
  }

  .desktop\:last\:-mb-1:last-child{
    margin-bottom: -0.25rem;
  }

  .desktop\:last\:-mb-2:last-child{
    margin-bottom: -0.5rem;
  }

  .desktop\:last\:-mb-3:last-child{
    margin-bottom: -0.75rem;
  }

  .desktop\:last\:-mb-4:last-child{
    margin-bottom: -1rem;
  }

  .desktop\:last\:-mb-5:last-child{
    margin-bottom: -1.25rem;
  }

  .desktop\:last\:-mb-6:last-child{
    margin-bottom: -1.5rem;
  }

  .desktop\:last\:-mb-7:last-child{
    margin-bottom: -1.75rem;
  }

  .desktop\:last\:-mb-8:last-child{
    margin-bottom: -2rem;
  }

  .desktop\:last\:-mb-9:last-child{
    margin-bottom: -2.25rem;
  }

  .desktop\:last\:-mb-10:last-child{
    margin-bottom: -2.5rem;
  }

  .desktop\:last\:-mb-11:last-child{
    margin-bottom: -2.75rem;
  }

  .desktop\:last\:-mb-12:last-child{
    margin-bottom: -3rem;
  }

  .desktop\:last\:-mb-14:last-child{
    margin-bottom: -3.5rem;
  }

  .desktop\:last\:-mb-16:last-child{
    margin-bottom: -4rem;
  }

  .desktop\:last\:-mb-20:last-child{
    margin-bottom: -5rem;
  }

  .desktop\:last\:-mb-24:last-child{
    margin-bottom: -6rem;
  }

  .desktop\:last\:-mb-28:last-child{
    margin-bottom: -7rem;
  }

  .desktop\:last\:-mb-32:last-child{
    margin-bottom: -8rem;
  }

  .desktop\:last\:-mb-36:last-child{
    margin-bottom: -9rem;
  }

  .desktop\:last\:-mb-40:last-child{
    margin-bottom: -10rem;
  }

  .desktop\:last\:-mb-44:last-child{
    margin-bottom: -11rem;
  }

  .desktop\:last\:-mb-48:last-child{
    margin-bottom: -12rem;
  }

  .desktop\:last\:-mb-52:last-child{
    margin-bottom: -13rem;
  }

  .desktop\:last\:-mb-56:last-child{
    margin-bottom: -14rem;
  }

  .desktop\:last\:-mb-60:last-child{
    margin-bottom: -15rem;
  }

  .desktop\:last\:-mb-64:last-child{
    margin-bottom: -16rem;
  }

  .desktop\:last\:-mb-72:last-child{
    margin-bottom: -18rem;
  }

  .desktop\:last\:-mb-80:last-child{
    margin-bottom: -20rem;
  }

  .desktop\:last\:-mb-96:last-child{
    margin-bottom: -24rem;
  }

  .desktop\:last\:-mb-px:last-child{
    margin-bottom: -1px;
  }

  .desktop\:last\:-mb-0\.5:last-child{
    margin-bottom: -0.125rem;
  }

  .desktop\:last\:-mb-1\.5:last-child{
    margin-bottom: -0.375rem;
  }

  .desktop\:last\:-mb-2\.5:last-child{
    margin-bottom: -0.625rem;
  }

  .desktop\:last\:-mb-3\.5:last-child{
    margin-bottom: -0.875rem;
  }

  .desktop\:last\:mb-neg1:last-child{
    margin-bottom: -.25rem;
  }

  .desktop\:last\:mb-neg2:last-child{
    margin-bottom: -.5rem;
  }

  .desktop\:last\:mb-neg4:last-child{
    margin-bottom: -1.0rem;
  }

  .desktop\:last\:mb-neg6:last-child{
    margin-bottom: -1.5rem;
  }

  .desktop\:last\:mb-neg12:last-child{
    margin-bottom: -3rem;
  }

  .desktop\:last\:mb-neg20:last-child{
    margin-bottom: -5rem;
  }

  .desktop\:last\:ml-0:last-child{
    margin-left: 0px;
  }

  .desktop\:last\:ml-1:last-child{
    margin-left: 0.25rem;
  }

  .desktop\:last\:ml-2:last-child{
    margin-left: 0.5rem;
  }

  .desktop\:last\:ml-3:last-child{
    margin-left: 0.75rem;
  }

  .desktop\:last\:ml-4:last-child{
    margin-left: 1rem;
  }

  .desktop\:last\:ml-5:last-child{
    margin-left: 1.25rem;
  }

  .desktop\:last\:ml-6:last-child{
    margin-left: 1.5rem;
  }

  .desktop\:last\:ml-7:last-child{
    margin-left: 1.75rem;
  }

  .desktop\:last\:ml-8:last-child{
    margin-left: 2rem;
  }

  .desktop\:last\:ml-9:last-child{
    margin-left: 2.25rem;
  }

  .desktop\:last\:ml-10:last-child{
    margin-left: 2.5rem;
  }

  .desktop\:last\:ml-11:last-child{
    margin-left: 2.75rem;
  }

  .desktop\:last\:ml-12:last-child{
    margin-left: 3rem;
  }

  .desktop\:last\:ml-14:last-child{
    margin-left: 3.5rem;
  }

  .desktop\:last\:ml-16:last-child{
    margin-left: 4rem;
  }

  .desktop\:last\:ml-20:last-child{
    margin-left: 5rem;
  }

  .desktop\:last\:ml-24:last-child{
    margin-left: 6rem;
  }

  .desktop\:last\:ml-28:last-child{
    margin-left: 7rem;
  }

  .desktop\:last\:ml-32:last-child{
    margin-left: 8rem;
  }

  .desktop\:last\:ml-36:last-child{
    margin-left: 9rem;
  }

  .desktop\:last\:ml-40:last-child{
    margin-left: 10rem;
  }

  .desktop\:last\:ml-44:last-child{
    margin-left: 11rem;
  }

  .desktop\:last\:ml-48:last-child{
    margin-left: 12rem;
  }

  .desktop\:last\:ml-52:last-child{
    margin-left: 13rem;
  }

  .desktop\:last\:ml-56:last-child{
    margin-left: 14rem;
  }

  .desktop\:last\:ml-60:last-child{
    margin-left: 15rem;
  }

  .desktop\:last\:ml-64:last-child{
    margin-left: 16rem;
  }

  .desktop\:last\:ml-72:last-child{
    margin-left: 18rem;
  }

  .desktop\:last\:ml-80:last-child{
    margin-left: 20rem;
  }

  .desktop\:last\:ml-96:last-child{
    margin-left: 24rem;
  }

  .desktop\:last\:ml-auto:last-child{
    margin-left: auto;
  }

  .desktop\:last\:ml-px:last-child{
    margin-left: 1px;
  }

  .desktop\:last\:ml-0\.5:last-child{
    margin-left: 0.125rem;
  }

  .desktop\:last\:ml-1\.5:last-child{
    margin-left: 0.375rem;
  }

  .desktop\:last\:ml-2\.5:last-child{
    margin-left: 0.625rem;
  }

  .desktop\:last\:ml-3\.5:last-child{
    margin-left: 0.875rem;
  }

  .desktop\:last\:-ml-0:last-child{
    margin-left: 0px;
  }

  .desktop\:last\:-ml-1:last-child{
    margin-left: -0.25rem;
  }

  .desktop\:last\:-ml-2:last-child{
    margin-left: -0.5rem;
  }

  .desktop\:last\:-ml-3:last-child{
    margin-left: -0.75rem;
  }

  .desktop\:last\:-ml-4:last-child{
    margin-left: -1rem;
  }

  .desktop\:last\:-ml-5:last-child{
    margin-left: -1.25rem;
  }

  .desktop\:last\:-ml-6:last-child{
    margin-left: -1.5rem;
  }

  .desktop\:last\:-ml-7:last-child{
    margin-left: -1.75rem;
  }

  .desktop\:last\:-ml-8:last-child{
    margin-left: -2rem;
  }

  .desktop\:last\:-ml-9:last-child{
    margin-left: -2.25rem;
  }

  .desktop\:last\:-ml-10:last-child{
    margin-left: -2.5rem;
  }

  .desktop\:last\:-ml-11:last-child{
    margin-left: -2.75rem;
  }

  .desktop\:last\:-ml-12:last-child{
    margin-left: -3rem;
  }

  .desktop\:last\:-ml-14:last-child{
    margin-left: -3.5rem;
  }

  .desktop\:last\:-ml-16:last-child{
    margin-left: -4rem;
  }

  .desktop\:last\:-ml-20:last-child{
    margin-left: -5rem;
  }

  .desktop\:last\:-ml-24:last-child{
    margin-left: -6rem;
  }

  .desktop\:last\:-ml-28:last-child{
    margin-left: -7rem;
  }

  .desktop\:last\:-ml-32:last-child{
    margin-left: -8rem;
  }

  .desktop\:last\:-ml-36:last-child{
    margin-left: -9rem;
  }

  .desktop\:last\:-ml-40:last-child{
    margin-left: -10rem;
  }

  .desktop\:last\:-ml-44:last-child{
    margin-left: -11rem;
  }

  .desktop\:last\:-ml-48:last-child{
    margin-left: -12rem;
  }

  .desktop\:last\:-ml-52:last-child{
    margin-left: -13rem;
  }

  .desktop\:last\:-ml-56:last-child{
    margin-left: -14rem;
  }

  .desktop\:last\:-ml-60:last-child{
    margin-left: -15rem;
  }

  .desktop\:last\:-ml-64:last-child{
    margin-left: -16rem;
  }

  .desktop\:last\:-ml-72:last-child{
    margin-left: -18rem;
  }

  .desktop\:last\:-ml-80:last-child{
    margin-left: -20rem;
  }

  .desktop\:last\:-ml-96:last-child{
    margin-left: -24rem;
  }

  .desktop\:last\:-ml-px:last-child{
    margin-left: -1px;
  }

  .desktop\:last\:-ml-0\.5:last-child{
    margin-left: -0.125rem;
  }

  .desktop\:last\:-ml-1\.5:last-child{
    margin-left: -0.375rem;
  }

  .desktop\:last\:-ml-2\.5:last-child{
    margin-left: -0.625rem;
  }

  .desktop\:last\:-ml-3\.5:last-child{
    margin-left: -0.875rem;
  }

  .desktop\:last\:ml-neg1:last-child{
    margin-left: -.25rem;
  }

  .desktop\:last\:ml-neg2:last-child{
    margin-left: -.5rem;
  }

  .desktop\:last\:ml-neg4:last-child{
    margin-left: -1.0rem;
  }

  .desktop\:last\:ml-neg6:last-child{
    margin-left: -1.5rem;
  }

  .desktop\:last\:ml-neg12:last-child{
    margin-left: -3rem;
  }

  .desktop\:last\:ml-neg20:last-child{
    margin-left: -5rem;
  }

  .desktop\:hover\:mt-0:hover{
    margin-top: 0px;
  }

  .desktop\:hover\:mt-1:hover{
    margin-top: 0.25rem;
  }

  .desktop\:hover\:mt-2:hover{
    margin-top: 0.5rem;
  }

  .desktop\:hover\:mt-3:hover{
    margin-top: 0.75rem;
  }

  .desktop\:hover\:mt-4:hover{
    margin-top: 1rem;
  }

  .desktop\:hover\:mt-5:hover{
    margin-top: 1.25rem;
  }

  .desktop\:hover\:mt-6:hover{
    margin-top: 1.5rem;
  }

  .desktop\:hover\:mt-7:hover{
    margin-top: 1.75rem;
  }

  .desktop\:hover\:mt-8:hover{
    margin-top: 2rem;
  }

  .desktop\:hover\:mt-9:hover{
    margin-top: 2.25rem;
  }

  .desktop\:hover\:mt-10:hover{
    margin-top: 2.5rem;
  }

  .desktop\:hover\:mt-11:hover{
    margin-top: 2.75rem;
  }

  .desktop\:hover\:mt-12:hover{
    margin-top: 3rem;
  }

  .desktop\:hover\:mt-14:hover{
    margin-top: 3.5rem;
  }

  .desktop\:hover\:mt-16:hover{
    margin-top: 4rem;
  }

  .desktop\:hover\:mt-20:hover{
    margin-top: 5rem;
  }

  .desktop\:hover\:mt-24:hover{
    margin-top: 6rem;
  }

  .desktop\:hover\:mt-28:hover{
    margin-top: 7rem;
  }

  .desktop\:hover\:mt-32:hover{
    margin-top: 8rem;
  }

  .desktop\:hover\:mt-36:hover{
    margin-top: 9rem;
  }

  .desktop\:hover\:mt-40:hover{
    margin-top: 10rem;
  }

  .desktop\:hover\:mt-44:hover{
    margin-top: 11rem;
  }

  .desktop\:hover\:mt-48:hover{
    margin-top: 12rem;
  }

  .desktop\:hover\:mt-52:hover{
    margin-top: 13rem;
  }

  .desktop\:hover\:mt-56:hover{
    margin-top: 14rem;
  }

  .desktop\:hover\:mt-60:hover{
    margin-top: 15rem;
  }

  .desktop\:hover\:mt-64:hover{
    margin-top: 16rem;
  }

  .desktop\:hover\:mt-72:hover{
    margin-top: 18rem;
  }

  .desktop\:hover\:mt-80:hover{
    margin-top: 20rem;
  }

  .desktop\:hover\:mt-96:hover{
    margin-top: 24rem;
  }

  .desktop\:hover\:mt-auto:hover{
    margin-top: auto;
  }

  .desktop\:hover\:mt-px:hover{
    margin-top: 1px;
  }

  .desktop\:hover\:mt-0\.5:hover{
    margin-top: 0.125rem;
  }

  .desktop\:hover\:mt-1\.5:hover{
    margin-top: 0.375rem;
  }

  .desktop\:hover\:mt-2\.5:hover{
    margin-top: 0.625rem;
  }

  .desktop\:hover\:mt-3\.5:hover{
    margin-top: 0.875rem;
  }

  .desktop\:hover\:-mt-0:hover{
    margin-top: 0px;
  }

  .desktop\:hover\:-mt-1:hover{
    margin-top: -0.25rem;
  }

  .desktop\:hover\:-mt-2:hover{
    margin-top: -0.5rem;
  }

  .desktop\:hover\:-mt-3:hover{
    margin-top: -0.75rem;
  }

  .desktop\:hover\:-mt-4:hover{
    margin-top: -1rem;
  }

  .desktop\:hover\:-mt-5:hover{
    margin-top: -1.25rem;
  }

  .desktop\:hover\:-mt-6:hover{
    margin-top: -1.5rem;
  }

  .desktop\:hover\:-mt-7:hover{
    margin-top: -1.75rem;
  }

  .desktop\:hover\:-mt-8:hover{
    margin-top: -2rem;
  }

  .desktop\:hover\:-mt-9:hover{
    margin-top: -2.25rem;
  }

  .desktop\:hover\:-mt-10:hover{
    margin-top: -2.5rem;
  }

  .desktop\:hover\:-mt-11:hover{
    margin-top: -2.75rem;
  }

  .desktop\:hover\:-mt-12:hover{
    margin-top: -3rem;
  }

  .desktop\:hover\:-mt-14:hover{
    margin-top: -3.5rem;
  }

  .desktop\:hover\:-mt-16:hover{
    margin-top: -4rem;
  }

  .desktop\:hover\:-mt-20:hover{
    margin-top: -5rem;
  }

  .desktop\:hover\:-mt-24:hover{
    margin-top: -6rem;
  }

  .desktop\:hover\:-mt-28:hover{
    margin-top: -7rem;
  }

  .desktop\:hover\:-mt-32:hover{
    margin-top: -8rem;
  }

  .desktop\:hover\:-mt-36:hover{
    margin-top: -9rem;
  }

  .desktop\:hover\:-mt-40:hover{
    margin-top: -10rem;
  }

  .desktop\:hover\:-mt-44:hover{
    margin-top: -11rem;
  }

  .desktop\:hover\:-mt-48:hover{
    margin-top: -12rem;
  }

  .desktop\:hover\:-mt-52:hover{
    margin-top: -13rem;
  }

  .desktop\:hover\:-mt-56:hover{
    margin-top: -14rem;
  }

  .desktop\:hover\:-mt-60:hover{
    margin-top: -15rem;
  }

  .desktop\:hover\:-mt-64:hover{
    margin-top: -16rem;
  }

  .desktop\:hover\:-mt-72:hover{
    margin-top: -18rem;
  }

  .desktop\:hover\:-mt-80:hover{
    margin-top: -20rem;
  }

  .desktop\:hover\:-mt-96:hover{
    margin-top: -24rem;
  }

  .desktop\:hover\:-mt-px:hover{
    margin-top: -1px;
  }

  .desktop\:hover\:-mt-0\.5:hover{
    margin-top: -0.125rem;
  }

  .desktop\:hover\:-mt-1\.5:hover{
    margin-top: -0.375rem;
  }

  .desktop\:hover\:-mt-2\.5:hover{
    margin-top: -0.625rem;
  }

  .desktop\:hover\:-mt-3\.5:hover{
    margin-top: -0.875rem;
  }

  .desktop\:hover\:mt-neg1:hover{
    margin-top: -.25rem;
  }

  .desktop\:hover\:mt-neg2:hover{
    margin-top: -.5rem;
  }

  .desktop\:hover\:mt-neg4:hover{
    margin-top: -1.0rem;
  }

  .desktop\:hover\:mt-neg6:hover{
    margin-top: -1.5rem;
  }

  .desktop\:hover\:mt-neg12:hover{
    margin-top: -3rem;
  }

  .desktop\:hover\:mt-neg20:hover{
    margin-top: -5rem;
  }

  .desktop\:hover\:mr-0:hover{
    margin-right: 0px;
  }

  .desktop\:hover\:mr-1:hover{
    margin-right: 0.25rem;
  }

  .desktop\:hover\:mr-2:hover{
    margin-right: 0.5rem;
  }

  .desktop\:hover\:mr-3:hover{
    margin-right: 0.75rem;
  }

  .desktop\:hover\:mr-4:hover{
    margin-right: 1rem;
  }

  .desktop\:hover\:mr-5:hover{
    margin-right: 1.25rem;
  }

  .desktop\:hover\:mr-6:hover{
    margin-right: 1.5rem;
  }

  .desktop\:hover\:mr-7:hover{
    margin-right: 1.75rem;
  }

  .desktop\:hover\:mr-8:hover{
    margin-right: 2rem;
  }

  .desktop\:hover\:mr-9:hover{
    margin-right: 2.25rem;
  }

  .desktop\:hover\:mr-10:hover{
    margin-right: 2.5rem;
  }

  .desktop\:hover\:mr-11:hover{
    margin-right: 2.75rem;
  }

  .desktop\:hover\:mr-12:hover{
    margin-right: 3rem;
  }

  .desktop\:hover\:mr-14:hover{
    margin-right: 3.5rem;
  }

  .desktop\:hover\:mr-16:hover{
    margin-right: 4rem;
  }

  .desktop\:hover\:mr-20:hover{
    margin-right: 5rem;
  }

  .desktop\:hover\:mr-24:hover{
    margin-right: 6rem;
  }

  .desktop\:hover\:mr-28:hover{
    margin-right: 7rem;
  }

  .desktop\:hover\:mr-32:hover{
    margin-right: 8rem;
  }

  .desktop\:hover\:mr-36:hover{
    margin-right: 9rem;
  }

  .desktop\:hover\:mr-40:hover{
    margin-right: 10rem;
  }

  .desktop\:hover\:mr-44:hover{
    margin-right: 11rem;
  }

  .desktop\:hover\:mr-48:hover{
    margin-right: 12rem;
  }

  .desktop\:hover\:mr-52:hover{
    margin-right: 13rem;
  }

  .desktop\:hover\:mr-56:hover{
    margin-right: 14rem;
  }

  .desktop\:hover\:mr-60:hover{
    margin-right: 15rem;
  }

  .desktop\:hover\:mr-64:hover{
    margin-right: 16rem;
  }

  .desktop\:hover\:mr-72:hover{
    margin-right: 18rem;
  }

  .desktop\:hover\:mr-80:hover{
    margin-right: 20rem;
  }

  .desktop\:hover\:mr-96:hover{
    margin-right: 24rem;
  }

  .desktop\:hover\:mr-auto:hover{
    margin-right: auto;
  }

  .desktop\:hover\:mr-px:hover{
    margin-right: 1px;
  }

  .desktop\:hover\:mr-0\.5:hover{
    margin-right: 0.125rem;
  }

  .desktop\:hover\:mr-1\.5:hover{
    margin-right: 0.375rem;
  }

  .desktop\:hover\:mr-2\.5:hover{
    margin-right: 0.625rem;
  }

  .desktop\:hover\:mr-3\.5:hover{
    margin-right: 0.875rem;
  }

  .desktop\:hover\:-mr-0:hover{
    margin-right: 0px;
  }

  .desktop\:hover\:-mr-1:hover{
    margin-right: -0.25rem;
  }

  .desktop\:hover\:-mr-2:hover{
    margin-right: -0.5rem;
  }

  .desktop\:hover\:-mr-3:hover{
    margin-right: -0.75rem;
  }

  .desktop\:hover\:-mr-4:hover{
    margin-right: -1rem;
  }

  .desktop\:hover\:-mr-5:hover{
    margin-right: -1.25rem;
  }

  .desktop\:hover\:-mr-6:hover{
    margin-right: -1.5rem;
  }

  .desktop\:hover\:-mr-7:hover{
    margin-right: -1.75rem;
  }

  .desktop\:hover\:-mr-8:hover{
    margin-right: -2rem;
  }

  .desktop\:hover\:-mr-9:hover{
    margin-right: -2.25rem;
  }

  .desktop\:hover\:-mr-10:hover{
    margin-right: -2.5rem;
  }

  .desktop\:hover\:-mr-11:hover{
    margin-right: -2.75rem;
  }

  .desktop\:hover\:-mr-12:hover{
    margin-right: -3rem;
  }

  .desktop\:hover\:-mr-14:hover{
    margin-right: -3.5rem;
  }

  .desktop\:hover\:-mr-16:hover{
    margin-right: -4rem;
  }

  .desktop\:hover\:-mr-20:hover{
    margin-right: -5rem;
  }

  .desktop\:hover\:-mr-24:hover{
    margin-right: -6rem;
  }

  .desktop\:hover\:-mr-28:hover{
    margin-right: -7rem;
  }

  .desktop\:hover\:-mr-32:hover{
    margin-right: -8rem;
  }

  .desktop\:hover\:-mr-36:hover{
    margin-right: -9rem;
  }

  .desktop\:hover\:-mr-40:hover{
    margin-right: -10rem;
  }

  .desktop\:hover\:-mr-44:hover{
    margin-right: -11rem;
  }

  .desktop\:hover\:-mr-48:hover{
    margin-right: -12rem;
  }

  .desktop\:hover\:-mr-52:hover{
    margin-right: -13rem;
  }

  .desktop\:hover\:-mr-56:hover{
    margin-right: -14rem;
  }

  .desktop\:hover\:-mr-60:hover{
    margin-right: -15rem;
  }

  .desktop\:hover\:-mr-64:hover{
    margin-right: -16rem;
  }

  .desktop\:hover\:-mr-72:hover{
    margin-right: -18rem;
  }

  .desktop\:hover\:-mr-80:hover{
    margin-right: -20rem;
  }

  .desktop\:hover\:-mr-96:hover{
    margin-right: -24rem;
  }

  .desktop\:hover\:-mr-px:hover{
    margin-right: -1px;
  }

  .desktop\:hover\:-mr-0\.5:hover{
    margin-right: -0.125rem;
  }

  .desktop\:hover\:-mr-1\.5:hover{
    margin-right: -0.375rem;
  }

  .desktop\:hover\:-mr-2\.5:hover{
    margin-right: -0.625rem;
  }

  .desktop\:hover\:-mr-3\.5:hover{
    margin-right: -0.875rem;
  }

  .desktop\:hover\:mr-neg1:hover{
    margin-right: -.25rem;
  }

  .desktop\:hover\:mr-neg2:hover{
    margin-right: -.5rem;
  }

  .desktop\:hover\:mr-neg4:hover{
    margin-right: -1.0rem;
  }

  .desktop\:hover\:mr-neg6:hover{
    margin-right: -1.5rem;
  }

  .desktop\:hover\:mr-neg12:hover{
    margin-right: -3rem;
  }

  .desktop\:hover\:mr-neg20:hover{
    margin-right: -5rem;
  }

  .desktop\:hover\:mb-0:hover{
    margin-bottom: 0px;
  }

  .desktop\:hover\:mb-1:hover{
    margin-bottom: 0.25rem;
  }

  .desktop\:hover\:mb-2:hover{
    margin-bottom: 0.5rem;
  }

  .desktop\:hover\:mb-3:hover{
    margin-bottom: 0.75rem;
  }

  .desktop\:hover\:mb-4:hover{
    margin-bottom: 1rem;
  }

  .desktop\:hover\:mb-5:hover{
    margin-bottom: 1.25rem;
  }

  .desktop\:hover\:mb-6:hover{
    margin-bottom: 1.5rem;
  }

  .desktop\:hover\:mb-7:hover{
    margin-bottom: 1.75rem;
  }

  .desktop\:hover\:mb-8:hover{
    margin-bottom: 2rem;
  }

  .desktop\:hover\:mb-9:hover{
    margin-bottom: 2.25rem;
  }

  .desktop\:hover\:mb-10:hover{
    margin-bottom: 2.5rem;
  }

  .desktop\:hover\:mb-11:hover{
    margin-bottom: 2.75rem;
  }

  .desktop\:hover\:mb-12:hover{
    margin-bottom: 3rem;
  }

  .desktop\:hover\:mb-14:hover{
    margin-bottom: 3.5rem;
  }

  .desktop\:hover\:mb-16:hover{
    margin-bottom: 4rem;
  }

  .desktop\:hover\:mb-20:hover{
    margin-bottom: 5rem;
  }

  .desktop\:hover\:mb-24:hover{
    margin-bottom: 6rem;
  }

  .desktop\:hover\:mb-28:hover{
    margin-bottom: 7rem;
  }

  .desktop\:hover\:mb-32:hover{
    margin-bottom: 8rem;
  }

  .desktop\:hover\:mb-36:hover{
    margin-bottom: 9rem;
  }

  .desktop\:hover\:mb-40:hover{
    margin-bottom: 10rem;
  }

  .desktop\:hover\:mb-44:hover{
    margin-bottom: 11rem;
  }

  .desktop\:hover\:mb-48:hover{
    margin-bottom: 12rem;
  }

  .desktop\:hover\:mb-52:hover{
    margin-bottom: 13rem;
  }

  .desktop\:hover\:mb-56:hover{
    margin-bottom: 14rem;
  }

  .desktop\:hover\:mb-60:hover{
    margin-bottom: 15rem;
  }

  .desktop\:hover\:mb-64:hover{
    margin-bottom: 16rem;
  }

  .desktop\:hover\:mb-72:hover{
    margin-bottom: 18rem;
  }

  .desktop\:hover\:mb-80:hover{
    margin-bottom: 20rem;
  }

  .desktop\:hover\:mb-96:hover{
    margin-bottom: 24rem;
  }

  .desktop\:hover\:mb-auto:hover{
    margin-bottom: auto;
  }

  .desktop\:hover\:mb-px:hover{
    margin-bottom: 1px;
  }

  .desktop\:hover\:mb-0\.5:hover{
    margin-bottom: 0.125rem;
  }

  .desktop\:hover\:mb-1\.5:hover{
    margin-bottom: 0.375rem;
  }

  .desktop\:hover\:mb-2\.5:hover{
    margin-bottom: 0.625rem;
  }

  .desktop\:hover\:mb-3\.5:hover{
    margin-bottom: 0.875rem;
  }

  .desktop\:hover\:-mb-0:hover{
    margin-bottom: 0px;
  }

  .desktop\:hover\:-mb-1:hover{
    margin-bottom: -0.25rem;
  }

  .desktop\:hover\:-mb-2:hover{
    margin-bottom: -0.5rem;
  }

  .desktop\:hover\:-mb-3:hover{
    margin-bottom: -0.75rem;
  }

  .desktop\:hover\:-mb-4:hover{
    margin-bottom: -1rem;
  }

  .desktop\:hover\:-mb-5:hover{
    margin-bottom: -1.25rem;
  }

  .desktop\:hover\:-mb-6:hover{
    margin-bottom: -1.5rem;
  }

  .desktop\:hover\:-mb-7:hover{
    margin-bottom: -1.75rem;
  }

  .desktop\:hover\:-mb-8:hover{
    margin-bottom: -2rem;
  }

  .desktop\:hover\:-mb-9:hover{
    margin-bottom: -2.25rem;
  }

  .desktop\:hover\:-mb-10:hover{
    margin-bottom: -2.5rem;
  }

  .desktop\:hover\:-mb-11:hover{
    margin-bottom: -2.75rem;
  }

  .desktop\:hover\:-mb-12:hover{
    margin-bottom: -3rem;
  }

  .desktop\:hover\:-mb-14:hover{
    margin-bottom: -3.5rem;
  }

  .desktop\:hover\:-mb-16:hover{
    margin-bottom: -4rem;
  }

  .desktop\:hover\:-mb-20:hover{
    margin-bottom: -5rem;
  }

  .desktop\:hover\:-mb-24:hover{
    margin-bottom: -6rem;
  }

  .desktop\:hover\:-mb-28:hover{
    margin-bottom: -7rem;
  }

  .desktop\:hover\:-mb-32:hover{
    margin-bottom: -8rem;
  }

  .desktop\:hover\:-mb-36:hover{
    margin-bottom: -9rem;
  }

  .desktop\:hover\:-mb-40:hover{
    margin-bottom: -10rem;
  }

  .desktop\:hover\:-mb-44:hover{
    margin-bottom: -11rem;
  }

  .desktop\:hover\:-mb-48:hover{
    margin-bottom: -12rem;
  }

  .desktop\:hover\:-mb-52:hover{
    margin-bottom: -13rem;
  }

  .desktop\:hover\:-mb-56:hover{
    margin-bottom: -14rem;
  }

  .desktop\:hover\:-mb-60:hover{
    margin-bottom: -15rem;
  }

  .desktop\:hover\:-mb-64:hover{
    margin-bottom: -16rem;
  }

  .desktop\:hover\:-mb-72:hover{
    margin-bottom: -18rem;
  }

  .desktop\:hover\:-mb-80:hover{
    margin-bottom: -20rem;
  }

  .desktop\:hover\:-mb-96:hover{
    margin-bottom: -24rem;
  }

  .desktop\:hover\:-mb-px:hover{
    margin-bottom: -1px;
  }

  .desktop\:hover\:-mb-0\.5:hover{
    margin-bottom: -0.125rem;
  }

  .desktop\:hover\:-mb-1\.5:hover{
    margin-bottom: -0.375rem;
  }

  .desktop\:hover\:-mb-2\.5:hover{
    margin-bottom: -0.625rem;
  }

  .desktop\:hover\:-mb-3\.5:hover{
    margin-bottom: -0.875rem;
  }

  .desktop\:hover\:mb-neg1:hover{
    margin-bottom: -.25rem;
  }

  .desktop\:hover\:mb-neg2:hover{
    margin-bottom: -.5rem;
  }

  .desktop\:hover\:mb-neg4:hover{
    margin-bottom: -1.0rem;
  }

  .desktop\:hover\:mb-neg6:hover{
    margin-bottom: -1.5rem;
  }

  .desktop\:hover\:mb-neg12:hover{
    margin-bottom: -3rem;
  }

  .desktop\:hover\:mb-neg20:hover{
    margin-bottom: -5rem;
  }

  .desktop\:hover\:ml-0:hover{
    margin-left: 0px;
  }

  .desktop\:hover\:ml-1:hover{
    margin-left: 0.25rem;
  }

  .desktop\:hover\:ml-2:hover{
    margin-left: 0.5rem;
  }

  .desktop\:hover\:ml-3:hover{
    margin-left: 0.75rem;
  }

  .desktop\:hover\:ml-4:hover{
    margin-left: 1rem;
  }

  .desktop\:hover\:ml-5:hover{
    margin-left: 1.25rem;
  }

  .desktop\:hover\:ml-6:hover{
    margin-left: 1.5rem;
  }

  .desktop\:hover\:ml-7:hover{
    margin-left: 1.75rem;
  }

  .desktop\:hover\:ml-8:hover{
    margin-left: 2rem;
  }

  .desktop\:hover\:ml-9:hover{
    margin-left: 2.25rem;
  }

  .desktop\:hover\:ml-10:hover{
    margin-left: 2.5rem;
  }

  .desktop\:hover\:ml-11:hover{
    margin-left: 2.75rem;
  }

  .desktop\:hover\:ml-12:hover{
    margin-left: 3rem;
  }

  .desktop\:hover\:ml-14:hover{
    margin-left: 3.5rem;
  }

  .desktop\:hover\:ml-16:hover{
    margin-left: 4rem;
  }

  .desktop\:hover\:ml-20:hover{
    margin-left: 5rem;
  }

  .desktop\:hover\:ml-24:hover{
    margin-left: 6rem;
  }

  .desktop\:hover\:ml-28:hover{
    margin-left: 7rem;
  }

  .desktop\:hover\:ml-32:hover{
    margin-left: 8rem;
  }

  .desktop\:hover\:ml-36:hover{
    margin-left: 9rem;
  }

  .desktop\:hover\:ml-40:hover{
    margin-left: 10rem;
  }

  .desktop\:hover\:ml-44:hover{
    margin-left: 11rem;
  }

  .desktop\:hover\:ml-48:hover{
    margin-left: 12rem;
  }

  .desktop\:hover\:ml-52:hover{
    margin-left: 13rem;
  }

  .desktop\:hover\:ml-56:hover{
    margin-left: 14rem;
  }

  .desktop\:hover\:ml-60:hover{
    margin-left: 15rem;
  }

  .desktop\:hover\:ml-64:hover{
    margin-left: 16rem;
  }

  .desktop\:hover\:ml-72:hover{
    margin-left: 18rem;
  }

  .desktop\:hover\:ml-80:hover{
    margin-left: 20rem;
  }

  .desktop\:hover\:ml-96:hover{
    margin-left: 24rem;
  }

  .desktop\:hover\:ml-auto:hover{
    margin-left: auto;
  }

  .desktop\:hover\:ml-px:hover{
    margin-left: 1px;
  }

  .desktop\:hover\:ml-0\.5:hover{
    margin-left: 0.125rem;
  }

  .desktop\:hover\:ml-1\.5:hover{
    margin-left: 0.375rem;
  }

  .desktop\:hover\:ml-2\.5:hover{
    margin-left: 0.625rem;
  }

  .desktop\:hover\:ml-3\.5:hover{
    margin-left: 0.875rem;
  }

  .desktop\:hover\:-ml-0:hover{
    margin-left: 0px;
  }

  .desktop\:hover\:-ml-1:hover{
    margin-left: -0.25rem;
  }

  .desktop\:hover\:-ml-2:hover{
    margin-left: -0.5rem;
  }

  .desktop\:hover\:-ml-3:hover{
    margin-left: -0.75rem;
  }

  .desktop\:hover\:-ml-4:hover{
    margin-left: -1rem;
  }

  .desktop\:hover\:-ml-5:hover{
    margin-left: -1.25rem;
  }

  .desktop\:hover\:-ml-6:hover{
    margin-left: -1.5rem;
  }

  .desktop\:hover\:-ml-7:hover{
    margin-left: -1.75rem;
  }

  .desktop\:hover\:-ml-8:hover{
    margin-left: -2rem;
  }

  .desktop\:hover\:-ml-9:hover{
    margin-left: -2.25rem;
  }

  .desktop\:hover\:-ml-10:hover{
    margin-left: -2.5rem;
  }

  .desktop\:hover\:-ml-11:hover{
    margin-left: -2.75rem;
  }

  .desktop\:hover\:-ml-12:hover{
    margin-left: -3rem;
  }

  .desktop\:hover\:-ml-14:hover{
    margin-left: -3.5rem;
  }

  .desktop\:hover\:-ml-16:hover{
    margin-left: -4rem;
  }

  .desktop\:hover\:-ml-20:hover{
    margin-left: -5rem;
  }

  .desktop\:hover\:-ml-24:hover{
    margin-left: -6rem;
  }

  .desktop\:hover\:-ml-28:hover{
    margin-left: -7rem;
  }

  .desktop\:hover\:-ml-32:hover{
    margin-left: -8rem;
  }

  .desktop\:hover\:-ml-36:hover{
    margin-left: -9rem;
  }

  .desktop\:hover\:-ml-40:hover{
    margin-left: -10rem;
  }

  .desktop\:hover\:-ml-44:hover{
    margin-left: -11rem;
  }

  .desktop\:hover\:-ml-48:hover{
    margin-left: -12rem;
  }

  .desktop\:hover\:-ml-52:hover{
    margin-left: -13rem;
  }

  .desktop\:hover\:-ml-56:hover{
    margin-left: -14rem;
  }

  .desktop\:hover\:-ml-60:hover{
    margin-left: -15rem;
  }

  .desktop\:hover\:-ml-64:hover{
    margin-left: -16rem;
  }

  .desktop\:hover\:-ml-72:hover{
    margin-left: -18rem;
  }

  .desktop\:hover\:-ml-80:hover{
    margin-left: -20rem;
  }

  .desktop\:hover\:-ml-96:hover{
    margin-left: -24rem;
  }

  .desktop\:hover\:-ml-px:hover{
    margin-left: -1px;
  }

  .desktop\:hover\:-ml-0\.5:hover{
    margin-left: -0.125rem;
  }

  .desktop\:hover\:-ml-1\.5:hover{
    margin-left: -0.375rem;
  }

  .desktop\:hover\:-ml-2\.5:hover{
    margin-left: -0.625rem;
  }

  .desktop\:hover\:-ml-3\.5:hover{
    margin-left: -0.875rem;
  }

  .desktop\:hover\:ml-neg1:hover{
    margin-left: -.25rem;
  }

  .desktop\:hover\:ml-neg2:hover{
    margin-left: -.5rem;
  }

  .desktop\:hover\:ml-neg4:hover{
    margin-left: -1.0rem;
  }

  .desktop\:hover\:ml-neg6:hover{
    margin-left: -1.5rem;
  }

  .desktop\:hover\:ml-neg12:hover{
    margin-left: -3rem;
  }

  .desktop\:hover\:ml-neg20:hover{
    margin-left: -5rem;
  }

  .desktop\:focus\:mt-0:focus{
    margin-top: 0px;
  }

  .desktop\:focus\:mt-1:focus{
    margin-top: 0.25rem;
  }

  .desktop\:focus\:mt-2:focus{
    margin-top: 0.5rem;
  }

  .desktop\:focus\:mt-3:focus{
    margin-top: 0.75rem;
  }

  .desktop\:focus\:mt-4:focus{
    margin-top: 1rem;
  }

  .desktop\:focus\:mt-5:focus{
    margin-top: 1.25rem;
  }

  .desktop\:focus\:mt-6:focus{
    margin-top: 1.5rem;
  }

  .desktop\:focus\:mt-7:focus{
    margin-top: 1.75rem;
  }

  .desktop\:focus\:mt-8:focus{
    margin-top: 2rem;
  }

  .desktop\:focus\:mt-9:focus{
    margin-top: 2.25rem;
  }

  .desktop\:focus\:mt-10:focus{
    margin-top: 2.5rem;
  }

  .desktop\:focus\:mt-11:focus{
    margin-top: 2.75rem;
  }

  .desktop\:focus\:mt-12:focus{
    margin-top: 3rem;
  }

  .desktop\:focus\:mt-14:focus{
    margin-top: 3.5rem;
  }

  .desktop\:focus\:mt-16:focus{
    margin-top: 4rem;
  }

  .desktop\:focus\:mt-20:focus{
    margin-top: 5rem;
  }

  .desktop\:focus\:mt-24:focus{
    margin-top: 6rem;
  }

  .desktop\:focus\:mt-28:focus{
    margin-top: 7rem;
  }

  .desktop\:focus\:mt-32:focus{
    margin-top: 8rem;
  }

  .desktop\:focus\:mt-36:focus{
    margin-top: 9rem;
  }

  .desktop\:focus\:mt-40:focus{
    margin-top: 10rem;
  }

  .desktop\:focus\:mt-44:focus{
    margin-top: 11rem;
  }

  .desktop\:focus\:mt-48:focus{
    margin-top: 12rem;
  }

  .desktop\:focus\:mt-52:focus{
    margin-top: 13rem;
  }

  .desktop\:focus\:mt-56:focus{
    margin-top: 14rem;
  }

  .desktop\:focus\:mt-60:focus{
    margin-top: 15rem;
  }

  .desktop\:focus\:mt-64:focus{
    margin-top: 16rem;
  }

  .desktop\:focus\:mt-72:focus{
    margin-top: 18rem;
  }

  .desktop\:focus\:mt-80:focus{
    margin-top: 20rem;
  }

  .desktop\:focus\:mt-96:focus{
    margin-top: 24rem;
  }

  .desktop\:focus\:mt-auto:focus{
    margin-top: auto;
  }

  .desktop\:focus\:mt-px:focus{
    margin-top: 1px;
  }

  .desktop\:focus\:mt-0\.5:focus{
    margin-top: 0.125rem;
  }

  .desktop\:focus\:mt-1\.5:focus{
    margin-top: 0.375rem;
  }

  .desktop\:focus\:mt-2\.5:focus{
    margin-top: 0.625rem;
  }

  .desktop\:focus\:mt-3\.5:focus{
    margin-top: 0.875rem;
  }

  .desktop\:focus\:-mt-0:focus{
    margin-top: 0px;
  }

  .desktop\:focus\:-mt-1:focus{
    margin-top: -0.25rem;
  }

  .desktop\:focus\:-mt-2:focus{
    margin-top: -0.5rem;
  }

  .desktop\:focus\:-mt-3:focus{
    margin-top: -0.75rem;
  }

  .desktop\:focus\:-mt-4:focus{
    margin-top: -1rem;
  }

  .desktop\:focus\:-mt-5:focus{
    margin-top: -1.25rem;
  }

  .desktop\:focus\:-mt-6:focus{
    margin-top: -1.5rem;
  }

  .desktop\:focus\:-mt-7:focus{
    margin-top: -1.75rem;
  }

  .desktop\:focus\:-mt-8:focus{
    margin-top: -2rem;
  }

  .desktop\:focus\:-mt-9:focus{
    margin-top: -2.25rem;
  }

  .desktop\:focus\:-mt-10:focus{
    margin-top: -2.5rem;
  }

  .desktop\:focus\:-mt-11:focus{
    margin-top: -2.75rem;
  }

  .desktop\:focus\:-mt-12:focus{
    margin-top: -3rem;
  }

  .desktop\:focus\:-mt-14:focus{
    margin-top: -3.5rem;
  }

  .desktop\:focus\:-mt-16:focus{
    margin-top: -4rem;
  }

  .desktop\:focus\:-mt-20:focus{
    margin-top: -5rem;
  }

  .desktop\:focus\:-mt-24:focus{
    margin-top: -6rem;
  }

  .desktop\:focus\:-mt-28:focus{
    margin-top: -7rem;
  }

  .desktop\:focus\:-mt-32:focus{
    margin-top: -8rem;
  }

  .desktop\:focus\:-mt-36:focus{
    margin-top: -9rem;
  }

  .desktop\:focus\:-mt-40:focus{
    margin-top: -10rem;
  }

  .desktop\:focus\:-mt-44:focus{
    margin-top: -11rem;
  }

  .desktop\:focus\:-mt-48:focus{
    margin-top: -12rem;
  }

  .desktop\:focus\:-mt-52:focus{
    margin-top: -13rem;
  }

  .desktop\:focus\:-mt-56:focus{
    margin-top: -14rem;
  }

  .desktop\:focus\:-mt-60:focus{
    margin-top: -15rem;
  }

  .desktop\:focus\:-mt-64:focus{
    margin-top: -16rem;
  }

  .desktop\:focus\:-mt-72:focus{
    margin-top: -18rem;
  }

  .desktop\:focus\:-mt-80:focus{
    margin-top: -20rem;
  }

  .desktop\:focus\:-mt-96:focus{
    margin-top: -24rem;
  }

  .desktop\:focus\:-mt-px:focus{
    margin-top: -1px;
  }

  .desktop\:focus\:-mt-0\.5:focus{
    margin-top: -0.125rem;
  }

  .desktop\:focus\:-mt-1\.5:focus{
    margin-top: -0.375rem;
  }

  .desktop\:focus\:-mt-2\.5:focus{
    margin-top: -0.625rem;
  }

  .desktop\:focus\:-mt-3\.5:focus{
    margin-top: -0.875rem;
  }

  .desktop\:focus\:mt-neg1:focus{
    margin-top: -.25rem;
  }

  .desktop\:focus\:mt-neg2:focus{
    margin-top: -.5rem;
  }

  .desktop\:focus\:mt-neg4:focus{
    margin-top: -1.0rem;
  }

  .desktop\:focus\:mt-neg6:focus{
    margin-top: -1.5rem;
  }

  .desktop\:focus\:mt-neg12:focus{
    margin-top: -3rem;
  }

  .desktop\:focus\:mt-neg20:focus{
    margin-top: -5rem;
  }

  .desktop\:focus\:mr-0:focus{
    margin-right: 0px;
  }

  .desktop\:focus\:mr-1:focus{
    margin-right: 0.25rem;
  }

  .desktop\:focus\:mr-2:focus{
    margin-right: 0.5rem;
  }

  .desktop\:focus\:mr-3:focus{
    margin-right: 0.75rem;
  }

  .desktop\:focus\:mr-4:focus{
    margin-right: 1rem;
  }

  .desktop\:focus\:mr-5:focus{
    margin-right: 1.25rem;
  }

  .desktop\:focus\:mr-6:focus{
    margin-right: 1.5rem;
  }

  .desktop\:focus\:mr-7:focus{
    margin-right: 1.75rem;
  }

  .desktop\:focus\:mr-8:focus{
    margin-right: 2rem;
  }

  .desktop\:focus\:mr-9:focus{
    margin-right: 2.25rem;
  }

  .desktop\:focus\:mr-10:focus{
    margin-right: 2.5rem;
  }

  .desktop\:focus\:mr-11:focus{
    margin-right: 2.75rem;
  }

  .desktop\:focus\:mr-12:focus{
    margin-right: 3rem;
  }

  .desktop\:focus\:mr-14:focus{
    margin-right: 3.5rem;
  }

  .desktop\:focus\:mr-16:focus{
    margin-right: 4rem;
  }

  .desktop\:focus\:mr-20:focus{
    margin-right: 5rem;
  }

  .desktop\:focus\:mr-24:focus{
    margin-right: 6rem;
  }

  .desktop\:focus\:mr-28:focus{
    margin-right: 7rem;
  }

  .desktop\:focus\:mr-32:focus{
    margin-right: 8rem;
  }

  .desktop\:focus\:mr-36:focus{
    margin-right: 9rem;
  }

  .desktop\:focus\:mr-40:focus{
    margin-right: 10rem;
  }

  .desktop\:focus\:mr-44:focus{
    margin-right: 11rem;
  }

  .desktop\:focus\:mr-48:focus{
    margin-right: 12rem;
  }

  .desktop\:focus\:mr-52:focus{
    margin-right: 13rem;
  }

  .desktop\:focus\:mr-56:focus{
    margin-right: 14rem;
  }

  .desktop\:focus\:mr-60:focus{
    margin-right: 15rem;
  }

  .desktop\:focus\:mr-64:focus{
    margin-right: 16rem;
  }

  .desktop\:focus\:mr-72:focus{
    margin-right: 18rem;
  }

  .desktop\:focus\:mr-80:focus{
    margin-right: 20rem;
  }

  .desktop\:focus\:mr-96:focus{
    margin-right: 24rem;
  }

  .desktop\:focus\:mr-auto:focus{
    margin-right: auto;
  }

  .desktop\:focus\:mr-px:focus{
    margin-right: 1px;
  }

  .desktop\:focus\:mr-0\.5:focus{
    margin-right: 0.125rem;
  }

  .desktop\:focus\:mr-1\.5:focus{
    margin-right: 0.375rem;
  }

  .desktop\:focus\:mr-2\.5:focus{
    margin-right: 0.625rem;
  }

  .desktop\:focus\:mr-3\.5:focus{
    margin-right: 0.875rem;
  }

  .desktop\:focus\:-mr-0:focus{
    margin-right: 0px;
  }

  .desktop\:focus\:-mr-1:focus{
    margin-right: -0.25rem;
  }

  .desktop\:focus\:-mr-2:focus{
    margin-right: -0.5rem;
  }

  .desktop\:focus\:-mr-3:focus{
    margin-right: -0.75rem;
  }

  .desktop\:focus\:-mr-4:focus{
    margin-right: -1rem;
  }

  .desktop\:focus\:-mr-5:focus{
    margin-right: -1.25rem;
  }

  .desktop\:focus\:-mr-6:focus{
    margin-right: -1.5rem;
  }

  .desktop\:focus\:-mr-7:focus{
    margin-right: -1.75rem;
  }

  .desktop\:focus\:-mr-8:focus{
    margin-right: -2rem;
  }

  .desktop\:focus\:-mr-9:focus{
    margin-right: -2.25rem;
  }

  .desktop\:focus\:-mr-10:focus{
    margin-right: -2.5rem;
  }

  .desktop\:focus\:-mr-11:focus{
    margin-right: -2.75rem;
  }

  .desktop\:focus\:-mr-12:focus{
    margin-right: -3rem;
  }

  .desktop\:focus\:-mr-14:focus{
    margin-right: -3.5rem;
  }

  .desktop\:focus\:-mr-16:focus{
    margin-right: -4rem;
  }

  .desktop\:focus\:-mr-20:focus{
    margin-right: -5rem;
  }

  .desktop\:focus\:-mr-24:focus{
    margin-right: -6rem;
  }

  .desktop\:focus\:-mr-28:focus{
    margin-right: -7rem;
  }

  .desktop\:focus\:-mr-32:focus{
    margin-right: -8rem;
  }

  .desktop\:focus\:-mr-36:focus{
    margin-right: -9rem;
  }

  .desktop\:focus\:-mr-40:focus{
    margin-right: -10rem;
  }

  .desktop\:focus\:-mr-44:focus{
    margin-right: -11rem;
  }

  .desktop\:focus\:-mr-48:focus{
    margin-right: -12rem;
  }

  .desktop\:focus\:-mr-52:focus{
    margin-right: -13rem;
  }

  .desktop\:focus\:-mr-56:focus{
    margin-right: -14rem;
  }

  .desktop\:focus\:-mr-60:focus{
    margin-right: -15rem;
  }

  .desktop\:focus\:-mr-64:focus{
    margin-right: -16rem;
  }

  .desktop\:focus\:-mr-72:focus{
    margin-right: -18rem;
  }

  .desktop\:focus\:-mr-80:focus{
    margin-right: -20rem;
  }

  .desktop\:focus\:-mr-96:focus{
    margin-right: -24rem;
  }

  .desktop\:focus\:-mr-px:focus{
    margin-right: -1px;
  }

  .desktop\:focus\:-mr-0\.5:focus{
    margin-right: -0.125rem;
  }

  .desktop\:focus\:-mr-1\.5:focus{
    margin-right: -0.375rem;
  }

  .desktop\:focus\:-mr-2\.5:focus{
    margin-right: -0.625rem;
  }

  .desktop\:focus\:-mr-3\.5:focus{
    margin-right: -0.875rem;
  }

  .desktop\:focus\:mr-neg1:focus{
    margin-right: -.25rem;
  }

  .desktop\:focus\:mr-neg2:focus{
    margin-right: -.5rem;
  }

  .desktop\:focus\:mr-neg4:focus{
    margin-right: -1.0rem;
  }

  .desktop\:focus\:mr-neg6:focus{
    margin-right: -1.5rem;
  }

  .desktop\:focus\:mr-neg12:focus{
    margin-right: -3rem;
  }

  .desktop\:focus\:mr-neg20:focus{
    margin-right: -5rem;
  }

  .desktop\:focus\:mb-0:focus{
    margin-bottom: 0px;
  }

  .desktop\:focus\:mb-1:focus{
    margin-bottom: 0.25rem;
  }

  .desktop\:focus\:mb-2:focus{
    margin-bottom: 0.5rem;
  }

  .desktop\:focus\:mb-3:focus{
    margin-bottom: 0.75rem;
  }

  .desktop\:focus\:mb-4:focus{
    margin-bottom: 1rem;
  }

  .desktop\:focus\:mb-5:focus{
    margin-bottom: 1.25rem;
  }

  .desktop\:focus\:mb-6:focus{
    margin-bottom: 1.5rem;
  }

  .desktop\:focus\:mb-7:focus{
    margin-bottom: 1.75rem;
  }

  .desktop\:focus\:mb-8:focus{
    margin-bottom: 2rem;
  }

  .desktop\:focus\:mb-9:focus{
    margin-bottom: 2.25rem;
  }

  .desktop\:focus\:mb-10:focus{
    margin-bottom: 2.5rem;
  }

  .desktop\:focus\:mb-11:focus{
    margin-bottom: 2.75rem;
  }

  .desktop\:focus\:mb-12:focus{
    margin-bottom: 3rem;
  }

  .desktop\:focus\:mb-14:focus{
    margin-bottom: 3.5rem;
  }

  .desktop\:focus\:mb-16:focus{
    margin-bottom: 4rem;
  }

  .desktop\:focus\:mb-20:focus{
    margin-bottom: 5rem;
  }

  .desktop\:focus\:mb-24:focus{
    margin-bottom: 6rem;
  }

  .desktop\:focus\:mb-28:focus{
    margin-bottom: 7rem;
  }

  .desktop\:focus\:mb-32:focus{
    margin-bottom: 8rem;
  }

  .desktop\:focus\:mb-36:focus{
    margin-bottom: 9rem;
  }

  .desktop\:focus\:mb-40:focus{
    margin-bottom: 10rem;
  }

  .desktop\:focus\:mb-44:focus{
    margin-bottom: 11rem;
  }

  .desktop\:focus\:mb-48:focus{
    margin-bottom: 12rem;
  }

  .desktop\:focus\:mb-52:focus{
    margin-bottom: 13rem;
  }

  .desktop\:focus\:mb-56:focus{
    margin-bottom: 14rem;
  }

  .desktop\:focus\:mb-60:focus{
    margin-bottom: 15rem;
  }

  .desktop\:focus\:mb-64:focus{
    margin-bottom: 16rem;
  }

  .desktop\:focus\:mb-72:focus{
    margin-bottom: 18rem;
  }

  .desktop\:focus\:mb-80:focus{
    margin-bottom: 20rem;
  }

  .desktop\:focus\:mb-96:focus{
    margin-bottom: 24rem;
  }

  .desktop\:focus\:mb-auto:focus{
    margin-bottom: auto;
  }

  .desktop\:focus\:mb-px:focus{
    margin-bottom: 1px;
  }

  .desktop\:focus\:mb-0\.5:focus{
    margin-bottom: 0.125rem;
  }

  .desktop\:focus\:mb-1\.5:focus{
    margin-bottom: 0.375rem;
  }

  .desktop\:focus\:mb-2\.5:focus{
    margin-bottom: 0.625rem;
  }

  .desktop\:focus\:mb-3\.5:focus{
    margin-bottom: 0.875rem;
  }

  .desktop\:focus\:-mb-0:focus{
    margin-bottom: 0px;
  }

  .desktop\:focus\:-mb-1:focus{
    margin-bottom: -0.25rem;
  }

  .desktop\:focus\:-mb-2:focus{
    margin-bottom: -0.5rem;
  }

  .desktop\:focus\:-mb-3:focus{
    margin-bottom: -0.75rem;
  }

  .desktop\:focus\:-mb-4:focus{
    margin-bottom: -1rem;
  }

  .desktop\:focus\:-mb-5:focus{
    margin-bottom: -1.25rem;
  }

  .desktop\:focus\:-mb-6:focus{
    margin-bottom: -1.5rem;
  }

  .desktop\:focus\:-mb-7:focus{
    margin-bottom: -1.75rem;
  }

  .desktop\:focus\:-mb-8:focus{
    margin-bottom: -2rem;
  }

  .desktop\:focus\:-mb-9:focus{
    margin-bottom: -2.25rem;
  }

  .desktop\:focus\:-mb-10:focus{
    margin-bottom: -2.5rem;
  }

  .desktop\:focus\:-mb-11:focus{
    margin-bottom: -2.75rem;
  }

  .desktop\:focus\:-mb-12:focus{
    margin-bottom: -3rem;
  }

  .desktop\:focus\:-mb-14:focus{
    margin-bottom: -3.5rem;
  }

  .desktop\:focus\:-mb-16:focus{
    margin-bottom: -4rem;
  }

  .desktop\:focus\:-mb-20:focus{
    margin-bottom: -5rem;
  }

  .desktop\:focus\:-mb-24:focus{
    margin-bottom: -6rem;
  }

  .desktop\:focus\:-mb-28:focus{
    margin-bottom: -7rem;
  }

  .desktop\:focus\:-mb-32:focus{
    margin-bottom: -8rem;
  }

  .desktop\:focus\:-mb-36:focus{
    margin-bottom: -9rem;
  }

  .desktop\:focus\:-mb-40:focus{
    margin-bottom: -10rem;
  }

  .desktop\:focus\:-mb-44:focus{
    margin-bottom: -11rem;
  }

  .desktop\:focus\:-mb-48:focus{
    margin-bottom: -12rem;
  }

  .desktop\:focus\:-mb-52:focus{
    margin-bottom: -13rem;
  }

  .desktop\:focus\:-mb-56:focus{
    margin-bottom: -14rem;
  }

  .desktop\:focus\:-mb-60:focus{
    margin-bottom: -15rem;
  }

  .desktop\:focus\:-mb-64:focus{
    margin-bottom: -16rem;
  }

  .desktop\:focus\:-mb-72:focus{
    margin-bottom: -18rem;
  }

  .desktop\:focus\:-mb-80:focus{
    margin-bottom: -20rem;
  }

  .desktop\:focus\:-mb-96:focus{
    margin-bottom: -24rem;
  }

  .desktop\:focus\:-mb-px:focus{
    margin-bottom: -1px;
  }

  .desktop\:focus\:-mb-0\.5:focus{
    margin-bottom: -0.125rem;
  }

  .desktop\:focus\:-mb-1\.5:focus{
    margin-bottom: -0.375rem;
  }

  .desktop\:focus\:-mb-2\.5:focus{
    margin-bottom: -0.625rem;
  }

  .desktop\:focus\:-mb-3\.5:focus{
    margin-bottom: -0.875rem;
  }

  .desktop\:focus\:mb-neg1:focus{
    margin-bottom: -.25rem;
  }

  .desktop\:focus\:mb-neg2:focus{
    margin-bottom: -.5rem;
  }

  .desktop\:focus\:mb-neg4:focus{
    margin-bottom: -1.0rem;
  }

  .desktop\:focus\:mb-neg6:focus{
    margin-bottom: -1.5rem;
  }

  .desktop\:focus\:mb-neg12:focus{
    margin-bottom: -3rem;
  }

  .desktop\:focus\:mb-neg20:focus{
    margin-bottom: -5rem;
  }

  .desktop\:focus\:ml-0:focus{
    margin-left: 0px;
  }

  .desktop\:focus\:ml-1:focus{
    margin-left: 0.25rem;
  }

  .desktop\:focus\:ml-2:focus{
    margin-left: 0.5rem;
  }

  .desktop\:focus\:ml-3:focus{
    margin-left: 0.75rem;
  }

  .desktop\:focus\:ml-4:focus{
    margin-left: 1rem;
  }

  .desktop\:focus\:ml-5:focus{
    margin-left: 1.25rem;
  }

  .desktop\:focus\:ml-6:focus{
    margin-left: 1.5rem;
  }

  .desktop\:focus\:ml-7:focus{
    margin-left: 1.75rem;
  }

  .desktop\:focus\:ml-8:focus{
    margin-left: 2rem;
  }

  .desktop\:focus\:ml-9:focus{
    margin-left: 2.25rem;
  }

  .desktop\:focus\:ml-10:focus{
    margin-left: 2.5rem;
  }

  .desktop\:focus\:ml-11:focus{
    margin-left: 2.75rem;
  }

  .desktop\:focus\:ml-12:focus{
    margin-left: 3rem;
  }

  .desktop\:focus\:ml-14:focus{
    margin-left: 3.5rem;
  }

  .desktop\:focus\:ml-16:focus{
    margin-left: 4rem;
  }

  .desktop\:focus\:ml-20:focus{
    margin-left: 5rem;
  }

  .desktop\:focus\:ml-24:focus{
    margin-left: 6rem;
  }

  .desktop\:focus\:ml-28:focus{
    margin-left: 7rem;
  }

  .desktop\:focus\:ml-32:focus{
    margin-left: 8rem;
  }

  .desktop\:focus\:ml-36:focus{
    margin-left: 9rem;
  }

  .desktop\:focus\:ml-40:focus{
    margin-left: 10rem;
  }

  .desktop\:focus\:ml-44:focus{
    margin-left: 11rem;
  }

  .desktop\:focus\:ml-48:focus{
    margin-left: 12rem;
  }

  .desktop\:focus\:ml-52:focus{
    margin-left: 13rem;
  }

  .desktop\:focus\:ml-56:focus{
    margin-left: 14rem;
  }

  .desktop\:focus\:ml-60:focus{
    margin-left: 15rem;
  }

  .desktop\:focus\:ml-64:focus{
    margin-left: 16rem;
  }

  .desktop\:focus\:ml-72:focus{
    margin-left: 18rem;
  }

  .desktop\:focus\:ml-80:focus{
    margin-left: 20rem;
  }

  .desktop\:focus\:ml-96:focus{
    margin-left: 24rem;
  }

  .desktop\:focus\:ml-auto:focus{
    margin-left: auto;
  }

  .desktop\:focus\:ml-px:focus{
    margin-left: 1px;
  }

  .desktop\:focus\:ml-0\.5:focus{
    margin-left: 0.125rem;
  }

  .desktop\:focus\:ml-1\.5:focus{
    margin-left: 0.375rem;
  }

  .desktop\:focus\:ml-2\.5:focus{
    margin-left: 0.625rem;
  }

  .desktop\:focus\:ml-3\.5:focus{
    margin-left: 0.875rem;
  }

  .desktop\:focus\:-ml-0:focus{
    margin-left: 0px;
  }

  .desktop\:focus\:-ml-1:focus{
    margin-left: -0.25rem;
  }

  .desktop\:focus\:-ml-2:focus{
    margin-left: -0.5rem;
  }

  .desktop\:focus\:-ml-3:focus{
    margin-left: -0.75rem;
  }

  .desktop\:focus\:-ml-4:focus{
    margin-left: -1rem;
  }

  .desktop\:focus\:-ml-5:focus{
    margin-left: -1.25rem;
  }

  .desktop\:focus\:-ml-6:focus{
    margin-left: -1.5rem;
  }

  .desktop\:focus\:-ml-7:focus{
    margin-left: -1.75rem;
  }

  .desktop\:focus\:-ml-8:focus{
    margin-left: -2rem;
  }

  .desktop\:focus\:-ml-9:focus{
    margin-left: -2.25rem;
  }

  .desktop\:focus\:-ml-10:focus{
    margin-left: -2.5rem;
  }

  .desktop\:focus\:-ml-11:focus{
    margin-left: -2.75rem;
  }

  .desktop\:focus\:-ml-12:focus{
    margin-left: -3rem;
  }

  .desktop\:focus\:-ml-14:focus{
    margin-left: -3.5rem;
  }

  .desktop\:focus\:-ml-16:focus{
    margin-left: -4rem;
  }

  .desktop\:focus\:-ml-20:focus{
    margin-left: -5rem;
  }

  .desktop\:focus\:-ml-24:focus{
    margin-left: -6rem;
  }

  .desktop\:focus\:-ml-28:focus{
    margin-left: -7rem;
  }

  .desktop\:focus\:-ml-32:focus{
    margin-left: -8rem;
  }

  .desktop\:focus\:-ml-36:focus{
    margin-left: -9rem;
  }

  .desktop\:focus\:-ml-40:focus{
    margin-left: -10rem;
  }

  .desktop\:focus\:-ml-44:focus{
    margin-left: -11rem;
  }

  .desktop\:focus\:-ml-48:focus{
    margin-left: -12rem;
  }

  .desktop\:focus\:-ml-52:focus{
    margin-left: -13rem;
  }

  .desktop\:focus\:-ml-56:focus{
    margin-left: -14rem;
  }

  .desktop\:focus\:-ml-60:focus{
    margin-left: -15rem;
  }

  .desktop\:focus\:-ml-64:focus{
    margin-left: -16rem;
  }

  .desktop\:focus\:-ml-72:focus{
    margin-left: -18rem;
  }

  .desktop\:focus\:-ml-80:focus{
    margin-left: -20rem;
  }

  .desktop\:focus\:-ml-96:focus{
    margin-left: -24rem;
  }

  .desktop\:focus\:-ml-px:focus{
    margin-left: -1px;
  }

  .desktop\:focus\:-ml-0\.5:focus{
    margin-left: -0.125rem;
  }

  .desktop\:focus\:-ml-1\.5:focus{
    margin-left: -0.375rem;
  }

  .desktop\:focus\:-ml-2\.5:focus{
    margin-left: -0.625rem;
  }

  .desktop\:focus\:-ml-3\.5:focus{
    margin-left: -0.875rem;
  }

  .desktop\:focus\:ml-neg1:focus{
    margin-left: -.25rem;
  }

  .desktop\:focus\:ml-neg2:focus{
    margin-left: -.5rem;
  }

  .desktop\:focus\:ml-neg4:focus{
    margin-left: -1.0rem;
  }

  .desktop\:focus\:ml-neg6:focus{
    margin-left: -1.5rem;
  }

  .desktop\:focus\:ml-neg12:focus{
    margin-left: -3rem;
  }

  .desktop\:focus\:ml-neg20:focus{
    margin-left: -5rem;
  }

  .desktop\:first\:mt-0:first-child{
    margin-top: 0px;
  }

  .desktop\:first\:mt-1:first-child{
    margin-top: 0.25rem;
  }

  .desktop\:first\:mt-2:first-child{
    margin-top: 0.5rem;
  }

  .desktop\:first\:mt-3:first-child{
    margin-top: 0.75rem;
  }

  .desktop\:first\:mt-4:first-child{
    margin-top: 1rem;
  }

  .desktop\:first\:mt-5:first-child{
    margin-top: 1.25rem;
  }

  .desktop\:first\:mt-6:first-child{
    margin-top: 1.5rem;
  }

  .desktop\:first\:mt-7:first-child{
    margin-top: 1.75rem;
  }

  .desktop\:first\:mt-8:first-child{
    margin-top: 2rem;
  }

  .desktop\:first\:mt-9:first-child{
    margin-top: 2.25rem;
  }

  .desktop\:first\:mt-10:first-child{
    margin-top: 2.5rem;
  }

  .desktop\:first\:mt-11:first-child{
    margin-top: 2.75rem;
  }

  .desktop\:first\:mt-12:first-child{
    margin-top: 3rem;
  }

  .desktop\:first\:mt-14:first-child{
    margin-top: 3.5rem;
  }

  .desktop\:first\:mt-16:first-child{
    margin-top: 4rem;
  }

  .desktop\:first\:mt-20:first-child{
    margin-top: 5rem;
  }

  .desktop\:first\:mt-24:first-child{
    margin-top: 6rem;
  }

  .desktop\:first\:mt-28:first-child{
    margin-top: 7rem;
  }

  .desktop\:first\:mt-32:first-child{
    margin-top: 8rem;
  }

  .desktop\:first\:mt-36:first-child{
    margin-top: 9rem;
  }

  .desktop\:first\:mt-40:first-child{
    margin-top: 10rem;
  }

  .desktop\:first\:mt-44:first-child{
    margin-top: 11rem;
  }

  .desktop\:first\:mt-48:first-child{
    margin-top: 12rem;
  }

  .desktop\:first\:mt-52:first-child{
    margin-top: 13rem;
  }

  .desktop\:first\:mt-56:first-child{
    margin-top: 14rem;
  }

  .desktop\:first\:mt-60:first-child{
    margin-top: 15rem;
  }

  .desktop\:first\:mt-64:first-child{
    margin-top: 16rem;
  }

  .desktop\:first\:mt-72:first-child{
    margin-top: 18rem;
  }

  .desktop\:first\:mt-80:first-child{
    margin-top: 20rem;
  }

  .desktop\:first\:mt-96:first-child{
    margin-top: 24rem;
  }

  .desktop\:first\:mt-auto:first-child{
    margin-top: auto;
  }

  .desktop\:first\:mt-px:first-child{
    margin-top: 1px;
  }

  .desktop\:first\:mt-0\.5:first-child{
    margin-top: 0.125rem;
  }

  .desktop\:first\:mt-1\.5:first-child{
    margin-top: 0.375rem;
  }

  .desktop\:first\:mt-2\.5:first-child{
    margin-top: 0.625rem;
  }

  .desktop\:first\:mt-3\.5:first-child{
    margin-top: 0.875rem;
  }

  .desktop\:first\:-mt-0:first-child{
    margin-top: 0px;
  }

  .desktop\:first\:-mt-1:first-child{
    margin-top: -0.25rem;
  }

  .desktop\:first\:-mt-2:first-child{
    margin-top: -0.5rem;
  }

  .desktop\:first\:-mt-3:first-child{
    margin-top: -0.75rem;
  }

  .desktop\:first\:-mt-4:first-child{
    margin-top: -1rem;
  }

  .desktop\:first\:-mt-5:first-child{
    margin-top: -1.25rem;
  }

  .desktop\:first\:-mt-6:first-child{
    margin-top: -1.5rem;
  }

  .desktop\:first\:-mt-7:first-child{
    margin-top: -1.75rem;
  }

  .desktop\:first\:-mt-8:first-child{
    margin-top: -2rem;
  }

  .desktop\:first\:-mt-9:first-child{
    margin-top: -2.25rem;
  }

  .desktop\:first\:-mt-10:first-child{
    margin-top: -2.5rem;
  }

  .desktop\:first\:-mt-11:first-child{
    margin-top: -2.75rem;
  }

  .desktop\:first\:-mt-12:first-child{
    margin-top: -3rem;
  }

  .desktop\:first\:-mt-14:first-child{
    margin-top: -3.5rem;
  }

  .desktop\:first\:-mt-16:first-child{
    margin-top: -4rem;
  }

  .desktop\:first\:-mt-20:first-child{
    margin-top: -5rem;
  }

  .desktop\:first\:-mt-24:first-child{
    margin-top: -6rem;
  }

  .desktop\:first\:-mt-28:first-child{
    margin-top: -7rem;
  }

  .desktop\:first\:-mt-32:first-child{
    margin-top: -8rem;
  }

  .desktop\:first\:-mt-36:first-child{
    margin-top: -9rem;
  }

  .desktop\:first\:-mt-40:first-child{
    margin-top: -10rem;
  }

  .desktop\:first\:-mt-44:first-child{
    margin-top: -11rem;
  }

  .desktop\:first\:-mt-48:first-child{
    margin-top: -12rem;
  }

  .desktop\:first\:-mt-52:first-child{
    margin-top: -13rem;
  }

  .desktop\:first\:-mt-56:first-child{
    margin-top: -14rem;
  }

  .desktop\:first\:-mt-60:first-child{
    margin-top: -15rem;
  }

  .desktop\:first\:-mt-64:first-child{
    margin-top: -16rem;
  }

  .desktop\:first\:-mt-72:first-child{
    margin-top: -18rem;
  }

  .desktop\:first\:-mt-80:first-child{
    margin-top: -20rem;
  }

  .desktop\:first\:-mt-96:first-child{
    margin-top: -24rem;
  }

  .desktop\:first\:-mt-px:first-child{
    margin-top: -1px;
  }

  .desktop\:first\:-mt-0\.5:first-child{
    margin-top: -0.125rem;
  }

  .desktop\:first\:-mt-1\.5:first-child{
    margin-top: -0.375rem;
  }

  .desktop\:first\:-mt-2\.5:first-child{
    margin-top: -0.625rem;
  }

  .desktop\:first\:-mt-3\.5:first-child{
    margin-top: -0.875rem;
  }

  .desktop\:first\:mt-neg1:first-child{
    margin-top: -.25rem;
  }

  .desktop\:first\:mt-neg2:first-child{
    margin-top: -.5rem;
  }

  .desktop\:first\:mt-neg4:first-child{
    margin-top: -1.0rem;
  }

  .desktop\:first\:mt-neg6:first-child{
    margin-top: -1.5rem;
  }

  .desktop\:first\:mt-neg12:first-child{
    margin-top: -3rem;
  }

  .desktop\:first\:mt-neg20:first-child{
    margin-top: -5rem;
  }

  .desktop\:first\:mr-0:first-child{
    margin-right: 0px;
  }

  .desktop\:first\:mr-1:first-child{
    margin-right: 0.25rem;
  }

  .desktop\:first\:mr-2:first-child{
    margin-right: 0.5rem;
  }

  .desktop\:first\:mr-3:first-child{
    margin-right: 0.75rem;
  }

  .desktop\:first\:mr-4:first-child{
    margin-right: 1rem;
  }

  .desktop\:first\:mr-5:first-child{
    margin-right: 1.25rem;
  }

  .desktop\:first\:mr-6:first-child{
    margin-right: 1.5rem;
  }

  .desktop\:first\:mr-7:first-child{
    margin-right: 1.75rem;
  }

  .desktop\:first\:mr-8:first-child{
    margin-right: 2rem;
  }

  .desktop\:first\:mr-9:first-child{
    margin-right: 2.25rem;
  }

  .desktop\:first\:mr-10:first-child{
    margin-right: 2.5rem;
  }

  .desktop\:first\:mr-11:first-child{
    margin-right: 2.75rem;
  }

  .desktop\:first\:mr-12:first-child{
    margin-right: 3rem;
  }

  .desktop\:first\:mr-14:first-child{
    margin-right: 3.5rem;
  }

  .desktop\:first\:mr-16:first-child{
    margin-right: 4rem;
  }

  .desktop\:first\:mr-20:first-child{
    margin-right: 5rem;
  }

  .desktop\:first\:mr-24:first-child{
    margin-right: 6rem;
  }

  .desktop\:first\:mr-28:first-child{
    margin-right: 7rem;
  }

  .desktop\:first\:mr-32:first-child{
    margin-right: 8rem;
  }

  .desktop\:first\:mr-36:first-child{
    margin-right: 9rem;
  }

  .desktop\:first\:mr-40:first-child{
    margin-right: 10rem;
  }

  .desktop\:first\:mr-44:first-child{
    margin-right: 11rem;
  }

  .desktop\:first\:mr-48:first-child{
    margin-right: 12rem;
  }

  .desktop\:first\:mr-52:first-child{
    margin-right: 13rem;
  }

  .desktop\:first\:mr-56:first-child{
    margin-right: 14rem;
  }

  .desktop\:first\:mr-60:first-child{
    margin-right: 15rem;
  }

  .desktop\:first\:mr-64:first-child{
    margin-right: 16rem;
  }

  .desktop\:first\:mr-72:first-child{
    margin-right: 18rem;
  }

  .desktop\:first\:mr-80:first-child{
    margin-right: 20rem;
  }

  .desktop\:first\:mr-96:first-child{
    margin-right: 24rem;
  }

  .desktop\:first\:mr-auto:first-child{
    margin-right: auto;
  }

  .desktop\:first\:mr-px:first-child{
    margin-right: 1px;
  }

  .desktop\:first\:mr-0\.5:first-child{
    margin-right: 0.125rem;
  }

  .desktop\:first\:mr-1\.5:first-child{
    margin-right: 0.375rem;
  }

  .desktop\:first\:mr-2\.5:first-child{
    margin-right: 0.625rem;
  }

  .desktop\:first\:mr-3\.5:first-child{
    margin-right: 0.875rem;
  }

  .desktop\:first\:-mr-0:first-child{
    margin-right: 0px;
  }

  .desktop\:first\:-mr-1:first-child{
    margin-right: -0.25rem;
  }

  .desktop\:first\:-mr-2:first-child{
    margin-right: -0.5rem;
  }

  .desktop\:first\:-mr-3:first-child{
    margin-right: -0.75rem;
  }

  .desktop\:first\:-mr-4:first-child{
    margin-right: -1rem;
  }

  .desktop\:first\:-mr-5:first-child{
    margin-right: -1.25rem;
  }

  .desktop\:first\:-mr-6:first-child{
    margin-right: -1.5rem;
  }

  .desktop\:first\:-mr-7:first-child{
    margin-right: -1.75rem;
  }

  .desktop\:first\:-mr-8:first-child{
    margin-right: -2rem;
  }

  .desktop\:first\:-mr-9:first-child{
    margin-right: -2.25rem;
  }

  .desktop\:first\:-mr-10:first-child{
    margin-right: -2.5rem;
  }

  .desktop\:first\:-mr-11:first-child{
    margin-right: -2.75rem;
  }

  .desktop\:first\:-mr-12:first-child{
    margin-right: -3rem;
  }

  .desktop\:first\:-mr-14:first-child{
    margin-right: -3.5rem;
  }

  .desktop\:first\:-mr-16:first-child{
    margin-right: -4rem;
  }

  .desktop\:first\:-mr-20:first-child{
    margin-right: -5rem;
  }

  .desktop\:first\:-mr-24:first-child{
    margin-right: -6rem;
  }

  .desktop\:first\:-mr-28:first-child{
    margin-right: -7rem;
  }

  .desktop\:first\:-mr-32:first-child{
    margin-right: -8rem;
  }

  .desktop\:first\:-mr-36:first-child{
    margin-right: -9rem;
  }

  .desktop\:first\:-mr-40:first-child{
    margin-right: -10rem;
  }

  .desktop\:first\:-mr-44:first-child{
    margin-right: -11rem;
  }

  .desktop\:first\:-mr-48:first-child{
    margin-right: -12rem;
  }

  .desktop\:first\:-mr-52:first-child{
    margin-right: -13rem;
  }

  .desktop\:first\:-mr-56:first-child{
    margin-right: -14rem;
  }

  .desktop\:first\:-mr-60:first-child{
    margin-right: -15rem;
  }

  .desktop\:first\:-mr-64:first-child{
    margin-right: -16rem;
  }

  .desktop\:first\:-mr-72:first-child{
    margin-right: -18rem;
  }

  .desktop\:first\:-mr-80:first-child{
    margin-right: -20rem;
  }

  .desktop\:first\:-mr-96:first-child{
    margin-right: -24rem;
  }

  .desktop\:first\:-mr-px:first-child{
    margin-right: -1px;
  }

  .desktop\:first\:-mr-0\.5:first-child{
    margin-right: -0.125rem;
  }

  .desktop\:first\:-mr-1\.5:first-child{
    margin-right: -0.375rem;
  }

  .desktop\:first\:-mr-2\.5:first-child{
    margin-right: -0.625rem;
  }

  .desktop\:first\:-mr-3\.5:first-child{
    margin-right: -0.875rem;
  }

  .desktop\:first\:mr-neg1:first-child{
    margin-right: -.25rem;
  }

  .desktop\:first\:mr-neg2:first-child{
    margin-right: -.5rem;
  }

  .desktop\:first\:mr-neg4:first-child{
    margin-right: -1.0rem;
  }

  .desktop\:first\:mr-neg6:first-child{
    margin-right: -1.5rem;
  }

  .desktop\:first\:mr-neg12:first-child{
    margin-right: -3rem;
  }

  .desktop\:first\:mr-neg20:first-child{
    margin-right: -5rem;
  }

  .desktop\:first\:mb-0:first-child{
    margin-bottom: 0px;
  }

  .desktop\:first\:mb-1:first-child{
    margin-bottom: 0.25rem;
  }

  .desktop\:first\:mb-2:first-child{
    margin-bottom: 0.5rem;
  }

  .desktop\:first\:mb-3:first-child{
    margin-bottom: 0.75rem;
  }

  .desktop\:first\:mb-4:first-child{
    margin-bottom: 1rem;
  }

  .desktop\:first\:mb-5:first-child{
    margin-bottom: 1.25rem;
  }

  .desktop\:first\:mb-6:first-child{
    margin-bottom: 1.5rem;
  }

  .desktop\:first\:mb-7:first-child{
    margin-bottom: 1.75rem;
  }

  .desktop\:first\:mb-8:first-child{
    margin-bottom: 2rem;
  }

  .desktop\:first\:mb-9:first-child{
    margin-bottom: 2.25rem;
  }

  .desktop\:first\:mb-10:first-child{
    margin-bottom: 2.5rem;
  }

  .desktop\:first\:mb-11:first-child{
    margin-bottom: 2.75rem;
  }

  .desktop\:first\:mb-12:first-child{
    margin-bottom: 3rem;
  }

  .desktop\:first\:mb-14:first-child{
    margin-bottom: 3.5rem;
  }

  .desktop\:first\:mb-16:first-child{
    margin-bottom: 4rem;
  }

  .desktop\:first\:mb-20:first-child{
    margin-bottom: 5rem;
  }

  .desktop\:first\:mb-24:first-child{
    margin-bottom: 6rem;
  }

  .desktop\:first\:mb-28:first-child{
    margin-bottom: 7rem;
  }

  .desktop\:first\:mb-32:first-child{
    margin-bottom: 8rem;
  }

  .desktop\:first\:mb-36:first-child{
    margin-bottom: 9rem;
  }

  .desktop\:first\:mb-40:first-child{
    margin-bottom: 10rem;
  }

  .desktop\:first\:mb-44:first-child{
    margin-bottom: 11rem;
  }

  .desktop\:first\:mb-48:first-child{
    margin-bottom: 12rem;
  }

  .desktop\:first\:mb-52:first-child{
    margin-bottom: 13rem;
  }

  .desktop\:first\:mb-56:first-child{
    margin-bottom: 14rem;
  }

  .desktop\:first\:mb-60:first-child{
    margin-bottom: 15rem;
  }

  .desktop\:first\:mb-64:first-child{
    margin-bottom: 16rem;
  }

  .desktop\:first\:mb-72:first-child{
    margin-bottom: 18rem;
  }

  .desktop\:first\:mb-80:first-child{
    margin-bottom: 20rem;
  }

  .desktop\:first\:mb-96:first-child{
    margin-bottom: 24rem;
  }

  .desktop\:first\:mb-auto:first-child{
    margin-bottom: auto;
  }

  .desktop\:first\:mb-px:first-child{
    margin-bottom: 1px;
  }

  .desktop\:first\:mb-0\.5:first-child{
    margin-bottom: 0.125rem;
  }

  .desktop\:first\:mb-1\.5:first-child{
    margin-bottom: 0.375rem;
  }

  .desktop\:first\:mb-2\.5:first-child{
    margin-bottom: 0.625rem;
  }

  .desktop\:first\:mb-3\.5:first-child{
    margin-bottom: 0.875rem;
  }

  .desktop\:first\:-mb-0:first-child{
    margin-bottom: 0px;
  }

  .desktop\:first\:-mb-1:first-child{
    margin-bottom: -0.25rem;
  }

  .desktop\:first\:-mb-2:first-child{
    margin-bottom: -0.5rem;
  }

  .desktop\:first\:-mb-3:first-child{
    margin-bottom: -0.75rem;
  }

  .desktop\:first\:-mb-4:first-child{
    margin-bottom: -1rem;
  }

  .desktop\:first\:-mb-5:first-child{
    margin-bottom: -1.25rem;
  }

  .desktop\:first\:-mb-6:first-child{
    margin-bottom: -1.5rem;
  }

  .desktop\:first\:-mb-7:first-child{
    margin-bottom: -1.75rem;
  }

  .desktop\:first\:-mb-8:first-child{
    margin-bottom: -2rem;
  }

  .desktop\:first\:-mb-9:first-child{
    margin-bottom: -2.25rem;
  }

  .desktop\:first\:-mb-10:first-child{
    margin-bottom: -2.5rem;
  }

  .desktop\:first\:-mb-11:first-child{
    margin-bottom: -2.75rem;
  }

  .desktop\:first\:-mb-12:first-child{
    margin-bottom: -3rem;
  }

  .desktop\:first\:-mb-14:first-child{
    margin-bottom: -3.5rem;
  }

  .desktop\:first\:-mb-16:first-child{
    margin-bottom: -4rem;
  }

  .desktop\:first\:-mb-20:first-child{
    margin-bottom: -5rem;
  }

  .desktop\:first\:-mb-24:first-child{
    margin-bottom: -6rem;
  }

  .desktop\:first\:-mb-28:first-child{
    margin-bottom: -7rem;
  }

  .desktop\:first\:-mb-32:first-child{
    margin-bottom: -8rem;
  }

  .desktop\:first\:-mb-36:first-child{
    margin-bottom: -9rem;
  }

  .desktop\:first\:-mb-40:first-child{
    margin-bottom: -10rem;
  }

  .desktop\:first\:-mb-44:first-child{
    margin-bottom: -11rem;
  }

  .desktop\:first\:-mb-48:first-child{
    margin-bottom: -12rem;
  }

  .desktop\:first\:-mb-52:first-child{
    margin-bottom: -13rem;
  }

  .desktop\:first\:-mb-56:first-child{
    margin-bottom: -14rem;
  }

  .desktop\:first\:-mb-60:first-child{
    margin-bottom: -15rem;
  }

  .desktop\:first\:-mb-64:first-child{
    margin-bottom: -16rem;
  }

  .desktop\:first\:-mb-72:first-child{
    margin-bottom: -18rem;
  }

  .desktop\:first\:-mb-80:first-child{
    margin-bottom: -20rem;
  }

  .desktop\:first\:-mb-96:first-child{
    margin-bottom: -24rem;
  }

  .desktop\:first\:-mb-px:first-child{
    margin-bottom: -1px;
  }

  .desktop\:first\:-mb-0\.5:first-child{
    margin-bottom: -0.125rem;
  }

  .desktop\:first\:-mb-1\.5:first-child{
    margin-bottom: -0.375rem;
  }

  .desktop\:first\:-mb-2\.5:first-child{
    margin-bottom: -0.625rem;
  }

  .desktop\:first\:-mb-3\.5:first-child{
    margin-bottom: -0.875rem;
  }

  .desktop\:first\:mb-neg1:first-child{
    margin-bottom: -.25rem;
  }

  .desktop\:first\:mb-neg2:first-child{
    margin-bottom: -.5rem;
  }

  .desktop\:first\:mb-neg4:first-child{
    margin-bottom: -1.0rem;
  }

  .desktop\:first\:mb-neg6:first-child{
    margin-bottom: -1.5rem;
  }

  .desktop\:first\:mb-neg12:first-child{
    margin-bottom: -3rem;
  }

  .desktop\:first\:mb-neg20:first-child{
    margin-bottom: -5rem;
  }

  .desktop\:first\:ml-0:first-child{
    margin-left: 0px;
  }

  .desktop\:first\:ml-1:first-child{
    margin-left: 0.25rem;
  }

  .desktop\:first\:ml-2:first-child{
    margin-left: 0.5rem;
  }

  .desktop\:first\:ml-3:first-child{
    margin-left: 0.75rem;
  }

  .desktop\:first\:ml-4:first-child{
    margin-left: 1rem;
  }

  .desktop\:first\:ml-5:first-child{
    margin-left: 1.25rem;
  }

  .desktop\:first\:ml-6:first-child{
    margin-left: 1.5rem;
  }

  .desktop\:first\:ml-7:first-child{
    margin-left: 1.75rem;
  }

  .desktop\:first\:ml-8:first-child{
    margin-left: 2rem;
  }

  .desktop\:first\:ml-9:first-child{
    margin-left: 2.25rem;
  }

  .desktop\:first\:ml-10:first-child{
    margin-left: 2.5rem;
  }

  .desktop\:first\:ml-11:first-child{
    margin-left: 2.75rem;
  }

  .desktop\:first\:ml-12:first-child{
    margin-left: 3rem;
  }

  .desktop\:first\:ml-14:first-child{
    margin-left: 3.5rem;
  }

  .desktop\:first\:ml-16:first-child{
    margin-left: 4rem;
  }

  .desktop\:first\:ml-20:first-child{
    margin-left: 5rem;
  }

  .desktop\:first\:ml-24:first-child{
    margin-left: 6rem;
  }

  .desktop\:first\:ml-28:first-child{
    margin-left: 7rem;
  }

  .desktop\:first\:ml-32:first-child{
    margin-left: 8rem;
  }

  .desktop\:first\:ml-36:first-child{
    margin-left: 9rem;
  }

  .desktop\:first\:ml-40:first-child{
    margin-left: 10rem;
  }

  .desktop\:first\:ml-44:first-child{
    margin-left: 11rem;
  }

  .desktop\:first\:ml-48:first-child{
    margin-left: 12rem;
  }

  .desktop\:first\:ml-52:first-child{
    margin-left: 13rem;
  }

  .desktop\:first\:ml-56:first-child{
    margin-left: 14rem;
  }

  .desktop\:first\:ml-60:first-child{
    margin-left: 15rem;
  }

  .desktop\:first\:ml-64:first-child{
    margin-left: 16rem;
  }

  .desktop\:first\:ml-72:first-child{
    margin-left: 18rem;
  }

  .desktop\:first\:ml-80:first-child{
    margin-left: 20rem;
  }

  .desktop\:first\:ml-96:first-child{
    margin-left: 24rem;
  }

  .desktop\:first\:ml-auto:first-child{
    margin-left: auto;
  }

  .desktop\:first\:ml-px:first-child{
    margin-left: 1px;
  }

  .desktop\:first\:ml-0\.5:first-child{
    margin-left: 0.125rem;
  }

  .desktop\:first\:ml-1\.5:first-child{
    margin-left: 0.375rem;
  }

  .desktop\:first\:ml-2\.5:first-child{
    margin-left: 0.625rem;
  }

  .desktop\:first\:ml-3\.5:first-child{
    margin-left: 0.875rem;
  }

  .desktop\:first\:-ml-0:first-child{
    margin-left: 0px;
  }

  .desktop\:first\:-ml-1:first-child{
    margin-left: -0.25rem;
  }

  .desktop\:first\:-ml-2:first-child{
    margin-left: -0.5rem;
  }

  .desktop\:first\:-ml-3:first-child{
    margin-left: -0.75rem;
  }

  .desktop\:first\:-ml-4:first-child{
    margin-left: -1rem;
  }

  .desktop\:first\:-ml-5:first-child{
    margin-left: -1.25rem;
  }

  .desktop\:first\:-ml-6:first-child{
    margin-left: -1.5rem;
  }

  .desktop\:first\:-ml-7:first-child{
    margin-left: -1.75rem;
  }

  .desktop\:first\:-ml-8:first-child{
    margin-left: -2rem;
  }

  .desktop\:first\:-ml-9:first-child{
    margin-left: -2.25rem;
  }

  .desktop\:first\:-ml-10:first-child{
    margin-left: -2.5rem;
  }

  .desktop\:first\:-ml-11:first-child{
    margin-left: -2.75rem;
  }

  .desktop\:first\:-ml-12:first-child{
    margin-left: -3rem;
  }

  .desktop\:first\:-ml-14:first-child{
    margin-left: -3.5rem;
  }

  .desktop\:first\:-ml-16:first-child{
    margin-left: -4rem;
  }

  .desktop\:first\:-ml-20:first-child{
    margin-left: -5rem;
  }

  .desktop\:first\:-ml-24:first-child{
    margin-left: -6rem;
  }

  .desktop\:first\:-ml-28:first-child{
    margin-left: -7rem;
  }

  .desktop\:first\:-ml-32:first-child{
    margin-left: -8rem;
  }

  .desktop\:first\:-ml-36:first-child{
    margin-left: -9rem;
  }

  .desktop\:first\:-ml-40:first-child{
    margin-left: -10rem;
  }

  .desktop\:first\:-ml-44:first-child{
    margin-left: -11rem;
  }

  .desktop\:first\:-ml-48:first-child{
    margin-left: -12rem;
  }

  .desktop\:first\:-ml-52:first-child{
    margin-left: -13rem;
  }

  .desktop\:first\:-ml-56:first-child{
    margin-left: -14rem;
  }

  .desktop\:first\:-ml-60:first-child{
    margin-left: -15rem;
  }

  .desktop\:first\:-ml-64:first-child{
    margin-left: -16rem;
  }

  .desktop\:first\:-ml-72:first-child{
    margin-left: -18rem;
  }

  .desktop\:first\:-ml-80:first-child{
    margin-left: -20rem;
  }

  .desktop\:first\:-ml-96:first-child{
    margin-left: -24rem;
  }

  .desktop\:first\:-ml-px:first-child{
    margin-left: -1px;
  }

  .desktop\:first\:-ml-0\.5:first-child{
    margin-left: -0.125rem;
  }

  .desktop\:first\:-ml-1\.5:first-child{
    margin-left: -0.375rem;
  }

  .desktop\:first\:-ml-2\.5:first-child{
    margin-left: -0.625rem;
  }

  .desktop\:first\:-ml-3\.5:first-child{
    margin-left: -0.875rem;
  }

  .desktop\:first\:ml-neg1:first-child{
    margin-left: -.25rem;
  }

  .desktop\:first\:ml-neg2:first-child{
    margin-left: -.5rem;
  }

  .desktop\:first\:ml-neg4:first-child{
    margin-left: -1.0rem;
  }

  .desktop\:first\:ml-neg6:first-child{
    margin-left: -1.5rem;
  }

  .desktop\:first\:ml-neg12:first-child{
    margin-left: -3rem;
  }

  .desktop\:first\:ml-neg20:first-child{
    margin-left: -5rem;
  }

  .desktop\:last\:mt-0:last-child{
    margin-top: 0px;
  }

  .desktop\:last\:mt-1:last-child{
    margin-top: 0.25rem;
  }

  .desktop\:last\:mt-2:last-child{
    margin-top: 0.5rem;
  }

  .desktop\:last\:mt-3:last-child{
    margin-top: 0.75rem;
  }

  .desktop\:last\:mt-4:last-child{
    margin-top: 1rem;
  }

  .desktop\:last\:mt-5:last-child{
    margin-top: 1.25rem;
  }

  .desktop\:last\:mt-6:last-child{
    margin-top: 1.5rem;
  }

  .desktop\:last\:mt-7:last-child{
    margin-top: 1.75rem;
  }

  .desktop\:last\:mt-8:last-child{
    margin-top: 2rem;
  }

  .desktop\:last\:mt-9:last-child{
    margin-top: 2.25rem;
  }

  .desktop\:last\:mt-10:last-child{
    margin-top: 2.5rem;
  }

  .desktop\:last\:mt-11:last-child{
    margin-top: 2.75rem;
  }

  .desktop\:last\:mt-12:last-child{
    margin-top: 3rem;
  }

  .desktop\:last\:mt-14:last-child{
    margin-top: 3.5rem;
  }

  .desktop\:last\:mt-16:last-child{
    margin-top: 4rem;
  }

  .desktop\:last\:mt-20:last-child{
    margin-top: 5rem;
  }

  .desktop\:last\:mt-24:last-child{
    margin-top: 6rem;
  }

  .desktop\:last\:mt-28:last-child{
    margin-top: 7rem;
  }

  .desktop\:last\:mt-32:last-child{
    margin-top: 8rem;
  }

  .desktop\:last\:mt-36:last-child{
    margin-top: 9rem;
  }

  .desktop\:last\:mt-40:last-child{
    margin-top: 10rem;
  }

  .desktop\:last\:mt-44:last-child{
    margin-top: 11rem;
  }

  .desktop\:last\:mt-48:last-child{
    margin-top: 12rem;
  }

  .desktop\:last\:mt-52:last-child{
    margin-top: 13rem;
  }

  .desktop\:last\:mt-56:last-child{
    margin-top: 14rem;
  }

  .desktop\:last\:mt-60:last-child{
    margin-top: 15rem;
  }

  .desktop\:last\:mt-64:last-child{
    margin-top: 16rem;
  }

  .desktop\:last\:mt-72:last-child{
    margin-top: 18rem;
  }

  .desktop\:last\:mt-80:last-child{
    margin-top: 20rem;
  }

  .desktop\:last\:mt-96:last-child{
    margin-top: 24rem;
  }

  .desktop\:last\:mt-auto:last-child{
    margin-top: auto;
  }

  .desktop\:last\:mt-px:last-child{
    margin-top: 1px;
  }

  .desktop\:last\:mt-0\.5:last-child{
    margin-top: 0.125rem;
  }

  .desktop\:last\:mt-1\.5:last-child{
    margin-top: 0.375rem;
  }

  .desktop\:last\:mt-2\.5:last-child{
    margin-top: 0.625rem;
  }

  .desktop\:last\:mt-3\.5:last-child{
    margin-top: 0.875rem;
  }

  .desktop\:last\:-mt-0:last-child{
    margin-top: 0px;
  }

  .desktop\:last\:-mt-1:last-child{
    margin-top: -0.25rem;
  }

  .desktop\:last\:-mt-2:last-child{
    margin-top: -0.5rem;
  }

  .desktop\:last\:-mt-3:last-child{
    margin-top: -0.75rem;
  }

  .desktop\:last\:-mt-4:last-child{
    margin-top: -1rem;
  }

  .desktop\:last\:-mt-5:last-child{
    margin-top: -1.25rem;
  }

  .desktop\:last\:-mt-6:last-child{
    margin-top: -1.5rem;
  }

  .desktop\:last\:-mt-7:last-child{
    margin-top: -1.75rem;
  }

  .desktop\:last\:-mt-8:last-child{
    margin-top: -2rem;
  }

  .desktop\:last\:-mt-9:last-child{
    margin-top: -2.25rem;
  }

  .desktop\:last\:-mt-10:last-child{
    margin-top: -2.5rem;
  }

  .desktop\:last\:-mt-11:last-child{
    margin-top: -2.75rem;
  }

  .desktop\:last\:-mt-12:last-child{
    margin-top: -3rem;
  }

  .desktop\:last\:-mt-14:last-child{
    margin-top: -3.5rem;
  }

  .desktop\:last\:-mt-16:last-child{
    margin-top: -4rem;
  }

  .desktop\:last\:-mt-20:last-child{
    margin-top: -5rem;
  }

  .desktop\:last\:-mt-24:last-child{
    margin-top: -6rem;
  }

  .desktop\:last\:-mt-28:last-child{
    margin-top: -7rem;
  }

  .desktop\:last\:-mt-32:last-child{
    margin-top: -8rem;
  }

  .desktop\:last\:-mt-36:last-child{
    margin-top: -9rem;
  }

  .desktop\:last\:-mt-40:last-child{
    margin-top: -10rem;
  }

  .desktop\:last\:-mt-44:last-child{
    margin-top: -11rem;
  }

  .desktop\:last\:-mt-48:last-child{
    margin-top: -12rem;
  }

  .desktop\:last\:-mt-52:last-child{
    margin-top: -13rem;
  }

  .desktop\:last\:-mt-56:last-child{
    margin-top: -14rem;
  }

  .desktop\:last\:-mt-60:last-child{
    margin-top: -15rem;
  }

  .desktop\:last\:-mt-64:last-child{
    margin-top: -16rem;
  }

  .desktop\:last\:-mt-72:last-child{
    margin-top: -18rem;
  }

  .desktop\:last\:-mt-80:last-child{
    margin-top: -20rem;
  }

  .desktop\:last\:-mt-96:last-child{
    margin-top: -24rem;
  }

  .desktop\:last\:-mt-px:last-child{
    margin-top: -1px;
  }

  .desktop\:last\:-mt-0\.5:last-child{
    margin-top: -0.125rem;
  }

  .desktop\:last\:-mt-1\.5:last-child{
    margin-top: -0.375rem;
  }

  .desktop\:last\:-mt-2\.5:last-child{
    margin-top: -0.625rem;
  }

  .desktop\:last\:-mt-3\.5:last-child{
    margin-top: -0.875rem;
  }

  .desktop\:last\:mt-neg1:last-child{
    margin-top: -.25rem;
  }

  .desktop\:last\:mt-neg2:last-child{
    margin-top: -.5rem;
  }

  .desktop\:last\:mt-neg4:last-child{
    margin-top: -1.0rem;
  }

  .desktop\:last\:mt-neg6:last-child{
    margin-top: -1.5rem;
  }

  .desktop\:last\:mt-neg12:last-child{
    margin-top: -3rem;
  }

  .desktop\:last\:mt-neg20:last-child{
    margin-top: -5rem;
  }

  .desktop\:last\:mr-0:last-child{
    margin-right: 0px;
  }

  .desktop\:last\:mr-1:last-child{
    margin-right: 0.25rem;
  }

  .desktop\:last\:mr-2:last-child{
    margin-right: 0.5rem;
  }

  .desktop\:last\:mr-3:last-child{
    margin-right: 0.75rem;
  }

  .desktop\:last\:mr-4:last-child{
    margin-right: 1rem;
  }

  .desktop\:last\:mr-5:last-child{
    margin-right: 1.25rem;
  }

  .desktop\:last\:mr-6:last-child{
    margin-right: 1.5rem;
  }

  .desktop\:last\:mr-7:last-child{
    margin-right: 1.75rem;
  }

  .desktop\:last\:mr-8:last-child{
    margin-right: 2rem;
  }

  .desktop\:last\:mr-9:last-child{
    margin-right: 2.25rem;
  }

  .desktop\:last\:mr-10:last-child{
    margin-right: 2.5rem;
  }

  .desktop\:last\:mr-11:last-child{
    margin-right: 2.75rem;
  }

  .desktop\:last\:mr-12:last-child{
    margin-right: 3rem;
  }

  .desktop\:last\:mr-14:last-child{
    margin-right: 3.5rem;
  }

  .desktop\:last\:mr-16:last-child{
    margin-right: 4rem;
  }

  .desktop\:last\:mr-20:last-child{
    margin-right: 5rem;
  }

  .desktop\:last\:mr-24:last-child{
    margin-right: 6rem;
  }

  .desktop\:last\:mr-28:last-child{
    margin-right: 7rem;
  }

  .desktop\:last\:mr-32:last-child{
    margin-right: 8rem;
  }

  .desktop\:last\:mr-36:last-child{
    margin-right: 9rem;
  }

  .desktop\:last\:mr-40:last-child{
    margin-right: 10rem;
  }

  .desktop\:last\:mr-44:last-child{
    margin-right: 11rem;
  }

  .desktop\:last\:mr-48:last-child{
    margin-right: 12rem;
  }

  .desktop\:last\:mr-52:last-child{
    margin-right: 13rem;
  }

  .desktop\:last\:mr-56:last-child{
    margin-right: 14rem;
  }

  .desktop\:last\:mr-60:last-child{
    margin-right: 15rem;
  }

  .desktop\:last\:mr-64:last-child{
    margin-right: 16rem;
  }

  .desktop\:last\:mr-72:last-child{
    margin-right: 18rem;
  }

  .desktop\:last\:mr-80:last-child{
    margin-right: 20rem;
  }

  .desktop\:last\:mr-96:last-child{
    margin-right: 24rem;
  }

  .desktop\:last\:mr-auto:last-child{
    margin-right: auto;
  }

  .desktop\:last\:mr-px:last-child{
    margin-right: 1px;
  }

  .desktop\:last\:mr-0\.5:last-child{
    margin-right: 0.125rem;
  }

  .desktop\:last\:mr-1\.5:last-child{
    margin-right: 0.375rem;
  }

  .desktop\:last\:mr-2\.5:last-child{
    margin-right: 0.625rem;
  }

  .desktop\:last\:mr-3\.5:last-child{
    margin-right: 0.875rem;
  }

  .desktop\:last\:-mr-0:last-child{
    margin-right: 0px;
  }

  .desktop\:last\:-mr-1:last-child{
    margin-right: -0.25rem;
  }

  .desktop\:last\:-mr-2:last-child{
    margin-right: -0.5rem;
  }

  .desktop\:last\:-mr-3:last-child{
    margin-right: -0.75rem;
  }

  .desktop\:last\:-mr-4:last-child{
    margin-right: -1rem;
  }

  .desktop\:last\:-mr-5:last-child{
    margin-right: -1.25rem;
  }

  .desktop\:last\:-mr-6:last-child{
    margin-right: -1.5rem;
  }

  .desktop\:last\:-mr-7:last-child{
    margin-right: -1.75rem;
  }

  .desktop\:last\:-mr-8:last-child{
    margin-right: -2rem;
  }

  .desktop\:last\:-mr-9:last-child{
    margin-right: -2.25rem;
  }

  .desktop\:last\:-mr-10:last-child{
    margin-right: -2.5rem;
  }

  .desktop\:last\:-mr-11:last-child{
    margin-right: -2.75rem;
  }

  .desktop\:last\:-mr-12:last-child{
    margin-right: -3rem;
  }

  .desktop\:last\:-mr-14:last-child{
    margin-right: -3.5rem;
  }

  .desktop\:last\:-mr-16:last-child{
    margin-right: -4rem;
  }

  .desktop\:last\:-mr-20:last-child{
    margin-right: -5rem;
  }

  .desktop\:last\:-mr-24:last-child{
    margin-right: -6rem;
  }

  .desktop\:last\:-mr-28:last-child{
    margin-right: -7rem;
  }

  .desktop\:last\:-mr-32:last-child{
    margin-right: -8rem;
  }

  .desktop\:last\:-mr-36:last-child{
    margin-right: -9rem;
  }

  .desktop\:last\:-mr-40:last-child{
    margin-right: -10rem;
  }

  .desktop\:last\:-mr-44:last-child{
    margin-right: -11rem;
  }

  .desktop\:last\:-mr-48:last-child{
    margin-right: -12rem;
  }

  .desktop\:last\:-mr-52:last-child{
    margin-right: -13rem;
  }

  .desktop\:last\:-mr-56:last-child{
    margin-right: -14rem;
  }

  .desktop\:last\:-mr-60:last-child{
    margin-right: -15rem;
  }

  .desktop\:last\:-mr-64:last-child{
    margin-right: -16rem;
  }

  .desktop\:last\:-mr-72:last-child{
    margin-right: -18rem;
  }

  .desktop\:last\:-mr-80:last-child{
    margin-right: -20rem;
  }

  .desktop\:last\:-mr-96:last-child{
    margin-right: -24rem;
  }

  .desktop\:last\:-mr-px:last-child{
    margin-right: -1px;
  }

  .desktop\:last\:-mr-0\.5:last-child{
    margin-right: -0.125rem;
  }

  .desktop\:last\:-mr-1\.5:last-child{
    margin-right: -0.375rem;
  }

  .desktop\:last\:-mr-2\.5:last-child{
    margin-right: -0.625rem;
  }

  .desktop\:last\:-mr-3\.5:last-child{
    margin-right: -0.875rem;
  }

  .desktop\:last\:mr-neg1:last-child{
    margin-right: -.25rem;
  }

  .desktop\:last\:mr-neg2:last-child{
    margin-right: -.5rem;
  }

  .desktop\:last\:mr-neg4:last-child{
    margin-right: -1.0rem;
  }

  .desktop\:last\:mr-neg6:last-child{
    margin-right: -1.5rem;
  }

  .desktop\:last\:mr-neg12:last-child{
    margin-right: -3rem;
  }

  .desktop\:last\:mr-neg20:last-child{
    margin-right: -5rem;
  }

  .desktop\:last\:mb-0:last-child{
    margin-bottom: 0px;
  }

  .desktop\:last\:mb-1:last-child{
    margin-bottom: 0.25rem;
  }

  .desktop\:last\:mb-2:last-child{
    margin-bottom: 0.5rem;
  }

  .desktop\:last\:mb-3:last-child{
    margin-bottom: 0.75rem;
  }

  .desktop\:last\:mb-4:last-child{
    margin-bottom: 1rem;
  }

  .desktop\:last\:mb-5:last-child{
    margin-bottom: 1.25rem;
  }

  .desktop\:last\:mb-6:last-child{
    margin-bottom: 1.5rem;
  }

  .desktop\:last\:mb-7:last-child{
    margin-bottom: 1.75rem;
  }

  .desktop\:last\:mb-8:last-child{
    margin-bottom: 2rem;
  }

  .desktop\:last\:mb-9:last-child{
    margin-bottom: 2.25rem;
  }

  .desktop\:last\:mb-10:last-child{
    margin-bottom: 2.5rem;
  }

  .desktop\:last\:mb-11:last-child{
    margin-bottom: 2.75rem;
  }

  .desktop\:last\:mb-12:last-child{
    margin-bottom: 3rem;
  }

  .desktop\:last\:mb-14:last-child{
    margin-bottom: 3.5rem;
  }

  .desktop\:last\:mb-16:last-child{
    margin-bottom: 4rem;
  }

  .desktop\:last\:mb-20:last-child{
    margin-bottom: 5rem;
  }

  .desktop\:last\:mb-24:last-child{
    margin-bottom: 6rem;
  }

  .desktop\:last\:mb-28:last-child{
    margin-bottom: 7rem;
  }

  .desktop\:last\:mb-32:last-child{
    margin-bottom: 8rem;
  }

  .desktop\:last\:mb-36:last-child{
    margin-bottom: 9rem;
  }

  .desktop\:last\:mb-40:last-child{
    margin-bottom: 10rem;
  }

  .desktop\:last\:mb-44:last-child{
    margin-bottom: 11rem;
  }

  .desktop\:last\:mb-48:last-child{
    margin-bottom: 12rem;
  }

  .desktop\:last\:mb-52:last-child{
    margin-bottom: 13rem;
  }

  .desktop\:last\:mb-56:last-child{
    margin-bottom: 14rem;
  }

  .desktop\:last\:mb-60:last-child{
    margin-bottom: 15rem;
  }

  .desktop\:last\:mb-64:last-child{
    margin-bottom: 16rem;
  }

  .desktop\:last\:mb-72:last-child{
    margin-bottom: 18rem;
  }

  .desktop\:last\:mb-80:last-child{
    margin-bottom: 20rem;
  }

  .desktop\:last\:mb-96:last-child{
    margin-bottom: 24rem;
  }

  .desktop\:last\:mb-auto:last-child{
    margin-bottom: auto;
  }

  .desktop\:last\:mb-px:last-child{
    margin-bottom: 1px;
  }

  .desktop\:last\:mb-0\.5:last-child{
    margin-bottom: 0.125rem;
  }

  .desktop\:last\:mb-1\.5:last-child{
    margin-bottom: 0.375rem;
  }

  .desktop\:last\:mb-2\.5:last-child{
    margin-bottom: 0.625rem;
  }

  .desktop\:last\:mb-3\.5:last-child{
    margin-bottom: 0.875rem;
  }

  .desktop\:last\:-mb-0:last-child{
    margin-bottom: 0px;
  }

  .desktop\:last\:-mb-1:last-child{
    margin-bottom: -0.25rem;
  }

  .desktop\:last\:-mb-2:last-child{
    margin-bottom: -0.5rem;
  }

  .desktop\:last\:-mb-3:last-child{
    margin-bottom: -0.75rem;
  }

  .desktop\:last\:-mb-4:last-child{
    margin-bottom: -1rem;
  }

  .desktop\:last\:-mb-5:last-child{
    margin-bottom: -1.25rem;
  }

  .desktop\:last\:-mb-6:last-child{
    margin-bottom: -1.5rem;
  }

  .desktop\:last\:-mb-7:last-child{
    margin-bottom: -1.75rem;
  }

  .desktop\:last\:-mb-8:last-child{
    margin-bottom: -2rem;
  }

  .desktop\:last\:-mb-9:last-child{
    margin-bottom: -2.25rem;
  }

  .desktop\:last\:-mb-10:last-child{
    margin-bottom: -2.5rem;
  }

  .desktop\:last\:-mb-11:last-child{
    margin-bottom: -2.75rem;
  }

  .desktop\:last\:-mb-12:last-child{
    margin-bottom: -3rem;
  }

  .desktop\:last\:-mb-14:last-child{
    margin-bottom: -3.5rem;
  }

  .desktop\:last\:-mb-16:last-child{
    margin-bottom: -4rem;
  }

  .desktop\:last\:-mb-20:last-child{
    margin-bottom: -5rem;
  }

  .desktop\:last\:-mb-24:last-child{
    margin-bottom: -6rem;
  }

  .desktop\:last\:-mb-28:last-child{
    margin-bottom: -7rem;
  }

  .desktop\:last\:-mb-32:last-child{
    margin-bottom: -8rem;
  }

  .desktop\:last\:-mb-36:last-child{
    margin-bottom: -9rem;
  }

  .desktop\:last\:-mb-40:last-child{
    margin-bottom: -10rem;
  }

  .desktop\:last\:-mb-44:last-child{
    margin-bottom: -11rem;
  }

  .desktop\:last\:-mb-48:last-child{
    margin-bottom: -12rem;
  }

  .desktop\:last\:-mb-52:last-child{
    margin-bottom: -13rem;
  }

  .desktop\:last\:-mb-56:last-child{
    margin-bottom: -14rem;
  }

  .desktop\:last\:-mb-60:last-child{
    margin-bottom: -15rem;
  }

  .desktop\:last\:-mb-64:last-child{
    margin-bottom: -16rem;
  }

  .desktop\:last\:-mb-72:last-child{
    margin-bottom: -18rem;
  }

  .desktop\:last\:-mb-80:last-child{
    margin-bottom: -20rem;
  }

  .desktop\:last\:-mb-96:last-child{
    margin-bottom: -24rem;
  }

  .desktop\:last\:-mb-px:last-child{
    margin-bottom: -1px;
  }

  .desktop\:last\:-mb-0\.5:last-child{
    margin-bottom: -0.125rem;
  }

  .desktop\:last\:-mb-1\.5:last-child{
    margin-bottom: -0.375rem;
  }

  .desktop\:last\:-mb-2\.5:last-child{
    margin-bottom: -0.625rem;
  }

  .desktop\:last\:-mb-3\.5:last-child{
    margin-bottom: -0.875rem;
  }

  .desktop\:last\:mb-neg1:last-child{
    margin-bottom: -.25rem;
  }

  .desktop\:last\:mb-neg2:last-child{
    margin-bottom: -.5rem;
  }

  .desktop\:last\:mb-neg4:last-child{
    margin-bottom: -1.0rem;
  }

  .desktop\:last\:mb-neg6:last-child{
    margin-bottom: -1.5rem;
  }

  .desktop\:last\:mb-neg12:last-child{
    margin-bottom: -3rem;
  }

  .desktop\:last\:mb-neg20:last-child{
    margin-bottom: -5rem;
  }

  .desktop\:last\:ml-0:last-child{
    margin-left: 0px;
  }

  .desktop\:last\:ml-1:last-child{
    margin-left: 0.25rem;
  }

  .desktop\:last\:ml-2:last-child{
    margin-left: 0.5rem;
  }

  .desktop\:last\:ml-3:last-child{
    margin-left: 0.75rem;
  }

  .desktop\:last\:ml-4:last-child{
    margin-left: 1rem;
  }

  .desktop\:last\:ml-5:last-child{
    margin-left: 1.25rem;
  }

  .desktop\:last\:ml-6:last-child{
    margin-left: 1.5rem;
  }

  .desktop\:last\:ml-7:last-child{
    margin-left: 1.75rem;
  }

  .desktop\:last\:ml-8:last-child{
    margin-left: 2rem;
  }

  .desktop\:last\:ml-9:last-child{
    margin-left: 2.25rem;
  }

  .desktop\:last\:ml-10:last-child{
    margin-left: 2.5rem;
  }

  .desktop\:last\:ml-11:last-child{
    margin-left: 2.75rem;
  }

  .desktop\:last\:ml-12:last-child{
    margin-left: 3rem;
  }

  .desktop\:last\:ml-14:last-child{
    margin-left: 3.5rem;
  }

  .desktop\:last\:ml-16:last-child{
    margin-left: 4rem;
  }

  .desktop\:last\:ml-20:last-child{
    margin-left: 5rem;
  }

  .desktop\:last\:ml-24:last-child{
    margin-left: 6rem;
  }

  .desktop\:last\:ml-28:last-child{
    margin-left: 7rem;
  }

  .desktop\:last\:ml-32:last-child{
    margin-left: 8rem;
  }

  .desktop\:last\:ml-36:last-child{
    margin-left: 9rem;
  }

  .desktop\:last\:ml-40:last-child{
    margin-left: 10rem;
  }

  .desktop\:last\:ml-44:last-child{
    margin-left: 11rem;
  }

  .desktop\:last\:ml-48:last-child{
    margin-left: 12rem;
  }

  .desktop\:last\:ml-52:last-child{
    margin-left: 13rem;
  }

  .desktop\:last\:ml-56:last-child{
    margin-left: 14rem;
  }

  .desktop\:last\:ml-60:last-child{
    margin-left: 15rem;
  }

  .desktop\:last\:ml-64:last-child{
    margin-left: 16rem;
  }

  .desktop\:last\:ml-72:last-child{
    margin-left: 18rem;
  }

  .desktop\:last\:ml-80:last-child{
    margin-left: 20rem;
  }

  .desktop\:last\:ml-96:last-child{
    margin-left: 24rem;
  }

  .desktop\:last\:ml-auto:last-child{
    margin-left: auto;
  }

  .desktop\:last\:ml-px:last-child{
    margin-left: 1px;
  }

  .desktop\:last\:ml-0\.5:last-child{
    margin-left: 0.125rem;
  }

  .desktop\:last\:ml-1\.5:last-child{
    margin-left: 0.375rem;
  }

  .desktop\:last\:ml-2\.5:last-child{
    margin-left: 0.625rem;
  }

  .desktop\:last\:ml-3\.5:last-child{
    margin-left: 0.875rem;
  }

  .desktop\:last\:-ml-0:last-child{
    margin-left: 0px;
  }

  .desktop\:last\:-ml-1:last-child{
    margin-left: -0.25rem;
  }

  .desktop\:last\:-ml-2:last-child{
    margin-left: -0.5rem;
  }

  .desktop\:last\:-ml-3:last-child{
    margin-left: -0.75rem;
  }

  .desktop\:last\:-ml-4:last-child{
    margin-left: -1rem;
  }

  .desktop\:last\:-ml-5:last-child{
    margin-left: -1.25rem;
  }

  .desktop\:last\:-ml-6:last-child{
    margin-left: -1.5rem;
  }

  .desktop\:last\:-ml-7:last-child{
    margin-left: -1.75rem;
  }

  .desktop\:last\:-ml-8:last-child{
    margin-left: -2rem;
  }

  .desktop\:last\:-ml-9:last-child{
    margin-left: -2.25rem;
  }

  .desktop\:last\:-ml-10:last-child{
    margin-left: -2.5rem;
  }

  .desktop\:last\:-ml-11:last-child{
    margin-left: -2.75rem;
  }

  .desktop\:last\:-ml-12:last-child{
    margin-left: -3rem;
  }

  .desktop\:last\:-ml-14:last-child{
    margin-left: -3.5rem;
  }

  .desktop\:last\:-ml-16:last-child{
    margin-left: -4rem;
  }

  .desktop\:last\:-ml-20:last-child{
    margin-left: -5rem;
  }

  .desktop\:last\:-ml-24:last-child{
    margin-left: -6rem;
  }

  .desktop\:last\:-ml-28:last-child{
    margin-left: -7rem;
  }

  .desktop\:last\:-ml-32:last-child{
    margin-left: -8rem;
  }

  .desktop\:last\:-ml-36:last-child{
    margin-left: -9rem;
  }

  .desktop\:last\:-ml-40:last-child{
    margin-left: -10rem;
  }

  .desktop\:last\:-ml-44:last-child{
    margin-left: -11rem;
  }

  .desktop\:last\:-ml-48:last-child{
    margin-left: -12rem;
  }

  .desktop\:last\:-ml-52:last-child{
    margin-left: -13rem;
  }

  .desktop\:last\:-ml-56:last-child{
    margin-left: -14rem;
  }

  .desktop\:last\:-ml-60:last-child{
    margin-left: -15rem;
  }

  .desktop\:last\:-ml-64:last-child{
    margin-left: -16rem;
  }

  .desktop\:last\:-ml-72:last-child{
    margin-left: -18rem;
  }

  .desktop\:last\:-ml-80:last-child{
    margin-left: -20rem;
  }

  .desktop\:last\:-ml-96:last-child{
    margin-left: -24rem;
  }

  .desktop\:last\:-ml-px:last-child{
    margin-left: -1px;
  }

  .desktop\:last\:-ml-0\.5:last-child{
    margin-left: -0.125rem;
  }

  .desktop\:last\:-ml-1\.5:last-child{
    margin-left: -0.375rem;
  }

  .desktop\:last\:-ml-2\.5:last-child{
    margin-left: -0.625rem;
  }

  .desktop\:last\:-ml-3\.5:last-child{
    margin-left: -0.875rem;
  }

  .desktop\:last\:ml-neg1:last-child{
    margin-left: -.25rem;
  }

  .desktop\:last\:ml-neg2:last-child{
    margin-left: -.5rem;
  }

  .desktop\:last\:ml-neg4:last-child{
    margin-left: -1.0rem;
  }

  .desktop\:last\:ml-neg6:last-child{
    margin-left: -1.5rem;
  }

  .desktop\:last\:ml-neg12:last-child{
    margin-left: -3rem;
  }

  .desktop\:last\:ml-neg20:last-child{
    margin-left: -5rem;
  }

  .desktop\:box-border{
    box-sizing: border-box;
  }

  .desktop\:box-content{
    box-sizing: content-box;
  }

  .desktop\:block{
    display: block;
  }

  .desktop\:inline-block{
    display: inline-block;
  }

  .desktop\:inline{
    display: inline;
  }

  .desktop\:flex{
    display: flex;
  }

  .desktop\:inline-flex{
    display: inline-flex;
  }

  .desktop\:table{
    display: table;
  }

  .desktop\:inline-table{
    display: inline-table;
  }

  .desktop\:table-caption{
    display: table-caption;
  }

  .desktop\:table-cell{
    display: table-cell;
  }

  .desktop\:table-column{
    display: table-column;
  }

  .desktop\:table-column-group{
    display: table-column-group;
  }

  .desktop\:table-footer-group{
    display: table-footer-group;
  }

  .desktop\:table-header-group{
    display: table-header-group;
  }

  .desktop\:table-row-group{
    display: table-row-group;
  }

  .desktop\:table-row{
    display: table-row;
  }

  .desktop\:flow-root{
    display: flow-root;
  }

  .desktop\:grid{
    display: grid;
  }

  .desktop\:inline-grid{
    display: inline-grid;
  }

  .desktop\:contents{
    display: contents;
  }

  .desktop\:list-item{
    display: list-item;
  }

  .desktop\:hidden{
    display: none;
  }

  .desktop\:h-0{
    height: 0px;
  }

  .desktop\:h-1{
    height: 0.25rem;
  }

  .desktop\:h-2{
    height: 0.5rem;
  }

  .desktop\:h-3{
    height: 0.75rem;
  }

  .desktop\:h-4{
    height: 1rem;
  }

  .desktop\:h-5{
    height: 1.25rem;
  }

  .desktop\:h-6{
    height: 1.5rem;
  }

  .desktop\:h-7{
    height: 1.75rem;
  }

  .desktop\:h-8{
    height: 2rem;
  }

  .desktop\:h-9{
    height: 2.25rem;
  }

  .desktop\:h-10{
    height: 2.5rem;
  }

  .desktop\:h-11{
    height: 2.75rem;
  }

  .desktop\:h-12{
    height: 3rem;
  }

  .desktop\:h-14{
    height: 3.5rem;
  }

  .desktop\:h-16{
    height: 4rem;
  }

  .desktop\:h-20{
    height: 5rem;
  }

  .desktop\:h-24{
    height: 6rem;
  }

  .desktop\:h-28{
    height: 7rem;
  }

  .desktop\:h-32{
    height: 8rem;
  }

  .desktop\:h-36{
    height: 9rem;
  }

  .desktop\:h-40{
    height: 10rem;
  }

  .desktop\:h-44{
    height: 11rem;
  }

  .desktop\:h-48{
    height: 12rem;
  }

  .desktop\:h-52{
    height: 13rem;
  }

  .desktop\:h-56{
    height: 14rem;
  }

  .desktop\:h-60{
    height: 15rem;
  }

  .desktop\:h-64{
    height: 16rem;
  }

  .desktop\:h-72{
    height: 18rem;
  }

  .desktop\:h-80{
    height: 20rem;
  }

  .desktop\:h-96{
    height: 24rem;
  }

  .desktop\:h-auto{
    height: auto;
  }

  .desktop\:h-px{
    height: 1px;
  }

  .desktop\:h-0\.5{
    height: 0.125rem;
  }

  .desktop\:h-1\.5{
    height: 0.375rem;
  }

  .desktop\:h-2\.5{
    height: 0.625rem;
  }

  .desktop\:h-3\.5{
    height: 0.875rem;
  }

  .desktop\:h-1\/2{
    height: 50%;
  }

  .desktop\:h-1\/3{
    height: 33.333333%;
  }

  .desktop\:h-2\/3{
    height: 66.666667%;
  }

  .desktop\:h-1\/4{
    height: 25%;
  }

  .desktop\:h-2\/4{
    height: 50%;
  }

  .desktop\:h-3\/4{
    height: 75%;
  }

  .desktop\:h-1\/5{
    height: 20%;
  }

  .desktop\:h-2\/5{
    height: 40%;
  }

  .desktop\:h-3\/5{
    height: 60%;
  }

  .desktop\:h-4\/5{
    height: 80%;
  }

  .desktop\:h-1\/6{
    height: 16.666667%;
  }

  .desktop\:h-2\/6{
    height: 33.333333%;
  }

  .desktop\:h-3\/6{
    height: 50%;
  }

  .desktop\:h-4\/6{
    height: 66.666667%;
  }

  .desktop\:h-5\/6{
    height: 83.333333%;
  }

  .desktop\:h-full{
    height: 100%;
  }

  .desktop\:h-screen{
    height: 100vh;
  }

  .desktop\:max-h-0{
    max-height: 0;
  }

  .desktop\:max-h-1{
    max-height: 0.25rem;
  }

  .desktop\:max-h-2{
    max-height: 0.5rem;
  }

  .desktop\:max-h-3{
    max-height: 0.75rem;
  }

  .desktop\:max-h-4{
    max-height: 1rem;
  }

  .desktop\:max-h-5{
    max-height: 1.25rem;
  }

  .desktop\:max-h-6{
    max-height: 1.5rem;
  }

  .desktop\:max-h-7{
    max-height: 1.75rem;
  }

  .desktop\:max-h-8{
    max-height: 2rem;
  }

  .desktop\:max-h-9{
    max-height: 2.25rem;
  }

  .desktop\:max-h-10{
    max-height: 2.5rem;
  }

  .desktop\:max-h-11{
    max-height: 2.75rem;
  }

  .desktop\:max-h-12{
    max-height: 3rem;
  }

  .desktop\:max-h-14{
    max-height: 3.5rem;
  }

  .desktop\:max-h-16{
    max-height: 4rem;
  }

  .desktop\:max-h-20{
    max-height: 5rem;
  }

  .desktop\:max-h-24{
    max-height: 6rem;
  }

  .desktop\:max-h-28{
    max-height: 7rem;
  }

  .desktop\:max-h-32{
    max-height: 8rem;
  }

  .desktop\:max-h-36{
    max-height: 9rem;
  }

  .desktop\:max-h-40{
    max-height: 10rem;
  }

  .desktop\:max-h-44{
    max-height: 11rem;
  }

  .desktop\:max-h-48{
    max-height: 12rem;
  }

  .desktop\:max-h-52{
    max-height: 13rem;
  }

  .desktop\:max-h-56{
    max-height: 14rem;
  }

  .desktop\:max-h-60{
    max-height: 15rem;
  }

  .desktop\:max-h-64{
    max-height: 16rem;
  }

  .desktop\:max-h-72{
    max-height: 18rem;
  }

  .desktop\:max-h-80{
    max-height: 20rem;
  }

  .desktop\:max-h-96{
    max-height: 24rem;
  }

  .desktop\:max-h-px{
    max-height: 1px;
  }

  .desktop\:max-h-0\.5{
    max-height: 0.125rem;
  }

  .desktop\:max-h-1\.5{
    max-height: 0.375rem;
  }

  .desktop\:max-h-2\.5{
    max-height: 0.625rem;
  }

  .desktop\:max-h-3\.5{
    max-height: 0.875rem;
  }

  .desktop\:max-h-full{
    max-height: 100%;
  }

  .desktop\:max-h-screen{
    max-height: 100vh;
  }

  .desktop\:min-h-0{
    min-height: 0px;
  }

  .desktop\:min-h-full{
    min-height: 100%;
  }

  .desktop\:min-h-screen{
    min-height: 100vh;
  }

  .desktop\:w-0{
    width: 0px;
  }

  .desktop\:w-1{
    width: 0.25rem;
  }

  .desktop\:w-2{
    width: 0.5rem;
  }

  .desktop\:w-3{
    width: 0.75rem;
  }

  .desktop\:w-4{
    width: 1rem;
  }

  .desktop\:w-5{
    width: 1.25rem;
  }

  .desktop\:w-6{
    width: 1.5rem;
  }

  .desktop\:w-7{
    width: 1.75rem;
  }

  .desktop\:w-8{
    width: 2rem;
  }

  .desktop\:w-9{
    width: 2.25rem;
  }

  .desktop\:w-10{
    width: 2.5rem;
  }

  .desktop\:w-11{
    width: 2.75rem;
  }

  .desktop\:w-12{
    width: 3rem;
  }

  .desktop\:w-14{
    width: 3.5rem;
  }

  .desktop\:w-16{
    width: 4rem;
  }

  .desktop\:w-20{
    width: 5rem;
  }

  .desktop\:w-24{
    width: 6rem;
  }

  .desktop\:w-28{
    width: 7rem;
  }

  .desktop\:w-32{
    width: 8rem;
  }

  .desktop\:w-36{
    width: 9rem;
  }

  .desktop\:w-40{
    width: 10rem;
  }

  .desktop\:w-44{
    width: 11rem;
  }

  .desktop\:w-48{
    width: 12rem;
  }

  .desktop\:w-52{
    width: 13rem;
  }

  .desktop\:w-56{
    width: 14rem;
  }

  .desktop\:w-60{
    width: 15rem;
  }

  .desktop\:w-64{
    width: 16rem;
  }

  .desktop\:w-72{
    width: 18rem;
  }

  .desktop\:w-80{
    width: 20rem;
  }

  .desktop\:w-96{
    width: 24rem;
  }

  .desktop\:w-auto{
    width: auto;
  }

  .desktop\:w-px{
    width: 1px;
  }

  .desktop\:w-0\.5{
    width: 0.125rem;
  }

  .desktop\:w-1\.5{
    width: 0.375rem;
  }

  .desktop\:w-2\.5{
    width: 0.625rem;
  }

  .desktop\:w-3\.5{
    width: 0.875rem;
  }

  .desktop\:w-1\/2{
    width: 50%;
  }

  .desktop\:w-1\/3{
    width: 33.333333%;
  }

  .desktop\:w-2\/3{
    width: 66.666667%;
  }

  .desktop\:w-1\/4{
    width: 25%;
  }

  .desktop\:w-2\/4{
    width: 50%;
  }

  .desktop\:w-3\/4{
    width: 75%;
  }

  .desktop\:w-1\/5{
    width: 20%;
  }

  .desktop\:w-2\/5{
    width: 40%;
  }

  .desktop\:w-3\/5{
    width: 60%;
  }

  .desktop\:w-4\/5{
    width: 80%;
  }

  .desktop\:w-1\/6{
    width: 16.666667%;
  }

  .desktop\:w-2\/6{
    width: 33.333333%;
  }

  .desktop\:w-3\/6{
    width: 50%;
  }

  .desktop\:w-4\/6{
    width: 66.666667%;
  }

  .desktop\:w-5\/6{
    width: 83.333333%;
  }

  .desktop\:w-1\/12{
    width: 8.333333%;
  }

  .desktop\:w-2\/12{
    width: 16.666667%;
  }

  .desktop\:w-3\/12{
    width: 25%;
  }

  .desktop\:w-4\/12{
    width: 33.333333%;
  }

  .desktop\:w-5\/12{
    width: 41.666667%;
  }

  .desktop\:w-6\/12{
    width: 50%;
  }

  .desktop\:w-7\/12{
    width: 58.333333%;
  }

  .desktop\:w-8\/12{
    width: 66.666667%;
  }

  .desktop\:w-9\/12{
    width: 75%;
  }

  .desktop\:w-10\/12{
    width: 83.333333%;
  }

  .desktop\:w-11\/12{
    width: 91.666667%;
  }

  .desktop\:w-full{
    width: 100%;
  }

  .desktop\:w-screen{
    width: 100vw;
  }

  .desktop\:w-min{
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }

  .desktop\:w-max{
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .desktop\:min-w-0{
    min-width: 0px;
  }

  .desktop\:min-w-full{
    min-width: 100%;
  }

  .desktop\:min-w-min{
    min-width: -webkit-min-content;
    min-width: -moz-min-content;
    min-width: min-content;
  }

  .desktop\:min-w-max{
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }

  .desktop\:max-w-0{
    max-width: 0rem;
  }

  .desktop\:max-w-none{
    max-width: none;
  }

  .desktop\:max-w-xs{
    max-width: 20rem;
  }

  .desktop\:max-w-sm{
    max-width: 24rem;
  }

  .desktop\:max-w-md{
    max-width: 28rem;
  }

  .desktop\:max-w-lg{
    max-width: 32rem;
  }

  .desktop\:max-w-xl{
    max-width: 36rem;
  }

  .desktop\:max-w-2xl{
    max-width: 42rem;
  }

  .desktop\:max-w-3xl{
    max-width: 48rem;
  }

  .desktop\:max-w-4xl{
    max-width: 56rem;
  }

  .desktop\:max-w-5xl{
    max-width: 64rem;
  }

  .desktop\:max-w-6xl{
    max-width: 72rem;
  }

  .desktop\:max-w-7xl{
    max-width: 80rem;
  }

  .desktop\:max-w-full{
    max-width: 100%;
  }

  .desktop\:max-w-min{
    max-width: -webkit-min-content;
    max-width: -moz-min-content;
    max-width: min-content;
  }

  .desktop\:max-w-max{
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }

  .desktop\:max-w-prose{
    max-width: 65ch;
  }

  .desktop\:max-w-1\/4{
    max-width: 25%;
  }

  .desktop\:max-w-3\/10{
    max-width: 30%;
  }

  .desktop\:max-w-1\/2{
    max-width: 50%;
  }

  .desktop\:flex-1{
    flex: 1 1 0%;
  }

  .desktop\:flex-auto{
    flex: 1 1 auto;
  }

  .desktop\:flex-initial{
    flex: 0 1 auto;
  }

  .desktop\:flex-none{
    flex: none;
  }

  .desktop\:flex-shrink-0{
    flex-shrink: 0;
  }

  .desktop\:flex-shrink{
    flex-shrink: 1;
  }

  .desktop\:flex-grow-0{
    flex-grow: 0;
  }

  .desktop\:flex-grow{
    flex-grow: 1;
  }

  .desktop\:table-auto{
    table-layout: auto;
  }

  .desktop\:table-fixed{
    table-layout: fixed;
  }

  .desktop\:border-collapse{
    border-collapse: collapse;
  }

  .desktop\:border-separate{
    border-collapse: separate;
  }

  .desktop\:origin-center{
    transform-origin: center;
  }

  .desktop\:origin-top{
    transform-origin: top;
  }

  .desktop\:origin-top-right{
    transform-origin: top right;
  }

  .desktop\:origin-right{
    transform-origin: right;
  }

  .desktop\:origin-bottom-right{
    transform-origin: bottom right;
  }

  .desktop\:origin-bottom{
    transform-origin: bottom;
  }

  .desktop\:origin-bottom-left{
    transform-origin: bottom left;
  }

  .desktop\:origin-left{
    transform-origin: left;
  }

  .desktop\:origin-top-left{
    transform-origin: top left;
  }

  .desktop\:transform{
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .desktop\:transform-gpu{
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .desktop\:transform-none{
    transform: none;
  }

  .desktop\:translate-x-0{
    --tw-translate-x: 0px;
  }

  .desktop\:translate-x-1{
    --tw-translate-x: 0.25rem;
  }

  .desktop\:translate-x-2{
    --tw-translate-x: 0.5rem;
  }

  .desktop\:translate-x-3{
    --tw-translate-x: 0.75rem;
  }

  .desktop\:translate-x-4{
    --tw-translate-x: 1rem;
  }

  .desktop\:translate-x-5{
    --tw-translate-x: 1.25rem;
  }

  .desktop\:translate-x-6{
    --tw-translate-x: 1.5rem;
  }

  .desktop\:translate-x-7{
    --tw-translate-x: 1.75rem;
  }

  .desktop\:translate-x-8{
    --tw-translate-x: 2rem;
  }

  .desktop\:translate-x-9{
    --tw-translate-x: 2.25rem;
  }

  .desktop\:translate-x-10{
    --tw-translate-x: 2.5rem;
  }

  .desktop\:translate-x-11{
    --tw-translate-x: 2.75rem;
  }

  .desktop\:translate-x-12{
    --tw-translate-x: 3rem;
  }

  .desktop\:translate-x-14{
    --tw-translate-x: 3.5rem;
  }

  .desktop\:translate-x-16{
    --tw-translate-x: 4rem;
  }

  .desktop\:translate-x-20{
    --tw-translate-x: 5rem;
  }

  .desktop\:translate-x-24{
    --tw-translate-x: 6rem;
  }

  .desktop\:translate-x-28{
    --tw-translate-x: 7rem;
  }

  .desktop\:translate-x-32{
    --tw-translate-x: 8rem;
  }

  .desktop\:translate-x-36{
    --tw-translate-x: 9rem;
  }

  .desktop\:translate-x-40{
    --tw-translate-x: 10rem;
  }

  .desktop\:translate-x-44{
    --tw-translate-x: 11rem;
  }

  .desktop\:translate-x-48{
    --tw-translate-x: 12rem;
  }

  .desktop\:translate-x-52{
    --tw-translate-x: 13rem;
  }

  .desktop\:translate-x-56{
    --tw-translate-x: 14rem;
  }

  .desktop\:translate-x-60{
    --tw-translate-x: 15rem;
  }

  .desktop\:translate-x-64{
    --tw-translate-x: 16rem;
  }

  .desktop\:translate-x-72{
    --tw-translate-x: 18rem;
  }

  .desktop\:translate-x-80{
    --tw-translate-x: 20rem;
  }

  .desktop\:translate-x-96{
    --tw-translate-x: 24rem;
  }

  .desktop\:translate-x-px{
    --tw-translate-x: 1px;
  }

  .desktop\:translate-x-0\.5{
    --tw-translate-x: 0.125rem;
  }

  .desktop\:translate-x-1\.5{
    --tw-translate-x: 0.375rem;
  }

  .desktop\:translate-x-2\.5{
    --tw-translate-x: 0.625rem;
  }

  .desktop\:translate-x-3\.5{
    --tw-translate-x: 0.875rem;
  }

  .desktop\:-translate-x-0{
    --tw-translate-x: 0px;
  }

  .desktop\:-translate-x-1{
    --tw-translate-x: -0.25rem;
  }

  .desktop\:-translate-x-2{
    --tw-translate-x: -0.5rem;
  }

  .desktop\:-translate-x-3{
    --tw-translate-x: -0.75rem;
  }

  .desktop\:-translate-x-4{
    --tw-translate-x: -1rem;
  }

  .desktop\:-translate-x-5{
    --tw-translate-x: -1.25rem;
  }

  .desktop\:-translate-x-6{
    --tw-translate-x: -1.5rem;
  }

  .desktop\:-translate-x-7{
    --tw-translate-x: -1.75rem;
  }

  .desktop\:-translate-x-8{
    --tw-translate-x: -2rem;
  }

  .desktop\:-translate-x-9{
    --tw-translate-x: -2.25rem;
  }

  .desktop\:-translate-x-10{
    --tw-translate-x: -2.5rem;
  }

  .desktop\:-translate-x-11{
    --tw-translate-x: -2.75rem;
  }

  .desktop\:-translate-x-12{
    --tw-translate-x: -3rem;
  }

  .desktop\:-translate-x-14{
    --tw-translate-x: -3.5rem;
  }

  .desktop\:-translate-x-16{
    --tw-translate-x: -4rem;
  }

  .desktop\:-translate-x-20{
    --tw-translate-x: -5rem;
  }

  .desktop\:-translate-x-24{
    --tw-translate-x: -6rem;
  }

  .desktop\:-translate-x-28{
    --tw-translate-x: -7rem;
  }

  .desktop\:-translate-x-32{
    --tw-translate-x: -8rem;
  }

  .desktop\:-translate-x-36{
    --tw-translate-x: -9rem;
  }

  .desktop\:-translate-x-40{
    --tw-translate-x: -10rem;
  }

  .desktop\:-translate-x-44{
    --tw-translate-x: -11rem;
  }

  .desktop\:-translate-x-48{
    --tw-translate-x: -12rem;
  }

  .desktop\:-translate-x-52{
    --tw-translate-x: -13rem;
  }

  .desktop\:-translate-x-56{
    --tw-translate-x: -14rem;
  }

  .desktop\:-translate-x-60{
    --tw-translate-x: -15rem;
  }

  .desktop\:-translate-x-64{
    --tw-translate-x: -16rem;
  }

  .desktop\:-translate-x-72{
    --tw-translate-x: -18rem;
  }

  .desktop\:-translate-x-80{
    --tw-translate-x: -20rem;
  }

  .desktop\:-translate-x-96{
    --tw-translate-x: -24rem;
  }

  .desktop\:-translate-x-px{
    --tw-translate-x: -1px;
  }

  .desktop\:-translate-x-0\.5{
    --tw-translate-x: -0.125rem;
  }

  .desktop\:-translate-x-1\.5{
    --tw-translate-x: -0.375rem;
  }

  .desktop\:-translate-x-2\.5{
    --tw-translate-x: -0.625rem;
  }

  .desktop\:-translate-x-3\.5{
    --tw-translate-x: -0.875rem;
  }

  .desktop\:translate-x-1\/2{
    --tw-translate-x: 50%;
  }

  .desktop\:translate-x-1\/3{
    --tw-translate-x: 33.333333%;
  }

  .desktop\:translate-x-2\/3{
    --tw-translate-x: 66.666667%;
  }

  .desktop\:translate-x-1\/4{
    --tw-translate-x: 25%;
  }

  .desktop\:translate-x-2\/4{
    --tw-translate-x: 50%;
  }

  .desktop\:translate-x-3\/4{
    --tw-translate-x: 75%;
  }

  .desktop\:translate-x-full{
    --tw-translate-x: 100%;
  }

  .desktop\:-translate-x-1\/2{
    --tw-translate-x: -50%;
  }

  .desktop\:-translate-x-1\/3{
    --tw-translate-x: -33.333333%;
  }

  .desktop\:-translate-x-2\/3{
    --tw-translate-x: -66.666667%;
  }

  .desktop\:-translate-x-1\/4{
    --tw-translate-x: -25%;
  }

  .desktop\:-translate-x-2\/4{
    --tw-translate-x: -50%;
  }

  .desktop\:-translate-x-3\/4{
    --tw-translate-x: -75%;
  }

  .desktop\:-translate-x-full{
    --tw-translate-x: -100%;
  }

  .desktop\:translate-x-neg1\/2{
    --tw-translate-x: -50%;
  }

  .desktop\:translate-x-neg3\/4{
    --tw-translate-x: -75%;
  }

  .desktop\:translate-y-0{
    --tw-translate-y: 0px;
  }

  .desktop\:translate-y-1{
    --tw-translate-y: 0.25rem;
  }

  .desktop\:translate-y-2{
    --tw-translate-y: 0.5rem;
  }

  .desktop\:translate-y-3{
    --tw-translate-y: 0.75rem;
  }

  .desktop\:translate-y-4{
    --tw-translate-y: 1rem;
  }

  .desktop\:translate-y-5{
    --tw-translate-y: 1.25rem;
  }

  .desktop\:translate-y-6{
    --tw-translate-y: 1.5rem;
  }

  .desktop\:translate-y-7{
    --tw-translate-y: 1.75rem;
  }

  .desktop\:translate-y-8{
    --tw-translate-y: 2rem;
  }

  .desktop\:translate-y-9{
    --tw-translate-y: 2.25rem;
  }

  .desktop\:translate-y-10{
    --tw-translate-y: 2.5rem;
  }

  .desktop\:translate-y-11{
    --tw-translate-y: 2.75rem;
  }

  .desktop\:translate-y-12{
    --tw-translate-y: 3rem;
  }

  .desktop\:translate-y-14{
    --tw-translate-y: 3.5rem;
  }

  .desktop\:translate-y-16{
    --tw-translate-y: 4rem;
  }

  .desktop\:translate-y-20{
    --tw-translate-y: 5rem;
  }

  .desktop\:translate-y-24{
    --tw-translate-y: 6rem;
  }

  .desktop\:translate-y-28{
    --tw-translate-y: 7rem;
  }

  .desktop\:translate-y-32{
    --tw-translate-y: 8rem;
  }

  .desktop\:translate-y-36{
    --tw-translate-y: 9rem;
  }

  .desktop\:translate-y-40{
    --tw-translate-y: 10rem;
  }

  .desktop\:translate-y-44{
    --tw-translate-y: 11rem;
  }

  .desktop\:translate-y-48{
    --tw-translate-y: 12rem;
  }

  .desktop\:translate-y-52{
    --tw-translate-y: 13rem;
  }

  .desktop\:translate-y-56{
    --tw-translate-y: 14rem;
  }

  .desktop\:translate-y-60{
    --tw-translate-y: 15rem;
  }

  .desktop\:translate-y-64{
    --tw-translate-y: 16rem;
  }

  .desktop\:translate-y-72{
    --tw-translate-y: 18rem;
  }

  .desktop\:translate-y-80{
    --tw-translate-y: 20rem;
  }

  .desktop\:translate-y-96{
    --tw-translate-y: 24rem;
  }

  .desktop\:translate-y-px{
    --tw-translate-y: 1px;
  }

  .desktop\:translate-y-0\.5{
    --tw-translate-y: 0.125rem;
  }

  .desktop\:translate-y-1\.5{
    --tw-translate-y: 0.375rem;
  }

  .desktop\:translate-y-2\.5{
    --tw-translate-y: 0.625rem;
  }

  .desktop\:translate-y-3\.5{
    --tw-translate-y: 0.875rem;
  }

  .desktop\:-translate-y-0{
    --tw-translate-y: 0px;
  }

  .desktop\:-translate-y-1{
    --tw-translate-y: -0.25rem;
  }

  .desktop\:-translate-y-2{
    --tw-translate-y: -0.5rem;
  }

  .desktop\:-translate-y-3{
    --tw-translate-y: -0.75rem;
  }

  .desktop\:-translate-y-4{
    --tw-translate-y: -1rem;
  }

  .desktop\:-translate-y-5{
    --tw-translate-y: -1.25rem;
  }

  .desktop\:-translate-y-6{
    --tw-translate-y: -1.5rem;
  }

  .desktop\:-translate-y-7{
    --tw-translate-y: -1.75rem;
  }

  .desktop\:-translate-y-8{
    --tw-translate-y: -2rem;
  }

  .desktop\:-translate-y-9{
    --tw-translate-y: -2.25rem;
  }

  .desktop\:-translate-y-10{
    --tw-translate-y: -2.5rem;
  }

  .desktop\:-translate-y-11{
    --tw-translate-y: -2.75rem;
  }

  .desktop\:-translate-y-12{
    --tw-translate-y: -3rem;
  }

  .desktop\:-translate-y-14{
    --tw-translate-y: -3.5rem;
  }

  .desktop\:-translate-y-16{
    --tw-translate-y: -4rem;
  }

  .desktop\:-translate-y-20{
    --tw-translate-y: -5rem;
  }

  .desktop\:-translate-y-24{
    --tw-translate-y: -6rem;
  }

  .desktop\:-translate-y-28{
    --tw-translate-y: -7rem;
  }

  .desktop\:-translate-y-32{
    --tw-translate-y: -8rem;
  }

  .desktop\:-translate-y-36{
    --tw-translate-y: -9rem;
  }

  .desktop\:-translate-y-40{
    --tw-translate-y: -10rem;
  }

  .desktop\:-translate-y-44{
    --tw-translate-y: -11rem;
  }

  .desktop\:-translate-y-48{
    --tw-translate-y: -12rem;
  }

  .desktop\:-translate-y-52{
    --tw-translate-y: -13rem;
  }

  .desktop\:-translate-y-56{
    --tw-translate-y: -14rem;
  }

  .desktop\:-translate-y-60{
    --tw-translate-y: -15rem;
  }

  .desktop\:-translate-y-64{
    --tw-translate-y: -16rem;
  }

  .desktop\:-translate-y-72{
    --tw-translate-y: -18rem;
  }

  .desktop\:-translate-y-80{
    --tw-translate-y: -20rem;
  }

  .desktop\:-translate-y-96{
    --tw-translate-y: -24rem;
  }

  .desktop\:-translate-y-px{
    --tw-translate-y: -1px;
  }

  .desktop\:-translate-y-0\.5{
    --tw-translate-y: -0.125rem;
  }

  .desktop\:-translate-y-1\.5{
    --tw-translate-y: -0.375rem;
  }

  .desktop\:-translate-y-2\.5{
    --tw-translate-y: -0.625rem;
  }

  .desktop\:-translate-y-3\.5{
    --tw-translate-y: -0.875rem;
  }

  .desktop\:translate-y-1\/2{
    --tw-translate-y: 50%;
  }

  .desktop\:translate-y-1\/3{
    --tw-translate-y: 33.333333%;
  }

  .desktop\:translate-y-2\/3{
    --tw-translate-y: 66.666667%;
  }

  .desktop\:translate-y-1\/4{
    --tw-translate-y: 25%;
  }

  .desktop\:translate-y-2\/4{
    --tw-translate-y: 50%;
  }

  .desktop\:translate-y-3\/4{
    --tw-translate-y: 75%;
  }

  .desktop\:translate-y-full{
    --tw-translate-y: 100%;
  }

  .desktop\:-translate-y-1\/2{
    --tw-translate-y: -50%;
  }

  .desktop\:-translate-y-1\/3{
    --tw-translate-y: -33.333333%;
  }

  .desktop\:-translate-y-2\/3{
    --tw-translate-y: -66.666667%;
  }

  .desktop\:-translate-y-1\/4{
    --tw-translate-y: -25%;
  }

  .desktop\:-translate-y-2\/4{
    --tw-translate-y: -50%;
  }

  .desktop\:-translate-y-3\/4{
    --tw-translate-y: -75%;
  }

  .desktop\:-translate-y-full{
    --tw-translate-y: -100%;
  }

  .desktop\:translate-y-neg1\/2{
    --tw-translate-y: -50%;
  }

  .desktop\:translate-y-neg3\/4{
    --tw-translate-y: -75%;
  }

  .desktop\:hover\:translate-x-0:hover{
    --tw-translate-x: 0px;
  }

  .desktop\:hover\:translate-x-1:hover{
    --tw-translate-x: 0.25rem;
  }

  .desktop\:hover\:translate-x-2:hover{
    --tw-translate-x: 0.5rem;
  }

  .desktop\:hover\:translate-x-3:hover{
    --tw-translate-x: 0.75rem;
  }

  .desktop\:hover\:translate-x-4:hover{
    --tw-translate-x: 1rem;
  }

  .desktop\:hover\:translate-x-5:hover{
    --tw-translate-x: 1.25rem;
  }

  .desktop\:hover\:translate-x-6:hover{
    --tw-translate-x: 1.5rem;
  }

  .desktop\:hover\:translate-x-7:hover{
    --tw-translate-x: 1.75rem;
  }

  .desktop\:hover\:translate-x-8:hover{
    --tw-translate-x: 2rem;
  }

  .desktop\:hover\:translate-x-9:hover{
    --tw-translate-x: 2.25rem;
  }

  .desktop\:hover\:translate-x-10:hover{
    --tw-translate-x: 2.5rem;
  }

  .desktop\:hover\:translate-x-11:hover{
    --tw-translate-x: 2.75rem;
  }

  .desktop\:hover\:translate-x-12:hover{
    --tw-translate-x: 3rem;
  }

  .desktop\:hover\:translate-x-14:hover{
    --tw-translate-x: 3.5rem;
  }

  .desktop\:hover\:translate-x-16:hover{
    --tw-translate-x: 4rem;
  }

  .desktop\:hover\:translate-x-20:hover{
    --tw-translate-x: 5rem;
  }

  .desktop\:hover\:translate-x-24:hover{
    --tw-translate-x: 6rem;
  }

  .desktop\:hover\:translate-x-28:hover{
    --tw-translate-x: 7rem;
  }

  .desktop\:hover\:translate-x-32:hover{
    --tw-translate-x: 8rem;
  }

  .desktop\:hover\:translate-x-36:hover{
    --tw-translate-x: 9rem;
  }

  .desktop\:hover\:translate-x-40:hover{
    --tw-translate-x: 10rem;
  }

  .desktop\:hover\:translate-x-44:hover{
    --tw-translate-x: 11rem;
  }

  .desktop\:hover\:translate-x-48:hover{
    --tw-translate-x: 12rem;
  }

  .desktop\:hover\:translate-x-52:hover{
    --tw-translate-x: 13rem;
  }

  .desktop\:hover\:translate-x-56:hover{
    --tw-translate-x: 14rem;
  }

  .desktop\:hover\:translate-x-60:hover{
    --tw-translate-x: 15rem;
  }

  .desktop\:hover\:translate-x-64:hover{
    --tw-translate-x: 16rem;
  }

  .desktop\:hover\:translate-x-72:hover{
    --tw-translate-x: 18rem;
  }

  .desktop\:hover\:translate-x-80:hover{
    --tw-translate-x: 20rem;
  }

  .desktop\:hover\:translate-x-96:hover{
    --tw-translate-x: 24rem;
  }

  .desktop\:hover\:translate-x-px:hover{
    --tw-translate-x: 1px;
  }

  .desktop\:hover\:translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem;
  }

  .desktop\:hover\:translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem;
  }

  .desktop\:hover\:translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem;
  }

  .desktop\:hover\:translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem;
  }

  .desktop\:hover\:-translate-x-0:hover{
    --tw-translate-x: 0px;
  }

  .desktop\:hover\:-translate-x-1:hover{
    --tw-translate-x: -0.25rem;
  }

  .desktop\:hover\:-translate-x-2:hover{
    --tw-translate-x: -0.5rem;
  }

  .desktop\:hover\:-translate-x-3:hover{
    --tw-translate-x: -0.75rem;
  }

  .desktop\:hover\:-translate-x-4:hover{
    --tw-translate-x: -1rem;
  }

  .desktop\:hover\:-translate-x-5:hover{
    --tw-translate-x: -1.25rem;
  }

  .desktop\:hover\:-translate-x-6:hover{
    --tw-translate-x: -1.5rem;
  }

  .desktop\:hover\:-translate-x-7:hover{
    --tw-translate-x: -1.75rem;
  }

  .desktop\:hover\:-translate-x-8:hover{
    --tw-translate-x: -2rem;
  }

  .desktop\:hover\:-translate-x-9:hover{
    --tw-translate-x: -2.25rem;
  }

  .desktop\:hover\:-translate-x-10:hover{
    --tw-translate-x: -2.5rem;
  }

  .desktop\:hover\:-translate-x-11:hover{
    --tw-translate-x: -2.75rem;
  }

  .desktop\:hover\:-translate-x-12:hover{
    --tw-translate-x: -3rem;
  }

  .desktop\:hover\:-translate-x-14:hover{
    --tw-translate-x: -3.5rem;
  }

  .desktop\:hover\:-translate-x-16:hover{
    --tw-translate-x: -4rem;
  }

  .desktop\:hover\:-translate-x-20:hover{
    --tw-translate-x: -5rem;
  }

  .desktop\:hover\:-translate-x-24:hover{
    --tw-translate-x: -6rem;
  }

  .desktop\:hover\:-translate-x-28:hover{
    --tw-translate-x: -7rem;
  }

  .desktop\:hover\:-translate-x-32:hover{
    --tw-translate-x: -8rem;
  }

  .desktop\:hover\:-translate-x-36:hover{
    --tw-translate-x: -9rem;
  }

  .desktop\:hover\:-translate-x-40:hover{
    --tw-translate-x: -10rem;
  }

  .desktop\:hover\:-translate-x-44:hover{
    --tw-translate-x: -11rem;
  }

  .desktop\:hover\:-translate-x-48:hover{
    --tw-translate-x: -12rem;
  }

  .desktop\:hover\:-translate-x-52:hover{
    --tw-translate-x: -13rem;
  }

  .desktop\:hover\:-translate-x-56:hover{
    --tw-translate-x: -14rem;
  }

  .desktop\:hover\:-translate-x-60:hover{
    --tw-translate-x: -15rem;
  }

  .desktop\:hover\:-translate-x-64:hover{
    --tw-translate-x: -16rem;
  }

  .desktop\:hover\:-translate-x-72:hover{
    --tw-translate-x: -18rem;
  }

  .desktop\:hover\:-translate-x-80:hover{
    --tw-translate-x: -20rem;
  }

  .desktop\:hover\:-translate-x-96:hover{
    --tw-translate-x: -24rem;
  }

  .desktop\:hover\:-translate-x-px:hover{
    --tw-translate-x: -1px;
  }

  .desktop\:hover\:-translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem;
  }

  .desktop\:hover\:-translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem;
  }

  .desktop\:hover\:-translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem;
  }

  .desktop\:hover\:-translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem;
  }

  .desktop\:hover\:translate-x-1\/2:hover{
    --tw-translate-x: 50%;
  }

  .desktop\:hover\:translate-x-1\/3:hover{
    --tw-translate-x: 33.333333%;
  }

  .desktop\:hover\:translate-x-2\/3:hover{
    --tw-translate-x: 66.666667%;
  }

  .desktop\:hover\:translate-x-1\/4:hover{
    --tw-translate-x: 25%;
  }

  .desktop\:hover\:translate-x-2\/4:hover{
    --tw-translate-x: 50%;
  }

  .desktop\:hover\:translate-x-3\/4:hover{
    --tw-translate-x: 75%;
  }

  .desktop\:hover\:translate-x-full:hover{
    --tw-translate-x: 100%;
  }

  .desktop\:hover\:-translate-x-1\/2:hover{
    --tw-translate-x: -50%;
  }

  .desktop\:hover\:-translate-x-1\/3:hover{
    --tw-translate-x: -33.333333%;
  }

  .desktop\:hover\:-translate-x-2\/3:hover{
    --tw-translate-x: -66.666667%;
  }

  .desktop\:hover\:-translate-x-1\/4:hover{
    --tw-translate-x: -25%;
  }

  .desktop\:hover\:-translate-x-2\/4:hover{
    --tw-translate-x: -50%;
  }

  .desktop\:hover\:-translate-x-3\/4:hover{
    --tw-translate-x: -75%;
  }

  .desktop\:hover\:-translate-x-full:hover{
    --tw-translate-x: -100%;
  }

  .desktop\:hover\:translate-x-neg1\/2:hover{
    --tw-translate-x: -50%;
  }

  .desktop\:hover\:translate-x-neg3\/4:hover{
    --tw-translate-x: -75%;
  }

  .desktop\:hover\:translate-y-0:hover{
    --tw-translate-y: 0px;
  }

  .desktop\:hover\:translate-y-1:hover{
    --tw-translate-y: 0.25rem;
  }

  .desktop\:hover\:translate-y-2:hover{
    --tw-translate-y: 0.5rem;
  }

  .desktop\:hover\:translate-y-3:hover{
    --tw-translate-y: 0.75rem;
  }

  .desktop\:hover\:translate-y-4:hover{
    --tw-translate-y: 1rem;
  }

  .desktop\:hover\:translate-y-5:hover{
    --tw-translate-y: 1.25rem;
  }

  .desktop\:hover\:translate-y-6:hover{
    --tw-translate-y: 1.5rem;
  }

  .desktop\:hover\:translate-y-7:hover{
    --tw-translate-y: 1.75rem;
  }

  .desktop\:hover\:translate-y-8:hover{
    --tw-translate-y: 2rem;
  }

  .desktop\:hover\:translate-y-9:hover{
    --tw-translate-y: 2.25rem;
  }

  .desktop\:hover\:translate-y-10:hover{
    --tw-translate-y: 2.5rem;
  }

  .desktop\:hover\:translate-y-11:hover{
    --tw-translate-y: 2.75rem;
  }

  .desktop\:hover\:translate-y-12:hover{
    --tw-translate-y: 3rem;
  }

  .desktop\:hover\:translate-y-14:hover{
    --tw-translate-y: 3.5rem;
  }

  .desktop\:hover\:translate-y-16:hover{
    --tw-translate-y: 4rem;
  }

  .desktop\:hover\:translate-y-20:hover{
    --tw-translate-y: 5rem;
  }

  .desktop\:hover\:translate-y-24:hover{
    --tw-translate-y: 6rem;
  }

  .desktop\:hover\:translate-y-28:hover{
    --tw-translate-y: 7rem;
  }

  .desktop\:hover\:translate-y-32:hover{
    --tw-translate-y: 8rem;
  }

  .desktop\:hover\:translate-y-36:hover{
    --tw-translate-y: 9rem;
  }

  .desktop\:hover\:translate-y-40:hover{
    --tw-translate-y: 10rem;
  }

  .desktop\:hover\:translate-y-44:hover{
    --tw-translate-y: 11rem;
  }

  .desktop\:hover\:translate-y-48:hover{
    --tw-translate-y: 12rem;
  }

  .desktop\:hover\:translate-y-52:hover{
    --tw-translate-y: 13rem;
  }

  .desktop\:hover\:translate-y-56:hover{
    --tw-translate-y: 14rem;
  }

  .desktop\:hover\:translate-y-60:hover{
    --tw-translate-y: 15rem;
  }

  .desktop\:hover\:translate-y-64:hover{
    --tw-translate-y: 16rem;
  }

  .desktop\:hover\:translate-y-72:hover{
    --tw-translate-y: 18rem;
  }

  .desktop\:hover\:translate-y-80:hover{
    --tw-translate-y: 20rem;
  }

  .desktop\:hover\:translate-y-96:hover{
    --tw-translate-y: 24rem;
  }

  .desktop\:hover\:translate-y-px:hover{
    --tw-translate-y: 1px;
  }

  .desktop\:hover\:translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem;
  }

  .desktop\:hover\:translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem;
  }

  .desktop\:hover\:translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem;
  }

  .desktop\:hover\:translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem;
  }

  .desktop\:hover\:-translate-y-0:hover{
    --tw-translate-y: 0px;
  }

  .desktop\:hover\:-translate-y-1:hover{
    --tw-translate-y: -0.25rem;
  }

  .desktop\:hover\:-translate-y-2:hover{
    --tw-translate-y: -0.5rem;
  }

  .desktop\:hover\:-translate-y-3:hover{
    --tw-translate-y: -0.75rem;
  }

  .desktop\:hover\:-translate-y-4:hover{
    --tw-translate-y: -1rem;
  }

  .desktop\:hover\:-translate-y-5:hover{
    --tw-translate-y: -1.25rem;
  }

  .desktop\:hover\:-translate-y-6:hover{
    --tw-translate-y: -1.5rem;
  }

  .desktop\:hover\:-translate-y-7:hover{
    --tw-translate-y: -1.75rem;
  }

  .desktop\:hover\:-translate-y-8:hover{
    --tw-translate-y: -2rem;
  }

  .desktop\:hover\:-translate-y-9:hover{
    --tw-translate-y: -2.25rem;
  }

  .desktop\:hover\:-translate-y-10:hover{
    --tw-translate-y: -2.5rem;
  }

  .desktop\:hover\:-translate-y-11:hover{
    --tw-translate-y: -2.75rem;
  }

  .desktop\:hover\:-translate-y-12:hover{
    --tw-translate-y: -3rem;
  }

  .desktop\:hover\:-translate-y-14:hover{
    --tw-translate-y: -3.5rem;
  }

  .desktop\:hover\:-translate-y-16:hover{
    --tw-translate-y: -4rem;
  }

  .desktop\:hover\:-translate-y-20:hover{
    --tw-translate-y: -5rem;
  }

  .desktop\:hover\:-translate-y-24:hover{
    --tw-translate-y: -6rem;
  }

  .desktop\:hover\:-translate-y-28:hover{
    --tw-translate-y: -7rem;
  }

  .desktop\:hover\:-translate-y-32:hover{
    --tw-translate-y: -8rem;
  }

  .desktop\:hover\:-translate-y-36:hover{
    --tw-translate-y: -9rem;
  }

  .desktop\:hover\:-translate-y-40:hover{
    --tw-translate-y: -10rem;
  }

  .desktop\:hover\:-translate-y-44:hover{
    --tw-translate-y: -11rem;
  }

  .desktop\:hover\:-translate-y-48:hover{
    --tw-translate-y: -12rem;
  }

  .desktop\:hover\:-translate-y-52:hover{
    --tw-translate-y: -13rem;
  }

  .desktop\:hover\:-translate-y-56:hover{
    --tw-translate-y: -14rem;
  }

  .desktop\:hover\:-translate-y-60:hover{
    --tw-translate-y: -15rem;
  }

  .desktop\:hover\:-translate-y-64:hover{
    --tw-translate-y: -16rem;
  }

  .desktop\:hover\:-translate-y-72:hover{
    --tw-translate-y: -18rem;
  }

  .desktop\:hover\:-translate-y-80:hover{
    --tw-translate-y: -20rem;
  }

  .desktop\:hover\:-translate-y-96:hover{
    --tw-translate-y: -24rem;
  }

  .desktop\:hover\:-translate-y-px:hover{
    --tw-translate-y: -1px;
  }

  .desktop\:hover\:-translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem;
  }

  .desktop\:hover\:-translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem;
  }

  .desktop\:hover\:-translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem;
  }

  .desktop\:hover\:-translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem;
  }

  .desktop\:hover\:translate-y-1\/2:hover{
    --tw-translate-y: 50%;
  }

  .desktop\:hover\:translate-y-1\/3:hover{
    --tw-translate-y: 33.333333%;
  }

  .desktop\:hover\:translate-y-2\/3:hover{
    --tw-translate-y: 66.666667%;
  }

  .desktop\:hover\:translate-y-1\/4:hover{
    --tw-translate-y: 25%;
  }

  .desktop\:hover\:translate-y-2\/4:hover{
    --tw-translate-y: 50%;
  }

  .desktop\:hover\:translate-y-3\/4:hover{
    --tw-translate-y: 75%;
  }

  .desktop\:hover\:translate-y-full:hover{
    --tw-translate-y: 100%;
  }

  .desktop\:hover\:-translate-y-1\/2:hover{
    --tw-translate-y: -50%;
  }

  .desktop\:hover\:-translate-y-1\/3:hover{
    --tw-translate-y: -33.333333%;
  }

  .desktop\:hover\:-translate-y-2\/3:hover{
    --tw-translate-y: -66.666667%;
  }

  .desktop\:hover\:-translate-y-1\/4:hover{
    --tw-translate-y: -25%;
  }

  .desktop\:hover\:-translate-y-2\/4:hover{
    --tw-translate-y: -50%;
  }

  .desktop\:hover\:-translate-y-3\/4:hover{
    --tw-translate-y: -75%;
  }

  .desktop\:hover\:-translate-y-full:hover{
    --tw-translate-y: -100%;
  }

  .desktop\:hover\:translate-y-neg1\/2:hover{
    --tw-translate-y: -50%;
  }

  .desktop\:hover\:translate-y-neg3\/4:hover{
    --tw-translate-y: -75%;
  }

  .desktop\:focus\:translate-x-0:focus{
    --tw-translate-x: 0px;
  }

  .desktop\:focus\:translate-x-1:focus{
    --tw-translate-x: 0.25rem;
  }

  .desktop\:focus\:translate-x-2:focus{
    --tw-translate-x: 0.5rem;
  }

  .desktop\:focus\:translate-x-3:focus{
    --tw-translate-x: 0.75rem;
  }

  .desktop\:focus\:translate-x-4:focus{
    --tw-translate-x: 1rem;
  }

  .desktop\:focus\:translate-x-5:focus{
    --tw-translate-x: 1.25rem;
  }

  .desktop\:focus\:translate-x-6:focus{
    --tw-translate-x: 1.5rem;
  }

  .desktop\:focus\:translate-x-7:focus{
    --tw-translate-x: 1.75rem;
  }

  .desktop\:focus\:translate-x-8:focus{
    --tw-translate-x: 2rem;
  }

  .desktop\:focus\:translate-x-9:focus{
    --tw-translate-x: 2.25rem;
  }

  .desktop\:focus\:translate-x-10:focus{
    --tw-translate-x: 2.5rem;
  }

  .desktop\:focus\:translate-x-11:focus{
    --tw-translate-x: 2.75rem;
  }

  .desktop\:focus\:translate-x-12:focus{
    --tw-translate-x: 3rem;
  }

  .desktop\:focus\:translate-x-14:focus{
    --tw-translate-x: 3.5rem;
  }

  .desktop\:focus\:translate-x-16:focus{
    --tw-translate-x: 4rem;
  }

  .desktop\:focus\:translate-x-20:focus{
    --tw-translate-x: 5rem;
  }

  .desktop\:focus\:translate-x-24:focus{
    --tw-translate-x: 6rem;
  }

  .desktop\:focus\:translate-x-28:focus{
    --tw-translate-x: 7rem;
  }

  .desktop\:focus\:translate-x-32:focus{
    --tw-translate-x: 8rem;
  }

  .desktop\:focus\:translate-x-36:focus{
    --tw-translate-x: 9rem;
  }

  .desktop\:focus\:translate-x-40:focus{
    --tw-translate-x: 10rem;
  }

  .desktop\:focus\:translate-x-44:focus{
    --tw-translate-x: 11rem;
  }

  .desktop\:focus\:translate-x-48:focus{
    --tw-translate-x: 12rem;
  }

  .desktop\:focus\:translate-x-52:focus{
    --tw-translate-x: 13rem;
  }

  .desktop\:focus\:translate-x-56:focus{
    --tw-translate-x: 14rem;
  }

  .desktop\:focus\:translate-x-60:focus{
    --tw-translate-x: 15rem;
  }

  .desktop\:focus\:translate-x-64:focus{
    --tw-translate-x: 16rem;
  }

  .desktop\:focus\:translate-x-72:focus{
    --tw-translate-x: 18rem;
  }

  .desktop\:focus\:translate-x-80:focus{
    --tw-translate-x: 20rem;
  }

  .desktop\:focus\:translate-x-96:focus{
    --tw-translate-x: 24rem;
  }

  .desktop\:focus\:translate-x-px:focus{
    --tw-translate-x: 1px;
  }

  .desktop\:focus\:translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem;
  }

  .desktop\:focus\:translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem;
  }

  .desktop\:focus\:translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem;
  }

  .desktop\:focus\:translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem;
  }

  .desktop\:focus\:-translate-x-0:focus{
    --tw-translate-x: 0px;
  }

  .desktop\:focus\:-translate-x-1:focus{
    --tw-translate-x: -0.25rem;
  }

  .desktop\:focus\:-translate-x-2:focus{
    --tw-translate-x: -0.5rem;
  }

  .desktop\:focus\:-translate-x-3:focus{
    --tw-translate-x: -0.75rem;
  }

  .desktop\:focus\:-translate-x-4:focus{
    --tw-translate-x: -1rem;
  }

  .desktop\:focus\:-translate-x-5:focus{
    --tw-translate-x: -1.25rem;
  }

  .desktop\:focus\:-translate-x-6:focus{
    --tw-translate-x: -1.5rem;
  }

  .desktop\:focus\:-translate-x-7:focus{
    --tw-translate-x: -1.75rem;
  }

  .desktop\:focus\:-translate-x-8:focus{
    --tw-translate-x: -2rem;
  }

  .desktop\:focus\:-translate-x-9:focus{
    --tw-translate-x: -2.25rem;
  }

  .desktop\:focus\:-translate-x-10:focus{
    --tw-translate-x: -2.5rem;
  }

  .desktop\:focus\:-translate-x-11:focus{
    --tw-translate-x: -2.75rem;
  }

  .desktop\:focus\:-translate-x-12:focus{
    --tw-translate-x: -3rem;
  }

  .desktop\:focus\:-translate-x-14:focus{
    --tw-translate-x: -3.5rem;
  }

  .desktop\:focus\:-translate-x-16:focus{
    --tw-translate-x: -4rem;
  }

  .desktop\:focus\:-translate-x-20:focus{
    --tw-translate-x: -5rem;
  }

  .desktop\:focus\:-translate-x-24:focus{
    --tw-translate-x: -6rem;
  }

  .desktop\:focus\:-translate-x-28:focus{
    --tw-translate-x: -7rem;
  }

  .desktop\:focus\:-translate-x-32:focus{
    --tw-translate-x: -8rem;
  }

  .desktop\:focus\:-translate-x-36:focus{
    --tw-translate-x: -9rem;
  }

  .desktop\:focus\:-translate-x-40:focus{
    --tw-translate-x: -10rem;
  }

  .desktop\:focus\:-translate-x-44:focus{
    --tw-translate-x: -11rem;
  }

  .desktop\:focus\:-translate-x-48:focus{
    --tw-translate-x: -12rem;
  }

  .desktop\:focus\:-translate-x-52:focus{
    --tw-translate-x: -13rem;
  }

  .desktop\:focus\:-translate-x-56:focus{
    --tw-translate-x: -14rem;
  }

  .desktop\:focus\:-translate-x-60:focus{
    --tw-translate-x: -15rem;
  }

  .desktop\:focus\:-translate-x-64:focus{
    --tw-translate-x: -16rem;
  }

  .desktop\:focus\:-translate-x-72:focus{
    --tw-translate-x: -18rem;
  }

  .desktop\:focus\:-translate-x-80:focus{
    --tw-translate-x: -20rem;
  }

  .desktop\:focus\:-translate-x-96:focus{
    --tw-translate-x: -24rem;
  }

  .desktop\:focus\:-translate-x-px:focus{
    --tw-translate-x: -1px;
  }

  .desktop\:focus\:-translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem;
  }

  .desktop\:focus\:-translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem;
  }

  .desktop\:focus\:-translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem;
  }

  .desktop\:focus\:-translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem;
  }

  .desktop\:focus\:translate-x-1\/2:focus{
    --tw-translate-x: 50%;
  }

  .desktop\:focus\:translate-x-1\/3:focus{
    --tw-translate-x: 33.333333%;
  }

  .desktop\:focus\:translate-x-2\/3:focus{
    --tw-translate-x: 66.666667%;
  }

  .desktop\:focus\:translate-x-1\/4:focus{
    --tw-translate-x: 25%;
  }

  .desktop\:focus\:translate-x-2\/4:focus{
    --tw-translate-x: 50%;
  }

  .desktop\:focus\:translate-x-3\/4:focus{
    --tw-translate-x: 75%;
  }

  .desktop\:focus\:translate-x-full:focus{
    --tw-translate-x: 100%;
  }

  .desktop\:focus\:-translate-x-1\/2:focus{
    --tw-translate-x: -50%;
  }

  .desktop\:focus\:-translate-x-1\/3:focus{
    --tw-translate-x: -33.333333%;
  }

  .desktop\:focus\:-translate-x-2\/3:focus{
    --tw-translate-x: -66.666667%;
  }

  .desktop\:focus\:-translate-x-1\/4:focus{
    --tw-translate-x: -25%;
  }

  .desktop\:focus\:-translate-x-2\/4:focus{
    --tw-translate-x: -50%;
  }

  .desktop\:focus\:-translate-x-3\/4:focus{
    --tw-translate-x: -75%;
  }

  .desktop\:focus\:-translate-x-full:focus{
    --tw-translate-x: -100%;
  }

  .desktop\:focus\:translate-x-neg1\/2:focus{
    --tw-translate-x: -50%;
  }

  .desktop\:focus\:translate-x-neg3\/4:focus{
    --tw-translate-x: -75%;
  }

  .desktop\:focus\:translate-y-0:focus{
    --tw-translate-y: 0px;
  }

  .desktop\:focus\:translate-y-1:focus{
    --tw-translate-y: 0.25rem;
  }

  .desktop\:focus\:translate-y-2:focus{
    --tw-translate-y: 0.5rem;
  }

  .desktop\:focus\:translate-y-3:focus{
    --tw-translate-y: 0.75rem;
  }

  .desktop\:focus\:translate-y-4:focus{
    --tw-translate-y: 1rem;
  }

  .desktop\:focus\:translate-y-5:focus{
    --tw-translate-y: 1.25rem;
  }

  .desktop\:focus\:translate-y-6:focus{
    --tw-translate-y: 1.5rem;
  }

  .desktop\:focus\:translate-y-7:focus{
    --tw-translate-y: 1.75rem;
  }

  .desktop\:focus\:translate-y-8:focus{
    --tw-translate-y: 2rem;
  }

  .desktop\:focus\:translate-y-9:focus{
    --tw-translate-y: 2.25rem;
  }

  .desktop\:focus\:translate-y-10:focus{
    --tw-translate-y: 2.5rem;
  }

  .desktop\:focus\:translate-y-11:focus{
    --tw-translate-y: 2.75rem;
  }

  .desktop\:focus\:translate-y-12:focus{
    --tw-translate-y: 3rem;
  }

  .desktop\:focus\:translate-y-14:focus{
    --tw-translate-y: 3.5rem;
  }

  .desktop\:focus\:translate-y-16:focus{
    --tw-translate-y: 4rem;
  }

  .desktop\:focus\:translate-y-20:focus{
    --tw-translate-y: 5rem;
  }

  .desktop\:focus\:translate-y-24:focus{
    --tw-translate-y: 6rem;
  }

  .desktop\:focus\:translate-y-28:focus{
    --tw-translate-y: 7rem;
  }

  .desktop\:focus\:translate-y-32:focus{
    --tw-translate-y: 8rem;
  }

  .desktop\:focus\:translate-y-36:focus{
    --tw-translate-y: 9rem;
  }

  .desktop\:focus\:translate-y-40:focus{
    --tw-translate-y: 10rem;
  }

  .desktop\:focus\:translate-y-44:focus{
    --tw-translate-y: 11rem;
  }

  .desktop\:focus\:translate-y-48:focus{
    --tw-translate-y: 12rem;
  }

  .desktop\:focus\:translate-y-52:focus{
    --tw-translate-y: 13rem;
  }

  .desktop\:focus\:translate-y-56:focus{
    --tw-translate-y: 14rem;
  }

  .desktop\:focus\:translate-y-60:focus{
    --tw-translate-y: 15rem;
  }

  .desktop\:focus\:translate-y-64:focus{
    --tw-translate-y: 16rem;
  }

  .desktop\:focus\:translate-y-72:focus{
    --tw-translate-y: 18rem;
  }

  .desktop\:focus\:translate-y-80:focus{
    --tw-translate-y: 20rem;
  }

  .desktop\:focus\:translate-y-96:focus{
    --tw-translate-y: 24rem;
  }

  .desktop\:focus\:translate-y-px:focus{
    --tw-translate-y: 1px;
  }

  .desktop\:focus\:translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem;
  }

  .desktop\:focus\:translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem;
  }

  .desktop\:focus\:translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem;
  }

  .desktop\:focus\:translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem;
  }

  .desktop\:focus\:-translate-y-0:focus{
    --tw-translate-y: 0px;
  }

  .desktop\:focus\:-translate-y-1:focus{
    --tw-translate-y: -0.25rem;
  }

  .desktop\:focus\:-translate-y-2:focus{
    --tw-translate-y: -0.5rem;
  }

  .desktop\:focus\:-translate-y-3:focus{
    --tw-translate-y: -0.75rem;
  }

  .desktop\:focus\:-translate-y-4:focus{
    --tw-translate-y: -1rem;
  }

  .desktop\:focus\:-translate-y-5:focus{
    --tw-translate-y: -1.25rem;
  }

  .desktop\:focus\:-translate-y-6:focus{
    --tw-translate-y: -1.5rem;
  }

  .desktop\:focus\:-translate-y-7:focus{
    --tw-translate-y: -1.75rem;
  }

  .desktop\:focus\:-translate-y-8:focus{
    --tw-translate-y: -2rem;
  }

  .desktop\:focus\:-translate-y-9:focus{
    --tw-translate-y: -2.25rem;
  }

  .desktop\:focus\:-translate-y-10:focus{
    --tw-translate-y: -2.5rem;
  }

  .desktop\:focus\:-translate-y-11:focus{
    --tw-translate-y: -2.75rem;
  }

  .desktop\:focus\:-translate-y-12:focus{
    --tw-translate-y: -3rem;
  }

  .desktop\:focus\:-translate-y-14:focus{
    --tw-translate-y: -3.5rem;
  }

  .desktop\:focus\:-translate-y-16:focus{
    --tw-translate-y: -4rem;
  }

  .desktop\:focus\:-translate-y-20:focus{
    --tw-translate-y: -5rem;
  }

  .desktop\:focus\:-translate-y-24:focus{
    --tw-translate-y: -6rem;
  }

  .desktop\:focus\:-translate-y-28:focus{
    --tw-translate-y: -7rem;
  }

  .desktop\:focus\:-translate-y-32:focus{
    --tw-translate-y: -8rem;
  }

  .desktop\:focus\:-translate-y-36:focus{
    --tw-translate-y: -9rem;
  }

  .desktop\:focus\:-translate-y-40:focus{
    --tw-translate-y: -10rem;
  }

  .desktop\:focus\:-translate-y-44:focus{
    --tw-translate-y: -11rem;
  }

  .desktop\:focus\:-translate-y-48:focus{
    --tw-translate-y: -12rem;
  }

  .desktop\:focus\:-translate-y-52:focus{
    --tw-translate-y: -13rem;
  }

  .desktop\:focus\:-translate-y-56:focus{
    --tw-translate-y: -14rem;
  }

  .desktop\:focus\:-translate-y-60:focus{
    --tw-translate-y: -15rem;
  }

  .desktop\:focus\:-translate-y-64:focus{
    --tw-translate-y: -16rem;
  }

  .desktop\:focus\:-translate-y-72:focus{
    --tw-translate-y: -18rem;
  }

  .desktop\:focus\:-translate-y-80:focus{
    --tw-translate-y: -20rem;
  }

  .desktop\:focus\:-translate-y-96:focus{
    --tw-translate-y: -24rem;
  }

  .desktop\:focus\:-translate-y-px:focus{
    --tw-translate-y: -1px;
  }

  .desktop\:focus\:-translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem;
  }

  .desktop\:focus\:-translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem;
  }

  .desktop\:focus\:-translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem;
  }

  .desktop\:focus\:-translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem;
  }

  .desktop\:focus\:translate-y-1\/2:focus{
    --tw-translate-y: 50%;
  }

  .desktop\:focus\:translate-y-1\/3:focus{
    --tw-translate-y: 33.333333%;
  }

  .desktop\:focus\:translate-y-2\/3:focus{
    --tw-translate-y: 66.666667%;
  }

  .desktop\:focus\:translate-y-1\/4:focus{
    --tw-translate-y: 25%;
  }

  .desktop\:focus\:translate-y-2\/4:focus{
    --tw-translate-y: 50%;
  }

  .desktop\:focus\:translate-y-3\/4:focus{
    --tw-translate-y: 75%;
  }

  .desktop\:focus\:translate-y-full:focus{
    --tw-translate-y: 100%;
  }

  .desktop\:focus\:-translate-y-1\/2:focus{
    --tw-translate-y: -50%;
  }

  .desktop\:focus\:-translate-y-1\/3:focus{
    --tw-translate-y: -33.333333%;
  }

  .desktop\:focus\:-translate-y-2\/3:focus{
    --tw-translate-y: -66.666667%;
  }

  .desktop\:focus\:-translate-y-1\/4:focus{
    --tw-translate-y: -25%;
  }

  .desktop\:focus\:-translate-y-2\/4:focus{
    --tw-translate-y: -50%;
  }

  .desktop\:focus\:-translate-y-3\/4:focus{
    --tw-translate-y: -75%;
  }

  .desktop\:focus\:-translate-y-full:focus{
    --tw-translate-y: -100%;
  }

  .desktop\:focus\:translate-y-neg1\/2:focus{
    --tw-translate-y: -50%;
  }

  .desktop\:focus\:translate-y-neg3\/4:focus{
    --tw-translate-y: -75%;
  }

  .desktop\:rotate-0{
    --tw-rotate: 0deg;
  }

  .desktop\:rotate-1{
    --tw-rotate: 1deg;
  }

  .desktop\:rotate-2{
    --tw-rotate: 2deg;
  }

  .desktop\:rotate-3{
    --tw-rotate: 3deg;
  }

  .desktop\:rotate-6{
    --tw-rotate: 6deg;
  }

  .desktop\:rotate-12{
    --tw-rotate: 12deg;
  }

  .desktop\:rotate-45{
    --tw-rotate: 45deg;
  }

  .desktop\:rotate-90{
    --tw-rotate: 90deg;
  }

  .desktop\:rotate-180{
    --tw-rotate: 180deg;
  }

  .desktop\:-rotate-180{
    --tw-rotate: -180deg;
  }

  .desktop\:-rotate-90{
    --tw-rotate: -90deg;
  }

  .desktop\:-rotate-45{
    --tw-rotate: -45deg;
  }

  .desktop\:-rotate-12{
    --tw-rotate: -12deg;
  }

  .desktop\:-rotate-6{
    --tw-rotate: -6deg;
  }

  .desktop\:-rotate-3{
    --tw-rotate: -3deg;
  }

  .desktop\:-rotate-2{
    --tw-rotate: -2deg;
  }

  .desktop\:-rotate-1{
    --tw-rotate: -1deg;
  }

  .desktop\:hover\:rotate-0:hover{
    --tw-rotate: 0deg;
  }

  .desktop\:hover\:rotate-1:hover{
    --tw-rotate: 1deg;
  }

  .desktop\:hover\:rotate-2:hover{
    --tw-rotate: 2deg;
  }

  .desktop\:hover\:rotate-3:hover{
    --tw-rotate: 3deg;
  }

  .desktop\:hover\:rotate-6:hover{
    --tw-rotate: 6deg;
  }

  .desktop\:hover\:rotate-12:hover{
    --tw-rotate: 12deg;
  }

  .desktop\:hover\:rotate-45:hover{
    --tw-rotate: 45deg;
  }

  .desktop\:hover\:rotate-90:hover{
    --tw-rotate: 90deg;
  }

  .desktop\:hover\:rotate-180:hover{
    --tw-rotate: 180deg;
  }

  .desktop\:hover\:-rotate-180:hover{
    --tw-rotate: -180deg;
  }

  .desktop\:hover\:-rotate-90:hover{
    --tw-rotate: -90deg;
  }

  .desktop\:hover\:-rotate-45:hover{
    --tw-rotate: -45deg;
  }

  .desktop\:hover\:-rotate-12:hover{
    --tw-rotate: -12deg;
  }

  .desktop\:hover\:-rotate-6:hover{
    --tw-rotate: -6deg;
  }

  .desktop\:hover\:-rotate-3:hover{
    --tw-rotate: -3deg;
  }

  .desktop\:hover\:-rotate-2:hover{
    --tw-rotate: -2deg;
  }

  .desktop\:hover\:-rotate-1:hover{
    --tw-rotate: -1deg;
  }

  .desktop\:focus\:rotate-0:focus{
    --tw-rotate: 0deg;
  }

  .desktop\:focus\:rotate-1:focus{
    --tw-rotate: 1deg;
  }

  .desktop\:focus\:rotate-2:focus{
    --tw-rotate: 2deg;
  }

  .desktop\:focus\:rotate-3:focus{
    --tw-rotate: 3deg;
  }

  .desktop\:focus\:rotate-6:focus{
    --tw-rotate: 6deg;
  }

  .desktop\:focus\:rotate-12:focus{
    --tw-rotate: 12deg;
  }

  .desktop\:focus\:rotate-45:focus{
    --tw-rotate: 45deg;
  }

  .desktop\:focus\:rotate-90:focus{
    --tw-rotate: 90deg;
  }

  .desktop\:focus\:rotate-180:focus{
    --tw-rotate: 180deg;
  }

  .desktop\:focus\:-rotate-180:focus{
    --tw-rotate: -180deg;
  }

  .desktop\:focus\:-rotate-90:focus{
    --tw-rotate: -90deg;
  }

  .desktop\:focus\:-rotate-45:focus{
    --tw-rotate: -45deg;
  }

  .desktop\:focus\:-rotate-12:focus{
    --tw-rotate: -12deg;
  }

  .desktop\:focus\:-rotate-6:focus{
    --tw-rotate: -6deg;
  }

  .desktop\:focus\:-rotate-3:focus{
    --tw-rotate: -3deg;
  }

  .desktop\:focus\:-rotate-2:focus{
    --tw-rotate: -2deg;
  }

  .desktop\:focus\:-rotate-1:focus{
    --tw-rotate: -1deg;
  }

  .desktop\:skew-x-0{
    --tw-skew-x: 0deg;
  }

  .desktop\:skew-x-1{
    --tw-skew-x: 1deg;
  }

  .desktop\:skew-x-2{
    --tw-skew-x: 2deg;
  }

  .desktop\:skew-x-3{
    --tw-skew-x: 3deg;
  }

  .desktop\:skew-x-6{
    --tw-skew-x: 6deg;
  }

  .desktop\:skew-x-12{
    --tw-skew-x: 12deg;
  }

  .desktop\:-skew-x-12{
    --tw-skew-x: -12deg;
  }

  .desktop\:-skew-x-6{
    --tw-skew-x: -6deg;
  }

  .desktop\:-skew-x-3{
    --tw-skew-x: -3deg;
  }

  .desktop\:-skew-x-2{
    --tw-skew-x: -2deg;
  }

  .desktop\:-skew-x-1{
    --tw-skew-x: -1deg;
  }

  .desktop\:skew-y-0{
    --tw-skew-y: 0deg;
  }

  .desktop\:skew-y-1{
    --tw-skew-y: 1deg;
  }

  .desktop\:skew-y-2{
    --tw-skew-y: 2deg;
  }

  .desktop\:skew-y-3{
    --tw-skew-y: 3deg;
  }

  .desktop\:skew-y-6{
    --tw-skew-y: 6deg;
  }

  .desktop\:skew-y-12{
    --tw-skew-y: 12deg;
  }

  .desktop\:-skew-y-12{
    --tw-skew-y: -12deg;
  }

  .desktop\:-skew-y-6{
    --tw-skew-y: -6deg;
  }

  .desktop\:-skew-y-3{
    --tw-skew-y: -3deg;
  }

  .desktop\:-skew-y-2{
    --tw-skew-y: -2deg;
  }

  .desktop\:-skew-y-1{
    --tw-skew-y: -1deg;
  }

  .desktop\:hover\:skew-x-0:hover{
    --tw-skew-x: 0deg;
  }

  .desktop\:hover\:skew-x-1:hover{
    --tw-skew-x: 1deg;
  }

  .desktop\:hover\:skew-x-2:hover{
    --tw-skew-x: 2deg;
  }

  .desktop\:hover\:skew-x-3:hover{
    --tw-skew-x: 3deg;
  }

  .desktop\:hover\:skew-x-6:hover{
    --tw-skew-x: 6deg;
  }

  .desktop\:hover\:skew-x-12:hover{
    --tw-skew-x: 12deg;
  }

  .desktop\:hover\:-skew-x-12:hover{
    --tw-skew-x: -12deg;
  }

  .desktop\:hover\:-skew-x-6:hover{
    --tw-skew-x: -6deg;
  }

  .desktop\:hover\:-skew-x-3:hover{
    --tw-skew-x: -3deg;
  }

  .desktop\:hover\:-skew-x-2:hover{
    --tw-skew-x: -2deg;
  }

  .desktop\:hover\:-skew-x-1:hover{
    --tw-skew-x: -1deg;
  }

  .desktop\:hover\:skew-y-0:hover{
    --tw-skew-y: 0deg;
  }

  .desktop\:hover\:skew-y-1:hover{
    --tw-skew-y: 1deg;
  }

  .desktop\:hover\:skew-y-2:hover{
    --tw-skew-y: 2deg;
  }

  .desktop\:hover\:skew-y-3:hover{
    --tw-skew-y: 3deg;
  }

  .desktop\:hover\:skew-y-6:hover{
    --tw-skew-y: 6deg;
  }

  .desktop\:hover\:skew-y-12:hover{
    --tw-skew-y: 12deg;
  }

  .desktop\:hover\:-skew-y-12:hover{
    --tw-skew-y: -12deg;
  }

  .desktop\:hover\:-skew-y-6:hover{
    --tw-skew-y: -6deg;
  }

  .desktop\:hover\:-skew-y-3:hover{
    --tw-skew-y: -3deg;
  }

  .desktop\:hover\:-skew-y-2:hover{
    --tw-skew-y: -2deg;
  }

  .desktop\:hover\:-skew-y-1:hover{
    --tw-skew-y: -1deg;
  }

  .desktop\:focus\:skew-x-0:focus{
    --tw-skew-x: 0deg;
  }

  .desktop\:focus\:skew-x-1:focus{
    --tw-skew-x: 1deg;
  }

  .desktop\:focus\:skew-x-2:focus{
    --tw-skew-x: 2deg;
  }

  .desktop\:focus\:skew-x-3:focus{
    --tw-skew-x: 3deg;
  }

  .desktop\:focus\:skew-x-6:focus{
    --tw-skew-x: 6deg;
  }

  .desktop\:focus\:skew-x-12:focus{
    --tw-skew-x: 12deg;
  }

  .desktop\:focus\:-skew-x-12:focus{
    --tw-skew-x: -12deg;
  }

  .desktop\:focus\:-skew-x-6:focus{
    --tw-skew-x: -6deg;
  }

  .desktop\:focus\:-skew-x-3:focus{
    --tw-skew-x: -3deg;
  }

  .desktop\:focus\:-skew-x-2:focus{
    --tw-skew-x: -2deg;
  }

  .desktop\:focus\:-skew-x-1:focus{
    --tw-skew-x: -1deg;
  }

  .desktop\:focus\:skew-y-0:focus{
    --tw-skew-y: 0deg;
  }

  .desktop\:focus\:skew-y-1:focus{
    --tw-skew-y: 1deg;
  }

  .desktop\:focus\:skew-y-2:focus{
    --tw-skew-y: 2deg;
  }

  .desktop\:focus\:skew-y-3:focus{
    --tw-skew-y: 3deg;
  }

  .desktop\:focus\:skew-y-6:focus{
    --tw-skew-y: 6deg;
  }

  .desktop\:focus\:skew-y-12:focus{
    --tw-skew-y: 12deg;
  }

  .desktop\:focus\:-skew-y-12:focus{
    --tw-skew-y: -12deg;
  }

  .desktop\:focus\:-skew-y-6:focus{
    --tw-skew-y: -6deg;
  }

  .desktop\:focus\:-skew-y-3:focus{
    --tw-skew-y: -3deg;
  }

  .desktop\:focus\:-skew-y-2:focus{
    --tw-skew-y: -2deg;
  }

  .desktop\:focus\:-skew-y-1:focus{
    --tw-skew-y: -1deg;
  }

  .desktop\:scale-0{
    --tw-scale-x: 0;
    --tw-scale-y: 0;
  }

  .desktop\:scale-50{
    --tw-scale-x: .5;
    --tw-scale-y: .5;
  }

  .desktop\:scale-75{
    --tw-scale-x: .75;
    --tw-scale-y: .75;
  }

  .desktop\:scale-90{
    --tw-scale-x: .9;
    --tw-scale-y: .9;
  }

  .desktop\:scale-95{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
  }

  .desktop\:scale-100{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
  }

  .desktop\:scale-105{
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
  }

  .desktop\:scale-110{
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
  }

  .desktop\:scale-125{
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
  }

  .desktop\:scale-150{
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
  }

  .desktop\:hover\:scale-0:hover{
    --tw-scale-x: 0;
    --tw-scale-y: 0;
  }

  .desktop\:hover\:scale-50:hover{
    --tw-scale-x: .5;
    --tw-scale-y: .5;
  }

  .desktop\:hover\:scale-75:hover{
    --tw-scale-x: .75;
    --tw-scale-y: .75;
  }

  .desktop\:hover\:scale-90:hover{
    --tw-scale-x: .9;
    --tw-scale-y: .9;
  }

  .desktop\:hover\:scale-95:hover{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
  }

  .desktop\:hover\:scale-100:hover{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
  }

  .desktop\:hover\:scale-105:hover{
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
  }

  .desktop\:hover\:scale-110:hover{
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
  }

  .desktop\:hover\:scale-125:hover{
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
  }

  .desktop\:hover\:scale-150:hover{
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
  }

  .desktop\:focus\:scale-0:focus{
    --tw-scale-x: 0;
    --tw-scale-y: 0;
  }

  .desktop\:focus\:scale-50:focus{
    --tw-scale-x: .5;
    --tw-scale-y: .5;
  }

  .desktop\:focus\:scale-75:focus{
    --tw-scale-x: .75;
    --tw-scale-y: .75;
  }

  .desktop\:focus\:scale-90:focus{
    --tw-scale-x: .9;
    --tw-scale-y: .9;
  }

  .desktop\:focus\:scale-95:focus{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
  }

  .desktop\:focus\:scale-100:focus{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
  }

  .desktop\:focus\:scale-105:focus{
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
  }

  .desktop\:focus\:scale-110:focus{
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
  }

  .desktop\:focus\:scale-125:focus{
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
  }

  .desktop\:focus\:scale-150:focus{
    --tw-scale-x: 1.5;
    --tw-scale-y: 1.5;
  }

  .desktop\:scale-x-0{
    --tw-scale-x: 0;
  }

  .desktop\:scale-x-50{
    --tw-scale-x: .5;
  }

  .desktop\:scale-x-75{
    --tw-scale-x: .75;
  }

  .desktop\:scale-x-90{
    --tw-scale-x: .9;
  }

  .desktop\:scale-x-95{
    --tw-scale-x: .95;
  }

  .desktop\:scale-x-100{
    --tw-scale-x: 1;
  }

  .desktop\:scale-x-105{
    --tw-scale-x: 1.05;
  }

  .desktop\:scale-x-110{
    --tw-scale-x: 1.1;
  }

  .desktop\:scale-x-125{
    --tw-scale-x: 1.25;
  }

  .desktop\:scale-x-150{
    --tw-scale-x: 1.5;
  }

  .desktop\:scale-y-0{
    --tw-scale-y: 0;
  }

  .desktop\:scale-y-50{
    --tw-scale-y: .5;
  }

  .desktop\:scale-y-75{
    --tw-scale-y: .75;
  }

  .desktop\:scale-y-90{
    --tw-scale-y: .9;
  }

  .desktop\:scale-y-95{
    --tw-scale-y: .95;
  }

  .desktop\:scale-y-100{
    --tw-scale-y: 1;
  }

  .desktop\:scale-y-105{
    --tw-scale-y: 1.05;
  }

  .desktop\:scale-y-110{
    --tw-scale-y: 1.1;
  }

  .desktop\:scale-y-125{
    --tw-scale-y: 1.25;
  }

  .desktop\:scale-y-150{
    --tw-scale-y: 1.5;
  }

  .desktop\:hover\:scale-x-0:hover{
    --tw-scale-x: 0;
  }

  .desktop\:hover\:scale-x-50:hover{
    --tw-scale-x: .5;
  }

  .desktop\:hover\:scale-x-75:hover{
    --tw-scale-x: .75;
  }

  .desktop\:hover\:scale-x-90:hover{
    --tw-scale-x: .9;
  }

  .desktop\:hover\:scale-x-95:hover{
    --tw-scale-x: .95;
  }

  .desktop\:hover\:scale-x-100:hover{
    --tw-scale-x: 1;
  }

  .desktop\:hover\:scale-x-105:hover{
    --tw-scale-x: 1.05;
  }

  .desktop\:hover\:scale-x-110:hover{
    --tw-scale-x: 1.1;
  }

  .desktop\:hover\:scale-x-125:hover{
    --tw-scale-x: 1.25;
  }

  .desktop\:hover\:scale-x-150:hover{
    --tw-scale-x: 1.5;
  }

  .desktop\:hover\:scale-y-0:hover{
    --tw-scale-y: 0;
  }

  .desktop\:hover\:scale-y-50:hover{
    --tw-scale-y: .5;
  }

  .desktop\:hover\:scale-y-75:hover{
    --tw-scale-y: .75;
  }

  .desktop\:hover\:scale-y-90:hover{
    --tw-scale-y: .9;
  }

  .desktop\:hover\:scale-y-95:hover{
    --tw-scale-y: .95;
  }

  .desktop\:hover\:scale-y-100:hover{
    --tw-scale-y: 1;
  }

  .desktop\:hover\:scale-y-105:hover{
    --tw-scale-y: 1.05;
  }

  .desktop\:hover\:scale-y-110:hover{
    --tw-scale-y: 1.1;
  }

  .desktop\:hover\:scale-y-125:hover{
    --tw-scale-y: 1.25;
  }

  .desktop\:hover\:scale-y-150:hover{
    --tw-scale-y: 1.5;
  }

  .desktop\:focus\:scale-x-0:focus{
    --tw-scale-x: 0;
  }

  .desktop\:focus\:scale-x-50:focus{
    --tw-scale-x: .5;
  }

  .desktop\:focus\:scale-x-75:focus{
    --tw-scale-x: .75;
  }

  .desktop\:focus\:scale-x-90:focus{
    --tw-scale-x: .9;
  }

  .desktop\:focus\:scale-x-95:focus{
    --tw-scale-x: .95;
  }

  .desktop\:focus\:scale-x-100:focus{
    --tw-scale-x: 1;
  }

  .desktop\:focus\:scale-x-105:focus{
    --tw-scale-x: 1.05;
  }

  .desktop\:focus\:scale-x-110:focus{
    --tw-scale-x: 1.1;
  }

  .desktop\:focus\:scale-x-125:focus{
    --tw-scale-x: 1.25;
  }

  .desktop\:focus\:scale-x-150:focus{
    --tw-scale-x: 1.5;
  }

  .desktop\:focus\:scale-y-0:focus{
    --tw-scale-y: 0;
  }

  .desktop\:focus\:scale-y-50:focus{
    --tw-scale-y: .5;
  }

  .desktop\:focus\:scale-y-75:focus{
    --tw-scale-y: .75;
  }

  .desktop\:focus\:scale-y-90:focus{
    --tw-scale-y: .9;
  }

  .desktop\:focus\:scale-y-95:focus{
    --tw-scale-y: .95;
  }

  .desktop\:focus\:scale-y-100:focus{
    --tw-scale-y: 1;
  }

  .desktop\:focus\:scale-y-105:focus{
    --tw-scale-y: 1.05;
  }

  .desktop\:focus\:scale-y-110:focus{
    --tw-scale-y: 1.1;
  }

  .desktop\:focus\:scale-y-125:focus{
    --tw-scale-y: 1.25;
  }

  .desktop\:focus\:scale-y-150:focus{
    --tw-scale-y: 1.5;
  }

  .desktop\:animate-none{
    -webkit-animation: none;
            animation: none;
  }

  .desktop\:animate-spin{
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
  }

  .desktop\:animate-ping{
    -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
  }

  .desktop\:animate-pulse{
    -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .desktop\:animate-bounce{
    -webkit-animation: bounce 1s infinite;
            animation: bounce 1s infinite;
  }

  .desktop\:cursor-auto{
    cursor: auto;
  }

  .desktop\:cursor-default{
    cursor: default;
  }

  .desktop\:cursor-pointer{
    cursor: pointer;
  }

  .desktop\:cursor-wait{
    cursor: wait;
  }

  .desktop\:cursor-text{
    cursor: text;
  }

  .desktop\:cursor-move{
    cursor: move;
  }

  .desktop\:cursor-help{
    cursor: help;
  }

  .desktop\:cursor-not-allowed{
    cursor: not-allowed;
  }

  .desktop\:select-none{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .desktop\:select-text{
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
  }

  .desktop\:select-all{
    -webkit-user-select: all;
       -moz-user-select: all;
            user-select: all;
  }

  .desktop\:select-auto{
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
  }

  .desktop\:resize-none{
    resize: none;
  }

  .desktop\:resize-y{
    resize: vertical;
  }

  .desktop\:resize-x{
    resize: horizontal;
  }

  .desktop\:resize{
    resize: both;
  }

  .desktop\:list-inside{
    list-style-position: inside;
  }

  .desktop\:list-outside{
    list-style-position: outside;
  }

  .desktop\:list-none{
    list-style-type: none;
  }

  .desktop\:list-disc{
    list-style-type: disc;
  }

  .desktop\:list-decimal{
    list-style-type: decimal;
  }

  .desktop\:appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  .desktop\:auto-cols-auto{
    grid-auto-columns: auto;
  }

  .desktop\:auto-cols-min{
    grid-auto-columns: -webkit-min-content;
    grid-auto-columns: min-content;
  }

  .desktop\:auto-cols-max{
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
  }

  .desktop\:auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr);
  }

  .desktop\:grid-flow-row{
    grid-auto-flow: row;
  }

  .desktop\:grid-flow-col{
    grid-auto-flow: column;
  }

  .desktop\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }

  .desktop\:grid-flow-col-dense{
    grid-auto-flow: column dense;
  }

  .desktop\:auto-rows-auto{
    grid-auto-rows: auto;
  }

  .desktop\:auto-rows-min{
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
  }

  .desktop\:auto-rows-max{
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
  }

  .desktop\:auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr);
  }

  .desktop\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .desktop\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .desktop\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .desktop\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .desktop\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .desktop\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .desktop\:grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .desktop\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .desktop\:grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .desktop\:grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .desktop\:grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .desktop\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .desktop\:grid-cols-none{
    grid-template-columns: none;
  }

  .desktop\:grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }

  .desktop\:grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .desktop\:grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .desktop\:grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .desktop\:grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .desktop\:grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }

  .desktop\:grid-rows-none{
    grid-template-rows: none;
  }

  .desktop\:flex-row{
    flex-direction: row;
  }

  .desktop\:flex-row-reverse{
    flex-direction: row-reverse;
  }

  .desktop\:flex-col{
    flex-direction: column;
  }

  .desktop\:flex-col-reverse{
    flex-direction: column-reverse;
  }

  .desktop\:flex-wrap{
    flex-wrap: wrap;
  }

  .desktop\:flex-wrap-reverse{
    flex-wrap: wrap-reverse;
  }

  .desktop\:flex-nowrap{
    flex-wrap: nowrap;
  }

  .desktop\:place-content-center{
    place-content: center;
  }

  .desktop\:place-content-start{
    place-content: start;
  }

  .desktop\:place-content-end{
    place-content: end;
  }

  .desktop\:place-content-between{
    place-content: space-between;
  }

  .desktop\:place-content-around{
    place-content: space-around;
  }

  .desktop\:place-content-evenly{
    place-content: space-evenly;
  }

  .desktop\:place-content-stretch{
    place-content: stretch;
  }

  .desktop\:place-items-start{
    place-items: start;
  }

  .desktop\:place-items-end{
    place-items: end;
  }

  .desktop\:place-items-center{
    place-items: center;
  }

  .desktop\:place-items-stretch{
    place-items: stretch;
  }

  .desktop\:content-center{
    align-content: center;
  }

  .desktop\:content-start{
    align-content: flex-start;
  }

  .desktop\:content-end{
    align-content: flex-end;
  }

  .desktop\:content-between{
    align-content: space-between;
  }

  .desktop\:content-around{
    align-content: space-around;
  }

  .desktop\:content-evenly{
    align-content: space-evenly;
  }

  .desktop\:items-start{
    align-items: flex-start;
  }

  .desktop\:items-end{
    align-items: flex-end;
  }

  .desktop\:items-center{
    align-items: center;
  }

  .desktop\:items-baseline{
    align-items: baseline;
  }

  .desktop\:items-stretch{
    align-items: stretch;
  }

  .desktop\:justify-start{
    justify-content: flex-start;
  }

  .desktop\:justify-end{
    justify-content: flex-end;
  }

  .desktop\:justify-center{
    justify-content: center;
  }

  .desktop\:justify-between{
    justify-content: space-between;
  }

  .desktop\:justify-around{
    justify-content: space-around;
  }

  .desktop\:justify-evenly{
    justify-content: space-evenly;
  }

  .desktop\:justify-items-start{
    justify-items: start;
  }

  .desktop\:justify-items-end{
    justify-items: end;
  }

  .desktop\:justify-items-center{
    justify-items: center;
  }

  .desktop\:justify-items-stretch{
    justify-items: stretch;
  }

  .desktop\:gap-0{
    gap: 0px;
  }

  .desktop\:gap-1{
    gap: 0.25rem;
  }

  .desktop\:gap-2{
    gap: 0.5rem;
  }

  .desktop\:gap-3{
    gap: 0.75rem;
  }

  .desktop\:gap-4{
    gap: 1rem;
  }

  .desktop\:gap-5{
    gap: 1.25rem;
  }

  .desktop\:gap-6{
    gap: 1.5rem;
  }

  .desktop\:gap-7{
    gap: 1.75rem;
  }

  .desktop\:gap-8{
    gap: 2rem;
  }

  .desktop\:gap-9{
    gap: 2.25rem;
  }

  .desktop\:gap-10{
    gap: 2.5rem;
  }

  .desktop\:gap-11{
    gap: 2.75rem;
  }

  .desktop\:gap-12{
    gap: 3rem;
  }

  .desktop\:gap-14{
    gap: 3.5rem;
  }

  .desktop\:gap-16{
    gap: 4rem;
  }

  .desktop\:gap-20{
    gap: 5rem;
  }

  .desktop\:gap-24{
    gap: 6rem;
  }

  .desktop\:gap-28{
    gap: 7rem;
  }

  .desktop\:gap-32{
    gap: 8rem;
  }

  .desktop\:gap-36{
    gap: 9rem;
  }

  .desktop\:gap-40{
    gap: 10rem;
  }

  .desktop\:gap-44{
    gap: 11rem;
  }

  .desktop\:gap-48{
    gap: 12rem;
  }

  .desktop\:gap-52{
    gap: 13rem;
  }

  .desktop\:gap-56{
    gap: 14rem;
  }

  .desktop\:gap-60{
    gap: 15rem;
  }

  .desktop\:gap-64{
    gap: 16rem;
  }

  .desktop\:gap-72{
    gap: 18rem;
  }

  .desktop\:gap-80{
    gap: 20rem;
  }

  .desktop\:gap-96{
    gap: 24rem;
  }

  .desktop\:gap-px{
    gap: 1px;
  }

  .desktop\:gap-0\.5{
    gap: 0.125rem;
  }

  .desktop\:gap-1\.5{
    gap: 0.375rem;
  }

  .desktop\:gap-2\.5{
    gap: 0.625rem;
  }

  .desktop\:gap-3\.5{
    gap: 0.875rem;
  }

  .desktop\:gap-x-0{
    -moz-column-gap: 0px;
         column-gap: 0px;
  }

  .desktop\:gap-x-1{
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }

  .desktop\:gap-x-2{
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .desktop\:gap-x-3{
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .desktop\:gap-x-4{
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }

  .desktop\:gap-x-5{
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }

  .desktop\:gap-x-6{
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }

  .desktop\:gap-x-7{
    -moz-column-gap: 1.75rem;
         column-gap: 1.75rem;
  }

  .desktop\:gap-x-8{
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .desktop\:gap-x-9{
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }

  .desktop\:gap-x-10{
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }

  .desktop\:gap-x-11{
    -moz-column-gap: 2.75rem;
         column-gap: 2.75rem;
  }

  .desktop\:gap-x-12{
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }

  .desktop\:gap-x-14{
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
  }

  .desktop\:gap-x-16{
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }

  .desktop\:gap-x-20{
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }

  .desktop\:gap-x-24{
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }

  .desktop\:gap-x-28{
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }

  .desktop\:gap-x-32{
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }

  .desktop\:gap-x-36{
    -moz-column-gap: 9rem;
         column-gap: 9rem;
  }

  .desktop\:gap-x-40{
    -moz-column-gap: 10rem;
         column-gap: 10rem;
  }

  .desktop\:gap-x-44{
    -moz-column-gap: 11rem;
         column-gap: 11rem;
  }

  .desktop\:gap-x-48{
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }

  .desktop\:gap-x-52{
    -moz-column-gap: 13rem;
         column-gap: 13rem;
  }

  .desktop\:gap-x-56{
    -moz-column-gap: 14rem;
         column-gap: 14rem;
  }

  .desktop\:gap-x-60{
    -moz-column-gap: 15rem;
         column-gap: 15rem;
  }

  .desktop\:gap-x-64{
    -moz-column-gap: 16rem;
         column-gap: 16rem;
  }

  .desktop\:gap-x-72{
    -moz-column-gap: 18rem;
         column-gap: 18rem;
  }

  .desktop\:gap-x-80{
    -moz-column-gap: 20rem;
         column-gap: 20rem;
  }

  .desktop\:gap-x-96{
    -moz-column-gap: 24rem;
         column-gap: 24rem;
  }

  .desktop\:gap-x-px{
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .desktop\:gap-x-0\.5{
    -moz-column-gap: 0.125rem;
         column-gap: 0.125rem;
  }

  .desktop\:gap-x-1\.5{
    -moz-column-gap: 0.375rem;
         column-gap: 0.375rem;
  }

  .desktop\:gap-x-2\.5{
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }

  .desktop\:gap-x-3\.5{
    -moz-column-gap: 0.875rem;
         column-gap: 0.875rem;
  }

  .desktop\:gap-y-0{
    row-gap: 0px;
  }

  .desktop\:gap-y-1{
    row-gap: 0.25rem;
  }

  .desktop\:gap-y-2{
    row-gap: 0.5rem;
  }

  .desktop\:gap-y-3{
    row-gap: 0.75rem;
  }

  .desktop\:gap-y-4{
    row-gap: 1rem;
  }

  .desktop\:gap-y-5{
    row-gap: 1.25rem;
  }

  .desktop\:gap-y-6{
    row-gap: 1.5rem;
  }

  .desktop\:gap-y-7{
    row-gap: 1.75rem;
  }

  .desktop\:gap-y-8{
    row-gap: 2rem;
  }

  .desktop\:gap-y-9{
    row-gap: 2.25rem;
  }

  .desktop\:gap-y-10{
    row-gap: 2.5rem;
  }

  .desktop\:gap-y-11{
    row-gap: 2.75rem;
  }

  .desktop\:gap-y-12{
    row-gap: 3rem;
  }

  .desktop\:gap-y-14{
    row-gap: 3.5rem;
  }

  .desktop\:gap-y-16{
    row-gap: 4rem;
  }

  .desktop\:gap-y-20{
    row-gap: 5rem;
  }

  .desktop\:gap-y-24{
    row-gap: 6rem;
  }

  .desktop\:gap-y-28{
    row-gap: 7rem;
  }

  .desktop\:gap-y-32{
    row-gap: 8rem;
  }

  .desktop\:gap-y-36{
    row-gap: 9rem;
  }

  .desktop\:gap-y-40{
    row-gap: 10rem;
  }

  .desktop\:gap-y-44{
    row-gap: 11rem;
  }

  .desktop\:gap-y-48{
    row-gap: 12rem;
  }

  .desktop\:gap-y-52{
    row-gap: 13rem;
  }

  .desktop\:gap-y-56{
    row-gap: 14rem;
  }

  .desktop\:gap-y-60{
    row-gap: 15rem;
  }

  .desktop\:gap-y-64{
    row-gap: 16rem;
  }

  .desktop\:gap-y-72{
    row-gap: 18rem;
  }

  .desktop\:gap-y-80{
    row-gap: 20rem;
  }

  .desktop\:gap-y-96{
    row-gap: 24rem;
  }

  .desktop\:gap-y-px{
    row-gap: 1px;
  }

  .desktop\:gap-y-0\.5{
    row-gap: 0.125rem;
  }

  .desktop\:gap-y-1\.5{
    row-gap: 0.375rem;
  }

  .desktop\:gap-y-2\.5{
    row-gap: 0.625rem;
  }

  .desktop\:gap-y-3\.5{
    row-gap: 0.875rem;
  }

  .desktop\:space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0px * var(--tw-space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1.75rem * var(--tw-space-x-reverse));
    margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2.25rem * var(--tw-space-x-reverse));
    margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse));
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2.75rem * var(--tw-space-x-reverse));
    margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(3rem * var(--tw-space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(3.5rem * var(--tw-space-x-reverse));
    margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(4rem * var(--tw-space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(5rem * var(--tw-space-x-reverse));
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(6rem * var(--tw-space-x-reverse));
    margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(7rem * var(--tw-space-x-reverse));
    margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(8rem * var(--tw-space-x-reverse));
    margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(9rem * var(--tw-space-x-reverse));
    margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(10rem * var(--tw-space-x-reverse));
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(11rem * var(--tw-space-x-reverse));
    margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(12rem * var(--tw-space-x-reverse));
    margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(13rem * var(--tw-space-x-reverse));
    margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(14rem * var(--tw-space-x-reverse));
    margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(15rem * var(--tw-space-x-reverse));
    margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(16rem * var(--tw-space-x-reverse));
    margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(18rem * var(--tw-space-x-reverse));
    margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(20rem * var(--tw-space-x-reverse));
    margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(24rem * var(--tw-space-x-reverse));
    margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1px * var(--tw-space-x-reverse));
    margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.125rem * var(--tw-space-x-reverse));
    margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse));
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse));
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.875rem * var(--tw-space-x-reverse));
    margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0px * var(--tw-space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.75rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1rem * var(--tw-space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1.75rem * var(--tw-space-x-reverse));
    margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-2rem * var(--tw-space-x-reverse));
    margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-2.25rem * var(--tw-space-x-reverse));
    margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-2.5rem * var(--tw-space-x-reverse));
    margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-2.75rem * var(--tw-space-x-reverse));
    margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-3rem * var(--tw-space-x-reverse));
    margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-3.5rem * var(--tw-space-x-reverse));
    margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-4rem * var(--tw-space-x-reverse));
    margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-5rem * var(--tw-space-x-reverse));
    margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-6rem * var(--tw-space-x-reverse));
    margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-7rem * var(--tw-space-x-reverse));
    margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-8rem * var(--tw-space-x-reverse));
    margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-9rem * var(--tw-space-x-reverse));
    margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-10rem * var(--tw-space-x-reverse));
    margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-11rem * var(--tw-space-x-reverse));
    margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-12rem * var(--tw-space-x-reverse));
    margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-13rem * var(--tw-space-x-reverse));
    margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-14rem * var(--tw-space-x-reverse));
    margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-15rem * var(--tw-space-x-reverse));
    margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-16rem * var(--tw-space-x-reverse));
    margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-18rem * var(--tw-space-x-reverse));
    margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-20rem * var(--tw-space-x-reverse));
    margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-24rem * var(--tw-space-x-reverse));
    margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-1px * var(--tw-space-x-reverse));
    margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.125rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.375rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.625rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(-0.875rem * var(--tw-space-x-reverse));
    margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .desktop\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.75rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2.25rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2.75rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(3rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(3.5rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(4rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(5rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(6rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(7rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(8rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(9rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(10rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(11rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(12rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(13rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(14rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(15rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(16rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(18rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(20rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(24rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1px * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.875rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-2rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-3rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-4rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-5rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-6rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-7rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-8rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-9rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-10rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-11rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-12rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-13rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-14rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-15rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-16rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-18rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-20rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-24rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-1px * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse));
  }

  .desktop\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse));
  }

  .desktop\:space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1;
  }

  .desktop\:space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1;
  }

  .desktop\:divide-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(0px * var(--tw-divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .desktop\:divide-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(2px * var(--tw-divide-x-reverse));
    border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .desktop\:divide-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(4px * var(--tw-divide-x-reverse));
    border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .desktop\:divide-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(8px * var(--tw-divide-x-reverse));
    border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .desktop\:divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .desktop\:divide-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse));
  }

  .desktop\:divide-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(2px * var(--tw-divide-y-reverse));
  }

  .desktop\:divide-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(4px * var(--tw-divide-y-reverse));
  }

  .desktop\:divide-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(8px * var(--tw-divide-y-reverse));
  }

  .desktop\:divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  }

  .desktop\:divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1;
  }

  .desktop\:divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1;
  }

  .desktop\:divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid;
  }

  .desktop\:divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed;
  }

  .desktop\:divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted;
  }

  .desktop\:divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double;
  }

  .desktop\:divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none;
  }

  .desktop\:divide-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent;
  }

  .desktop\:divide-current > :not([hidden]) ~ :not([hidden]){
    border-color: currentColor;
  }

  .desktop\:divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity));
  }

  .desktop\:divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity));
  }

  .desktop\:divide-gray-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-divide-opacity));
  }

  .desktop\:divide-gray-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-divide-opacity));
  }

  .desktop\:divide-gray-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-divide-opacity));
  }

  .desktop\:divide-gray-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-divide-opacity));
  }

  .desktop\:divide-gray-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-divide-opacity));
  }

  .desktop\:divide-gray-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-divide-opacity));
  }

  .desktop\:divide-gray-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-divide-opacity));
  }

  .desktop\:divide-gray-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-divide-opacity));
  }

  .desktop\:divide-gray-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-divide-opacity));
  }

  .desktop\:divide-gray-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-divide-opacity));
  }

  .desktop\:divide-red-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-divide-opacity));
  }

  .desktop\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-divide-opacity));
  }

  .desktop\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-divide-opacity));
  }

  .desktop\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-divide-opacity));
  }

  .desktop\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-divide-opacity));
  }

  .desktop\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-divide-opacity));
  }

  .desktop\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-divide-opacity));
  }

  .desktop\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-divide-opacity));
  }

  .desktop\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-divide-opacity));
  }

  .desktop\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-divide-opacity));
  }

  .desktop\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-divide-opacity));
  }

  .desktop\:divide-green-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-divide-opacity));
  }

  .desktop\:divide-blue-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-divide-opacity));
  }

  .desktop\:divide-blue-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-divide-opacity));
  }

  .desktop\:divide-blue-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-divide-opacity));
  }

  .desktop\:divide-blue-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-divide-opacity));
  }

  .desktop\:divide-blue-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-divide-opacity));
  }

  .desktop\:divide-blue-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-divide-opacity));
  }

  .desktop\:divide-blue-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-divide-opacity));
  }

  .desktop\:divide-blue-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-divide-opacity));
  }

  .desktop\:divide-blue-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-divide-opacity));
  }

  .desktop\:divide-blue-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-divide-opacity));
  }

  .desktop\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-divide-opacity));
  }

  .desktop\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-divide-opacity));
  }

  .desktop\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-divide-opacity));
  }

  .desktop\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-divide-opacity));
  }

  .desktop\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-divide-opacity));
  }

  .desktop\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-divide-opacity));
  }

  .desktop\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-divide-opacity));
  }

  .desktop\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-divide-opacity));
  }

  .desktop\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-divide-opacity));
  }

  .desktop\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-divide-opacity));
  }

  .desktop\:divide-purple-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-divide-opacity));
  }

  .desktop\:divide-purple-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-divide-opacity));
  }

  .desktop\:divide-purple-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-divide-opacity));
  }

  .desktop\:divide-purple-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-divide-opacity));
  }

  .desktop\:divide-purple-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-divide-opacity));
  }

  .desktop\:divide-purple-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-divide-opacity));
  }

  .desktop\:divide-purple-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-divide-opacity));
  }

  .desktop\:divide-purple-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-divide-opacity));
  }

  .desktop\:divide-purple-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-divide-opacity));
  }

  .desktop\:divide-purple-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-divide-opacity));
  }

  .desktop\:divide-pink-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-divide-opacity));
  }

  .desktop\:divide-pink-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-divide-opacity));
  }

  .desktop\:divide-pink-200 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-divide-opacity));
  }

  .desktop\:divide-pink-300 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-divide-opacity));
  }

  .desktop\:divide-pink-400 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-divide-opacity));
  }

  .desktop\:divide-pink-500 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-divide-opacity));
  }

  .desktop\:divide-pink-600 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-divide-opacity));
  }

  .desktop\:divide-pink-700 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-divide-opacity));
  }

  .desktop\:divide-pink-800 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-divide-opacity));
  }

  .desktop\:divide-pink-900 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-divide-opacity));
  }

  .desktop\:divide-brown-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-divide-opacity));
  }

  .desktop\:divide-brown-semi > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-divide-opacity));
  }

  .desktop\:divide-brown-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-divide-opacity));
  }

  .desktop\:divide-brown-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-divide-opacity));
  }

  .desktop\:divide-success-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-divide-opacity));
  }

  .desktop\:divide-success-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-divide-opacity));
  }

  .desktop\:divide-success-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-divide-opacity));
  }

  .desktop\:divide-error-light > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-divide-opacity));
  }

  .desktop\:divide-error-default > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-divide-opacity));
  }

  .desktop\:divide-error-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-divide-opacity));
  }

  .desktop\:divide-navigation-dark > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-divide-opacity));
  }

  .desktop\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0;
  }

  .desktop\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05;
  }

  .desktop\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1;
  }

  .desktop\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2;
  }

  .desktop\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25;
  }

  .desktop\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3;
  }

  .desktop\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4;
  }

  .desktop\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5;
  }

  .desktop\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6;
  }

  .desktop\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7;
  }

  .desktop\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75;
  }

  .desktop\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8;
  }

  .desktop\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9;
  }

  .desktop\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95;
  }

  .desktop\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1;
  }

  .desktop\:place-self-auto{
    place-self: auto;
  }

  .desktop\:place-self-start{
    place-self: start;
  }

  .desktop\:place-self-end{
    place-self: end;
  }

  .desktop\:place-self-center{
    place-self: center;
  }

  .desktop\:place-self-stretch{
    place-self: stretch;
  }

  .desktop\:self-auto{
    align-self: auto;
  }

  .desktop\:self-start{
    align-self: flex-start;
  }

  .desktop\:self-end{
    align-self: flex-end;
  }

  .desktop\:self-center{
    align-self: center;
  }

  .desktop\:self-stretch{
    align-self: stretch;
  }

  .desktop\:self-baseline{
    align-self: baseline;
  }

  .desktop\:justify-self-auto{
    justify-self: auto;
  }

  .desktop\:justify-self-start{
    justify-self: start;
  }

  .desktop\:justify-self-end{
    justify-self: end;
  }

  .desktop\:justify-self-center{
    justify-self: center;
  }

  .desktop\:justify-self-stretch{
    justify-self: stretch;
  }

  .desktop\:overflow-auto{
    overflow: auto;
  }

  .desktop\:overflow-hidden{
    overflow: hidden;
  }

  .desktop\:overflow-visible{
    overflow: visible;
  }

  .desktop\:overflow-scroll{
    overflow: scroll;
  }

  .desktop\:overflow-x-auto{
    overflow-x: auto;
  }

  .desktop\:overflow-y-auto{
    overflow-y: auto;
  }

  .desktop\:overflow-x-hidden{
    overflow-x: hidden;
  }

  .desktop\:overflow-y-hidden{
    overflow-y: hidden;
  }

  .desktop\:overflow-x-visible{
    overflow-x: visible;
  }

  .desktop\:overflow-y-visible{
    overflow-y: visible;
  }

  .desktop\:overflow-x-scroll{
    overflow-x: scroll;
  }

  .desktop\:overflow-y-scroll{
    overflow-y: scroll;
  }

  .desktop\:overscroll-auto{
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }

  .desktop\:overscroll-contain{
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }

  .desktop\:overscroll-none{
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .desktop\:overscroll-y-auto{
    overscroll-behavior-y: auto;
  }

  .desktop\:overscroll-y-contain{
    overscroll-behavior-y: contain;
  }

  .desktop\:overscroll-y-none{
    overscroll-behavior-y: none;
  }

  .desktop\:overscroll-x-auto{
    overscroll-behavior-x: auto;
  }

  .desktop\:overscroll-x-contain{
    overscroll-behavior-x: contain;
  }

  .desktop\:overscroll-x-none{
    overscroll-behavior-x: none;
  }

  .desktop\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .desktop\:overflow-ellipsis{
    text-overflow: ellipsis;
  }

  .desktop\:overflow-clip{
    text-overflow: clip;
  }

  .desktop\:whitespace-normal{
    white-space: normal;
  }

  .desktop\:whitespace-nowrap{
    white-space: nowrap;
  }

  .desktop\:whitespace-pre{
    white-space: pre;
  }

  .desktop\:whitespace-pre-line{
    white-space: pre-line;
  }

  .desktop\:whitespace-pre-wrap{
    white-space: pre-wrap;
  }

  .desktop\:break-normal{
    overflow-wrap: normal;
    word-break: normal;
  }

  .desktop\:break-words{
    overflow-wrap: break-word;
  }

  .desktop\:break-all{
    word-break: break-all;
  }

  .desktop\:rounded-none{
    border-radius: 0px;
  }

  .desktop\:rounded-sm{
    border-radius: 0.125rem;
  }

  .desktop\:rounded{
    border-radius: 0.25rem;
  }

  .desktop\:rounded-md{
    border-radius: 0.375rem;
  }

  .desktop\:rounded-lg{
    border-radius: 0.5rem;
  }

  .desktop\:rounded-xl{
    border-radius: 0.75rem;
  }

  .desktop\:rounded-2xl{
    border-radius: 1rem;
  }

  .desktop\:rounded-3xl{
    border-radius: 1.5rem;
  }

  .desktop\:rounded-full{
    border-radius: 9999px;
  }

  .desktop\:rounded-t-none{
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }

  .desktop\:rounded-t-sm{
    border-top-left-radius: 0.125rem;
    border-top-right-radius: 0.125rem;
  }

  .desktop\:rounded-t{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .desktop\:rounded-t-md{
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }

  .desktop\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .desktop\:rounded-t-xl{
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
  }

  .desktop\:rounded-t-2xl{
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .desktop\:rounded-t-3xl{
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
  }

  .desktop\:rounded-t-full{
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
  }

  .desktop\:rounded-r-none{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .desktop\:rounded-r-sm{
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  }

  .desktop\:rounded-r{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }

  .desktop\:rounded-r-md{
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }

  .desktop\:rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }

  .desktop\:rounded-r-xl{
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
  }

  .desktop\:rounded-r-2xl{
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }

  .desktop\:rounded-r-3xl{
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
  }

  .desktop\:rounded-r-full{
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
  }

  .desktop\:rounded-b-none{
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .desktop\:rounded-b-sm{
    border-bottom-right-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .desktop\:rounded-b{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .desktop\:rounded-b-md{
    border-bottom-right-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .desktop\:rounded-b-lg{
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .desktop\:rounded-b-xl{
    border-bottom-right-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
  }

  .desktop\:rounded-b-2xl{
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }

  .desktop\:rounded-b-3xl{
    border-bottom-right-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
  }

  .desktop\:rounded-b-full{
    border-bottom-right-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .desktop\:rounded-l-none{
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .desktop\:rounded-l-sm{
    border-top-left-radius: 0.125rem;
    border-bottom-left-radius: 0.125rem;
  }

  .desktop\:rounded-l{
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .desktop\:rounded-l-md{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .desktop\:rounded-l-lg{
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }

  .desktop\:rounded-l-xl{
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
  }

  .desktop\:rounded-l-2xl{
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }

  .desktop\:rounded-l-3xl{
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
  }

  .desktop\:rounded-l-full{
    border-top-left-radius: 9999px;
    border-bottom-left-radius: 9999px;
  }

  .desktop\:rounded-tl-none{
    border-top-left-radius: 0px;
  }

  .desktop\:rounded-tl-sm{
    border-top-left-radius: 0.125rem;
  }

  .desktop\:rounded-tl{
    border-top-left-radius: 0.25rem;
  }

  .desktop\:rounded-tl-md{
    border-top-left-radius: 0.375rem;
  }

  .desktop\:rounded-tl-lg{
    border-top-left-radius: 0.5rem;
  }

  .desktop\:rounded-tl-xl{
    border-top-left-radius: 0.75rem;
  }

  .desktop\:rounded-tl-2xl{
    border-top-left-radius: 1rem;
  }

  .desktop\:rounded-tl-3xl{
    border-top-left-radius: 1.5rem;
  }

  .desktop\:rounded-tl-full{
    border-top-left-radius: 9999px;
  }

  .desktop\:rounded-tr-none{
    border-top-right-radius: 0px;
  }

  .desktop\:rounded-tr-sm{
    border-top-right-radius: 0.125rem;
  }

  .desktop\:rounded-tr{
    border-top-right-radius: 0.25rem;
  }

  .desktop\:rounded-tr-md{
    border-top-right-radius: 0.375rem;
  }

  .desktop\:rounded-tr-lg{
    border-top-right-radius: 0.5rem;
  }

  .desktop\:rounded-tr-xl{
    border-top-right-radius: 0.75rem;
  }

  .desktop\:rounded-tr-2xl{
    border-top-right-radius: 1rem;
  }

  .desktop\:rounded-tr-3xl{
    border-top-right-radius: 1.5rem;
  }

  .desktop\:rounded-tr-full{
    border-top-right-radius: 9999px;
  }

  .desktop\:rounded-br-none{
    border-bottom-right-radius: 0px;
  }

  .desktop\:rounded-br-sm{
    border-bottom-right-radius: 0.125rem;
  }

  .desktop\:rounded-br{
    border-bottom-right-radius: 0.25rem;
  }

  .desktop\:rounded-br-md{
    border-bottom-right-radius: 0.375rem;
  }

  .desktop\:rounded-br-lg{
    border-bottom-right-radius: 0.5rem;
  }

  .desktop\:rounded-br-xl{
    border-bottom-right-radius: 0.75rem;
  }

  .desktop\:rounded-br-2xl{
    border-bottom-right-radius: 1rem;
  }

  .desktop\:rounded-br-3xl{
    border-bottom-right-radius: 1.5rem;
  }

  .desktop\:rounded-br-full{
    border-bottom-right-radius: 9999px;
  }

  .desktop\:rounded-bl-none{
    border-bottom-left-radius: 0px;
  }

  .desktop\:rounded-bl-sm{
    border-bottom-left-radius: 0.125rem;
  }

  .desktop\:rounded-bl{
    border-bottom-left-radius: 0.25rem;
  }

  .desktop\:rounded-bl-md{
    border-bottom-left-radius: 0.375rem;
  }

  .desktop\:rounded-bl-lg{
    border-bottom-left-radius: 0.5rem;
  }

  .desktop\:rounded-bl-xl{
    border-bottom-left-radius: 0.75rem;
  }

  .desktop\:rounded-bl-2xl{
    border-bottom-left-radius: 1rem;
  }

  .desktop\:rounded-bl-3xl{
    border-bottom-left-radius: 1.5rem;
  }

  .desktop\:rounded-bl-full{
    border-bottom-left-radius: 9999px;
  }

  .desktop\:border-0{
    border-width: 0px;
  }

  .desktop\:border-2{
    border-width: 2px;
  }

  .desktop\:border-4{
    border-width: 4px;
  }

  .desktop\:border-8{
    border-width: 8px;
  }

  .desktop\:border{
    border-width: 1px;
  }

  .desktop\:border-t-0{
    border-top-width: 0px;
  }

  .desktop\:border-t-2{
    border-top-width: 2px;
  }

  .desktop\:border-t-4{
    border-top-width: 4px;
  }

  .desktop\:border-t-8{
    border-top-width: 8px;
  }

  .desktop\:border-t{
    border-top-width: 1px;
  }

  .desktop\:border-r-0{
    border-right-width: 0px;
  }

  .desktop\:border-r-2{
    border-right-width: 2px;
  }

  .desktop\:border-r-4{
    border-right-width: 4px;
  }

  .desktop\:border-r-8{
    border-right-width: 8px;
  }

  .desktop\:border-r{
    border-right-width: 1px;
  }

  .desktop\:border-b-0{
    border-bottom-width: 0px;
  }

  .desktop\:border-b-2{
    border-bottom-width: 2px;
  }

  .desktop\:border-b-4{
    border-bottom-width: 4px;
  }

  .desktop\:border-b-8{
    border-bottom-width: 8px;
  }

  .desktop\:border-b{
    border-bottom-width: 1px;
  }

  .desktop\:border-l-0{
    border-left-width: 0px;
  }

  .desktop\:border-l-2{
    border-left-width: 2px;
  }

  .desktop\:border-l-4{
    border-left-width: 4px;
  }

  .desktop\:border-l-8{
    border-left-width: 8px;
  }

  .desktop\:border-l{
    border-left-width: 1px;
  }

  .desktop\:border-solid{
    border-style: solid;
  }

  .desktop\:border-dashed{
    border-style: dashed;
  }

  .desktop\:border-dotted{
    border-style: dotted;
  }

  .desktop\:border-double{
    border-style: double;
  }

  .desktop\:border-none{
    border-style: none;
  }

  .desktop\:border-transparent{
    border-color: transparent;
  }

  .desktop\:border-current{
    border-color: currentColor;
  }

  .desktop\:border-black{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:border-white{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .desktop\:border-gray-50{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .desktop\:border-gray-100{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .desktop\:border-gray-200{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .desktop\:border-gray-300{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .desktop\:border-gray-400{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .desktop\:border-gray-500{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .desktop\:border-gray-600{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .desktop\:border-gray-700{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .desktop\:border-gray-800{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .desktop\:border-gray-900{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .desktop\:border-red-50{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .desktop\:border-red-100{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .desktop\:border-red-200{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .desktop\:border-red-300{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .desktop\:border-red-400{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .desktop\:border-red-500{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .desktop\:border-red-600{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .desktop\:border-red-700{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .desktop\:border-red-800{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .desktop\:border-red-900{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .desktop\:border-red-light{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .desktop\:border-red-default{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:border-red-dark{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:border-yellow-50{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .desktop\:border-yellow-100{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .desktop\:border-yellow-200{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .desktop\:border-yellow-300{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .desktop\:border-yellow-400{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .desktop\:border-yellow-500{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .desktop\:border-yellow-600{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .desktop\:border-yellow-700{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .desktop\:border-yellow-800{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .desktop\:border-yellow-900{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .desktop\:border-green-50{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .desktop\:border-green-100{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .desktop\:border-green-200{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .desktop\:border-green-300{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .desktop\:border-green-400{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .desktop\:border-green-500{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .desktop\:border-green-600{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .desktop\:border-green-700{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .desktop\:border-green-800{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .desktop\:border-green-900{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .desktop\:border-green-light{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .desktop\:border-green-default{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .desktop\:border-green-dark{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .desktop\:border-blue-50{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .desktop\:border-blue-100{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .desktop\:border-blue-200{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .desktop\:border-blue-300{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .desktop\:border-blue-400{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .desktop\:border-blue-500{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .desktop\:border-blue-600{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .desktop\:border-blue-700{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .desktop\:border-blue-800{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .desktop\:border-blue-900{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .desktop\:border-indigo-50{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .desktop\:border-indigo-100{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .desktop\:border-indigo-200{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .desktop\:border-indigo-300{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .desktop\:border-indigo-400{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .desktop\:border-indigo-500{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .desktop\:border-indigo-600{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .desktop\:border-indigo-700{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .desktop\:border-indigo-800{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .desktop\:border-indigo-900{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .desktop\:border-purple-50{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .desktop\:border-purple-100{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .desktop\:border-purple-200{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .desktop\:border-purple-300{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .desktop\:border-purple-400{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .desktop\:border-purple-500{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .desktop\:border-purple-600{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .desktop\:border-purple-700{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .desktop\:border-purple-800{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .desktop\:border-purple-900{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .desktop\:border-pink-50{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .desktop\:border-pink-100{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .desktop\:border-pink-200{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .desktop\:border-pink-300{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .desktop\:border-pink-400{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .desktop\:border-pink-500{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .desktop\:border-pink-600{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .desktop\:border-pink-700{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .desktop\:border-pink-800{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .desktop\:border-pink-900{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .desktop\:border-brown-light{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .desktop\:border-brown-semi{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .desktop\:border-brown-default{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .desktop\:border-brown-dark{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .desktop\:border-success-light{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .desktop\:border-success-default{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .desktop\:border-success-dark{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .desktop\:border-error-light{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .desktop\:border-error-default{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .desktop\:border-error-dark{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:border-navigation-dark{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-transparent{
    border-color: transparent;
  }

  .group:hover .desktop\:group-hover\:border-current{
    border-color: currentColor;
  }

  .group:hover .desktop\:group-hover\:border-black{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-white{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-gray-50{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-gray-100{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-gray-200{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-gray-300{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-gray-400{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-gray-500{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-gray-600{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-gray-700{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-gray-800{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-gray-900{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-50{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-100{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-200{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-300{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-400{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-500{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-600{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-700{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-800{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-900{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-light{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-default{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-red-dark{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-yellow-50{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-yellow-100{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-yellow-200{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-yellow-300{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-yellow-400{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-yellow-500{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-yellow-600{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-yellow-700{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-yellow-800{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-yellow-900{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-50{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-100{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-200{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-300{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-400{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-500{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-600{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-700{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-800{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-900{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-light{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-default{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-green-dark{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-blue-50{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-blue-100{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-blue-200{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-blue-300{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-blue-400{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-blue-500{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-blue-600{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-blue-700{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-blue-800{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-blue-900{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-indigo-50{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-indigo-100{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-indigo-200{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-indigo-300{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-indigo-400{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-indigo-500{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-indigo-600{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-indigo-700{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-indigo-800{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-indigo-900{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-purple-50{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-purple-100{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-purple-200{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-purple-300{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-purple-400{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-purple-500{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-purple-600{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-purple-700{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-purple-800{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-purple-900{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-pink-50{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-pink-100{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-pink-200{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-pink-300{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-pink-400{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-pink-500{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-pink-600{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-pink-700{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-pink-800{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-pink-900{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-brown-light{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-brown-semi{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-brown-default{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-brown-dark{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-success-light{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-success-default{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-success-dark{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-error-light{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-error-default{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-error-dark{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .group:hover .desktop\:group-hover\:border-navigation-dark{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-transparent:focus-within{
    border-color: transparent;
  }

  .desktop\:focus-within\:border-current:focus-within{
    border-color: currentColor;
  }

  .desktop\:focus-within\:border-black:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-white:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-gray-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-gray-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-gray-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-gray-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-gray-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-gray-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-gray-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-gray-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-gray-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-gray-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-red-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-yellow-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-yellow-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-yellow-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-yellow-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-yellow-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-yellow-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-yellow-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-yellow-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-yellow-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-yellow-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-green-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-blue-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-blue-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-blue-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-blue-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-blue-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-blue-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-blue-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-blue-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-blue-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-blue-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-indigo-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-indigo-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-indigo-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-indigo-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-indigo-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-indigo-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-indigo-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-indigo-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-indigo-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-indigo-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-purple-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-purple-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-purple-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-purple-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-purple-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-purple-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-purple-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-purple-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-purple-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-purple-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-pink-50:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-pink-100:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-pink-200:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-pink-300:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-pink-400:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-pink-500:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-pink-600:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-pink-700:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-pink-800:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-pink-900:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-brown-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-brown-semi:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-brown-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-brown-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-success-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-success-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-success-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-error-light:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-error-default:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-error-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:focus-within\:border-navigation-dark:focus-within{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-transparent:hover{
    border-color: transparent;
  }

  .desktop\:hover\:border-current:hover{
    border-color: currentColor;
  }

  .desktop\:hover\:border-black:hover{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-white:hover{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-gray-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-gray-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-gray-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-gray-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-gray-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-gray-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-gray-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-gray-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-gray-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-gray-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-red-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-yellow-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-yellow-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-yellow-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-yellow-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-yellow-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-yellow-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-yellow-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-yellow-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-yellow-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-yellow-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-green-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-blue-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-blue-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-blue-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-blue-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-blue-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-blue-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-blue-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-blue-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-blue-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-blue-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-indigo-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-indigo-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-indigo-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-indigo-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-indigo-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-indigo-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-indigo-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-indigo-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-indigo-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-indigo-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-purple-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-purple-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-purple-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-purple-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-purple-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-purple-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-purple-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-purple-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-purple-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-purple-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-pink-50:hover{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-pink-100:hover{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-pink-200:hover{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-pink-300:hover{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-pink-400:hover{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-pink-500:hover{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-pink-600:hover{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-pink-700:hover{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-pink-800:hover{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-pink-900:hover{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-brown-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-brown-semi:hover{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-brown-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-brown-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-success-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-success-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-success-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-error-light:hover{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-error-default:hover{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-error-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:hover\:border-navigation-dark:hover{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-transparent:focus{
    border-color: transparent;
  }

  .desktop\:focus\:border-current:focus{
    border-color: currentColor;
  }

  .desktop\:focus\:border-black:focus{
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-white:focus{
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-gray-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(249, 250, 251, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-gray-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(243, 244, 246, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-gray-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-gray-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(209, 213, 219, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-gray-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(156, 163, 175, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-gray-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(107, 114, 128, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-gray-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(75, 85, 99, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-gray-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(55, 65, 81, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-gray-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(31, 41, 55, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-gray-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(17, 24, 39, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(254, 242, 242, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(254, 226, 226, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(254, 202, 202, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(252, 165, 165, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(248, 113, 113, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(220, 38, 38, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(185, 28, 28, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(153, 27, 27, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(127, 29, 29, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(234, 122, 122, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(185, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-red-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-yellow-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(255, 251, 235, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-yellow-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(254, 243, 199, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-yellow-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(253, 230, 138, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-yellow-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(252, 211, 77, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-yellow-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(251, 191, 36, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-yellow-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(245, 158, 11, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-yellow-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(217, 119, 6, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-yellow-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(180, 83, 9, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-yellow-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(146, 64, 14, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-yellow-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(120, 53, 15, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(236, 253, 245, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(209, 250, 229, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(167, 243, 208, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(110, 231, 183, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(52, 211, 153, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(16, 185, 129, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(5, 150, 105, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(4, 120, 87, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(6, 95, 70, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(6, 78, 59, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(181, 209, 185, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-green-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(28, 37, 30, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-blue-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(239, 246, 255, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-blue-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(219, 234, 254, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-blue-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(191, 219, 254, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-blue-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(147, 197, 253, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-blue-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-blue-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(59, 130, 246, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-blue-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(37, 99, 235, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-blue-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(29, 78, 216, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-blue-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(30, 64, 175, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-blue-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-indigo-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(238, 242, 255, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-indigo-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(224, 231, 255, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-indigo-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(199, 210, 254, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-indigo-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(165, 180, 252, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-indigo-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(129, 140, 248, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-indigo-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(99, 102, 241, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-indigo-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(79, 70, 229, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-indigo-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(67, 56, 202, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-indigo-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(55, 48, 163, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-indigo-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(49, 46, 129, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-purple-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(245, 243, 255, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-purple-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(237, 233, 254, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-purple-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(221, 214, 254, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-purple-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(196, 181, 253, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-purple-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(167, 139, 250, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-purple-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(139, 92, 246, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-purple-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(124, 58, 237, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-purple-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(109, 40, 217, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-purple-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(91, 33, 182, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-purple-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(76, 29, 149, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-pink-50:focus{
    --tw-border-opacity: 1;
    border-color: rgba(253, 242, 248, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-pink-100:focus{
    --tw-border-opacity: 1;
    border-color: rgba(252, 231, 243, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-pink-200:focus{
    --tw-border-opacity: 1;
    border-color: rgba(251, 207, 232, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-pink-300:focus{
    --tw-border-opacity: 1;
    border-color: rgba(249, 168, 212, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-pink-400:focus{
    --tw-border-opacity: 1;
    border-color: rgba(244, 114, 182, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-pink-500:focus{
    --tw-border-opacity: 1;
    border-color: rgba(236, 72, 153, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-pink-600:focus{
    --tw-border-opacity: 1;
    border-color: rgba(219, 39, 119, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-pink-700:focus{
    --tw-border-opacity: 1;
    border-color: rgba(190, 24, 93, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-pink-800:focus{
    --tw-border-opacity: 1;
    border-color: rgba(157, 23, 77, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-pink-900:focus{
    --tw-border-opacity: 1;
    border-color: rgba(131, 24, 67, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-brown-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(240, 233, 222, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-brown-semi:focus{
    --tw-border-opacity: 1;
    border-color: rgba(222, 214, 202, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-brown-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(123, 108, 92, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-brown-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(61, 39, 6, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-success-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(145, 224, 156, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-success-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(45, 153, 60, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-success-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(38, 59, 41, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-error-light:focus{
    --tw-border-opacity: 1;
    border-color: rgba(249, 134, 134, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-error-default:focus{
    --tw-border-opacity: 1;
    border-color: rgba(203, 7, 7, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-error-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(88, 0, 0, var(--tw-border-opacity));
  }

  .desktop\:focus\:border-navigation-dark:focus{
    --tw-border-opacity: 1;
    border-color: rgba(255, 205, 0, var(--tw-border-opacity));
  }

  .desktop\:border-opacity-0{
    --tw-border-opacity: 0;
  }

  .desktop\:border-opacity-5{
    --tw-border-opacity: 0.05;
  }

  .desktop\:border-opacity-10{
    --tw-border-opacity: 0.1;
  }

  .desktop\:border-opacity-20{
    --tw-border-opacity: 0.2;
  }

  .desktop\:border-opacity-25{
    --tw-border-opacity: 0.25;
  }

  .desktop\:border-opacity-30{
    --tw-border-opacity: 0.3;
  }

  .desktop\:border-opacity-40{
    --tw-border-opacity: 0.4;
  }

  .desktop\:border-opacity-50{
    --tw-border-opacity: 0.5;
  }

  .desktop\:border-opacity-60{
    --tw-border-opacity: 0.6;
  }

  .desktop\:border-opacity-70{
    --tw-border-opacity: 0.7;
  }

  .desktop\:border-opacity-75{
    --tw-border-opacity: 0.75;
  }

  .desktop\:border-opacity-80{
    --tw-border-opacity: 0.8;
  }

  .desktop\:border-opacity-90{
    --tw-border-opacity: 0.9;
  }

  .desktop\:border-opacity-95{
    --tw-border-opacity: 0.95;
  }

  .desktop\:border-opacity-100{
    --tw-border-opacity: 1;
  }

  .group:hover .desktop\:group-hover\:border-opacity-0{
    --tw-border-opacity: 0;
  }

  .group:hover .desktop\:group-hover\:border-opacity-5{
    --tw-border-opacity: 0.05;
  }

  .group:hover .desktop\:group-hover\:border-opacity-10{
    --tw-border-opacity: 0.1;
  }

  .group:hover .desktop\:group-hover\:border-opacity-20{
    --tw-border-opacity: 0.2;
  }

  .group:hover .desktop\:group-hover\:border-opacity-25{
    --tw-border-opacity: 0.25;
  }

  .group:hover .desktop\:group-hover\:border-opacity-30{
    --tw-border-opacity: 0.3;
  }

  .group:hover .desktop\:group-hover\:border-opacity-40{
    --tw-border-opacity: 0.4;
  }

  .group:hover .desktop\:group-hover\:border-opacity-50{
    --tw-border-opacity: 0.5;
  }

  .group:hover .desktop\:group-hover\:border-opacity-60{
    --tw-border-opacity: 0.6;
  }

  .group:hover .desktop\:group-hover\:border-opacity-70{
    --tw-border-opacity: 0.7;
  }

  .group:hover .desktop\:group-hover\:border-opacity-75{
    --tw-border-opacity: 0.75;
  }

  .group:hover .desktop\:group-hover\:border-opacity-80{
    --tw-border-opacity: 0.8;
  }

  .group:hover .desktop\:group-hover\:border-opacity-90{
    --tw-border-opacity: 0.9;
  }

  .group:hover .desktop\:group-hover\:border-opacity-95{
    --tw-border-opacity: 0.95;
  }

  .group:hover .desktop\:group-hover\:border-opacity-100{
    --tw-border-opacity: 1;
  }

  .desktop\:focus-within\:border-opacity-0:focus-within{
    --tw-border-opacity: 0;
  }

  .desktop\:focus-within\:border-opacity-5:focus-within{
    --tw-border-opacity: 0.05;
  }

  .desktop\:focus-within\:border-opacity-10:focus-within{
    --tw-border-opacity: 0.1;
  }

  .desktop\:focus-within\:border-opacity-20:focus-within{
    --tw-border-opacity: 0.2;
  }

  .desktop\:focus-within\:border-opacity-25:focus-within{
    --tw-border-opacity: 0.25;
  }

  .desktop\:focus-within\:border-opacity-30:focus-within{
    --tw-border-opacity: 0.3;
  }

  .desktop\:focus-within\:border-opacity-40:focus-within{
    --tw-border-opacity: 0.4;
  }

  .desktop\:focus-within\:border-opacity-50:focus-within{
    --tw-border-opacity: 0.5;
  }

  .desktop\:focus-within\:border-opacity-60:focus-within{
    --tw-border-opacity: 0.6;
  }

  .desktop\:focus-within\:border-opacity-70:focus-within{
    --tw-border-opacity: 0.7;
  }

  .desktop\:focus-within\:border-opacity-75:focus-within{
    --tw-border-opacity: 0.75;
  }

  .desktop\:focus-within\:border-opacity-80:focus-within{
    --tw-border-opacity: 0.8;
  }

  .desktop\:focus-within\:border-opacity-90:focus-within{
    --tw-border-opacity: 0.9;
  }

  .desktop\:focus-within\:border-opacity-95:focus-within{
    --tw-border-opacity: 0.95;
  }

  .desktop\:focus-within\:border-opacity-100:focus-within{
    --tw-border-opacity: 1;
  }

  .desktop\:hover\:border-opacity-0:hover{
    --tw-border-opacity: 0;
  }

  .desktop\:hover\:border-opacity-5:hover{
    --tw-border-opacity: 0.05;
  }

  .desktop\:hover\:border-opacity-10:hover{
    --tw-border-opacity: 0.1;
  }

  .desktop\:hover\:border-opacity-20:hover{
    --tw-border-opacity: 0.2;
  }

  .desktop\:hover\:border-opacity-25:hover{
    --tw-border-opacity: 0.25;
  }

  .desktop\:hover\:border-opacity-30:hover{
    --tw-border-opacity: 0.3;
  }

  .desktop\:hover\:border-opacity-40:hover{
    --tw-border-opacity: 0.4;
  }

  .desktop\:hover\:border-opacity-50:hover{
    --tw-border-opacity: 0.5;
  }

  .desktop\:hover\:border-opacity-60:hover{
    --tw-border-opacity: 0.6;
  }

  .desktop\:hover\:border-opacity-70:hover{
    --tw-border-opacity: 0.7;
  }

  .desktop\:hover\:border-opacity-75:hover{
    --tw-border-opacity: 0.75;
  }

  .desktop\:hover\:border-opacity-80:hover{
    --tw-border-opacity: 0.8;
  }

  .desktop\:hover\:border-opacity-90:hover{
    --tw-border-opacity: 0.9;
  }

  .desktop\:hover\:border-opacity-95:hover{
    --tw-border-opacity: 0.95;
  }

  .desktop\:hover\:border-opacity-100:hover{
    --tw-border-opacity: 1;
  }

  .desktop\:focus\:border-opacity-0:focus{
    --tw-border-opacity: 0;
  }

  .desktop\:focus\:border-opacity-5:focus{
    --tw-border-opacity: 0.05;
  }

  .desktop\:focus\:border-opacity-10:focus{
    --tw-border-opacity: 0.1;
  }

  .desktop\:focus\:border-opacity-20:focus{
    --tw-border-opacity: 0.2;
  }

  .desktop\:focus\:border-opacity-25:focus{
    --tw-border-opacity: 0.25;
  }

  .desktop\:focus\:border-opacity-30:focus{
    --tw-border-opacity: 0.3;
  }

  .desktop\:focus\:border-opacity-40:focus{
    --tw-border-opacity: 0.4;
  }

  .desktop\:focus\:border-opacity-50:focus{
    --tw-border-opacity: 0.5;
  }

  .desktop\:focus\:border-opacity-60:focus{
    --tw-border-opacity: 0.6;
  }

  .desktop\:focus\:border-opacity-70:focus{
    --tw-border-opacity: 0.7;
  }

  .desktop\:focus\:border-opacity-75:focus{
    --tw-border-opacity: 0.75;
  }

  .desktop\:focus\:border-opacity-80:focus{
    --tw-border-opacity: 0.8;
  }

  .desktop\:focus\:border-opacity-90:focus{
    --tw-border-opacity: 0.9;
  }

  .desktop\:focus\:border-opacity-95:focus{
    --tw-border-opacity: 0.95;
  }

  .desktop\:focus\:border-opacity-100:focus{
    --tw-border-opacity: 1;
  }

  .desktop\:bg-transparent{
    background-color: transparent;
  }

  .desktop\:bg-current{
    background-color: currentColor;
  }

  .desktop\:bg-black{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .desktop\:bg-gray-50{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .desktop\:bg-gray-100{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .desktop\:bg-gray-200{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .desktop\:bg-gray-300{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .desktop\:bg-gray-400{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .desktop\:bg-gray-500{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .desktop\:bg-gray-600{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .desktop\:bg-gray-700{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .desktop\:bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .desktop\:bg-gray-900{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-50{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-100{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-200{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-300{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-400{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-500{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-600{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-700{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-800{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-900{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-light{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-default{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:bg-red-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:bg-yellow-50{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .desktop\:bg-yellow-100{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .desktop\:bg-yellow-200{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .desktop\:bg-yellow-300{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .desktop\:bg-yellow-400{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .desktop\:bg-yellow-500{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .desktop\:bg-yellow-600{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .desktop\:bg-yellow-700{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .desktop\:bg-yellow-800{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .desktop\:bg-yellow-900{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-50{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-100{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-200{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-300{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-400{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-500{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-600{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-700{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-800{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-900{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-light{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-default{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .desktop\:bg-green-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .desktop\:bg-blue-50{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .desktop\:bg-blue-100{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .desktop\:bg-blue-200{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .desktop\:bg-blue-300{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .desktop\:bg-blue-400{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .desktop\:bg-blue-500{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .desktop\:bg-blue-600{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .desktop\:bg-blue-700{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .desktop\:bg-blue-800{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .desktop\:bg-blue-900{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .desktop\:bg-indigo-50{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .desktop\:bg-indigo-100{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .desktop\:bg-indigo-200{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .desktop\:bg-indigo-300{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .desktop\:bg-indigo-400{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .desktop\:bg-indigo-500{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .desktop\:bg-indigo-600{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .desktop\:bg-indigo-700{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .desktop\:bg-indigo-800{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .desktop\:bg-indigo-900{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .desktop\:bg-purple-50{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .desktop\:bg-purple-100{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .desktop\:bg-purple-200{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .desktop\:bg-purple-300{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .desktop\:bg-purple-400{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .desktop\:bg-purple-500{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .desktop\:bg-purple-600{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .desktop\:bg-purple-700{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .desktop\:bg-purple-800{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .desktop\:bg-purple-900{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .desktop\:bg-pink-50{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .desktop\:bg-pink-100{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .desktop\:bg-pink-200{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .desktop\:bg-pink-300{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .desktop\:bg-pink-400{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .desktop\:bg-pink-500{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .desktop\:bg-pink-600{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .desktop\:bg-pink-700{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .desktop\:bg-pink-800{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .desktop\:bg-pink-900{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .desktop\:bg-brown-light{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .desktop\:bg-brown-semi{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .desktop\:bg-brown-default{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .desktop\:bg-brown-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .desktop\:bg-success-light{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .desktop\:bg-success-default{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .desktop\:bg-success-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .desktop\:bg-error-light{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .desktop\:bg-error-default{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .desktop\:bg-error-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:bg-navigation-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-transparent{
    background-color: transparent;
  }

  .group:hover .desktop\:group-hover\:bg-current{
    background-color: currentColor;
  }

  .group:hover .desktop\:group-hover\:bg-black{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-gray-50{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-gray-100{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-gray-200{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-gray-300{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-gray-400{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-gray-500{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-gray-600{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-gray-700{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-gray-900{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-50{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-100{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-200{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-300{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-400{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-500{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-600{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-700{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-800{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-900{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-light{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-default{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-red-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-yellow-50{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-yellow-100{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-yellow-200{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-yellow-300{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-yellow-400{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-yellow-500{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-yellow-600{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-yellow-700{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-yellow-800{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-yellow-900{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-50{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-100{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-200{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-300{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-400{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-500{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-600{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-700{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-800{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-900{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-light{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-default{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-green-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-blue-50{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-blue-100{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-blue-200{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-blue-300{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-blue-400{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-blue-500{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-blue-600{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-blue-700{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-blue-800{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-blue-900{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-indigo-50{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-indigo-100{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-indigo-200{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-indigo-300{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-indigo-400{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-indigo-500{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-indigo-600{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-indigo-700{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-indigo-800{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-indigo-900{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-purple-50{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-purple-100{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-purple-200{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-purple-300{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-purple-400{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-purple-500{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-purple-600{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-purple-700{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-purple-800{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-purple-900{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-pink-50{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-pink-100{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-pink-200{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-pink-300{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-pink-400{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-pink-500{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-pink-600{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-pink-700{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-pink-800{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-pink-900{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-brown-light{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-brown-semi{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-brown-default{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-brown-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-success-light{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-success-default{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-success-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-error-light{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-error-default{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-error-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .group:hover .desktop\:group-hover\:bg-navigation-dark{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-transparent:focus-within{
    background-color: transparent;
  }

  .desktop\:focus-within\:bg-current:focus-within{
    background-color: currentColor;
  }

  .desktop\:focus-within\:bg-black:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-white:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-gray-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-gray-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-gray-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-gray-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-gray-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-gray-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-gray-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-gray-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-gray-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-gray-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-red-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-yellow-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-yellow-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-yellow-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-yellow-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-yellow-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-yellow-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-yellow-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-yellow-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-yellow-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-yellow-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-green-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-blue-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-blue-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-blue-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-blue-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-blue-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-blue-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-blue-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-blue-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-blue-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-blue-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-indigo-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-indigo-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-indigo-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-indigo-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-indigo-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-indigo-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-indigo-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-indigo-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-indigo-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-indigo-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-purple-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-purple-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-purple-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-purple-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-purple-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-purple-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-purple-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-purple-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-purple-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-purple-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-pink-50:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-pink-100:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-pink-200:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-pink-300:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-pink-400:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-pink-500:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-pink-600:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-pink-700:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-pink-800:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-pink-900:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-brown-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-brown-semi:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-brown-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-brown-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-success-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-success-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-success-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-error-light:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-error-default:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-error-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:focus-within\:bg-navigation-dark:focus-within{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-transparent:hover{
    background-color: transparent;
  }

  .desktop\:hover\:bg-current:hover{
    background-color: currentColor;
  }

  .desktop\:hover\:bg-black:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-white:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-gray-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-gray-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-gray-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-gray-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-gray-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-gray-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-gray-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-gray-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-gray-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-gray-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-red-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-yellow-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-yellow-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-yellow-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-yellow-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-yellow-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-yellow-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-yellow-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-yellow-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-yellow-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-yellow-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-green-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-blue-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-blue-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-blue-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-blue-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-blue-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-blue-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-blue-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-blue-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-blue-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-blue-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-indigo-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-indigo-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-indigo-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-indigo-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-indigo-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-indigo-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-indigo-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-indigo-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-indigo-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-indigo-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-purple-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-purple-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-purple-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-purple-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-purple-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-purple-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-purple-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-purple-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-purple-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-purple-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-pink-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-pink-100:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-pink-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-pink-300:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-pink-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-pink-500:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-pink-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-pink-700:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-pink-800:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-pink-900:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-brown-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-brown-semi:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-brown-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-brown-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-success-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-success-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-success-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-error-light:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-error-default:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-error-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:hover\:bg-navigation-dark:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-transparent:focus{
    background-color: transparent;
  }

  .desktop\:focus\:bg-current:focus{
    background-color: currentColor;
  }

  .desktop\:focus\:bg-black:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-white:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-gray-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-gray-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-gray-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-gray-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-gray-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-gray-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-gray-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(75, 85, 99, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-gray-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 65, 81, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-gray-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-gray-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(248, 113, 113, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(153, 27, 27, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(127, 29, 29, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(234, 122, 122, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(185, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-red-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-yellow-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-yellow-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-yellow-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 230, 138, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-yellow-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 211, 77, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-yellow-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 191, 36, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-yellow-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 158, 11, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-yellow-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(217, 119, 6, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-yellow-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(180, 83, 9, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-yellow-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(146, 64, 14, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-yellow-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(120, 53, 15, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 253, 245, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(209, 250, 229, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 243, 208, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(110, 231, 183, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(52, 211, 153, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(16, 185, 129, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(5, 150, 105, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(4, 120, 87, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 95, 70, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(6, 78, 59, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(181, 209, 185, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-green-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(28, 37, 30, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-blue-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-blue-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-blue-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-blue-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-blue-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(96, 165, 250, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-blue-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-blue-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-blue-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-blue-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 64, 175, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-blue-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(30, 58, 138, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-indigo-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(238, 242, 255, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-indigo-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(224, 231, 255, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-indigo-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(199, 210, 254, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-indigo-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(165, 180, 252, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-indigo-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(129, 140, 248, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-indigo-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(99, 102, 241, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-indigo-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(79, 70, 229, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-indigo-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(67, 56, 202, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-indigo-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(55, 48, 163, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-indigo-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(49, 46, 129, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-purple-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(245, 243, 255, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-purple-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(237, 233, 254, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-purple-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(221, 214, 254, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-purple-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(196, 181, 253, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-purple-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(167, 139, 250, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-purple-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(139, 92, 246, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-purple-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(124, 58, 237, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-purple-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(109, 40, 217, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-purple-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(91, 33, 182, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-purple-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(76, 29, 149, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-pink-50:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(253, 242, 248, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-pink-100:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(252, 231, 243, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-pink-200:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(251, 207, 232, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-pink-300:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-pink-400:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(244, 114, 182, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-pink-500:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(236, 72, 153, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-pink-600:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(219, 39, 119, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-pink-700:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(190, 24, 93, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-pink-800:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(157, 23, 77, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-pink-900:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(131, 24, 67, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-brown-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(240, 233, 222, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-brown-semi:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(222, 214, 202, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-brown-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(123, 108, 92, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-brown-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(61, 39, 6, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-success-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(145, 224, 156, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-success-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(45, 153, 60, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-success-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(38, 59, 41, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-error-light:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(249, 134, 134, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-error-default:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(203, 7, 7, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-error-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(88, 0, 0, var(--tw-bg-opacity));
  }

  .desktop\:focus\:bg-navigation-dark:focus{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 205, 0, var(--tw-bg-opacity));
  }

  .desktop\:bg-opacity-0{
    --tw-bg-opacity: 0;
  }

  .desktop\:bg-opacity-5{
    --tw-bg-opacity: 0.05;
  }

  .desktop\:bg-opacity-10{
    --tw-bg-opacity: 0.1;
  }

  .desktop\:bg-opacity-20{
    --tw-bg-opacity: 0.2;
  }

  .desktop\:bg-opacity-25{
    --tw-bg-opacity: 0.25;
  }

  .desktop\:bg-opacity-30{
    --tw-bg-opacity: 0.3;
  }

  .desktop\:bg-opacity-40{
    --tw-bg-opacity: 0.4;
  }

  .desktop\:bg-opacity-50{
    --tw-bg-opacity: 0.5;
  }

  .desktop\:bg-opacity-60{
    --tw-bg-opacity: 0.6;
  }

  .desktop\:bg-opacity-70{
    --tw-bg-opacity: 0.7;
  }

  .desktop\:bg-opacity-75{
    --tw-bg-opacity: 0.75;
  }

  .desktop\:bg-opacity-80{
    --tw-bg-opacity: 0.8;
  }

  .desktop\:bg-opacity-90{
    --tw-bg-opacity: 0.9;
  }

  .desktop\:bg-opacity-95{
    --tw-bg-opacity: 0.95;
  }

  .desktop\:bg-opacity-100{
    --tw-bg-opacity: 1;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-0{
    --tw-bg-opacity: 0;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-5{
    --tw-bg-opacity: 0.05;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-10{
    --tw-bg-opacity: 0.1;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-20{
    --tw-bg-opacity: 0.2;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-25{
    --tw-bg-opacity: 0.25;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-30{
    --tw-bg-opacity: 0.3;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-40{
    --tw-bg-opacity: 0.4;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-50{
    --tw-bg-opacity: 0.5;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-60{
    --tw-bg-opacity: 0.6;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-70{
    --tw-bg-opacity: 0.7;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-75{
    --tw-bg-opacity: 0.75;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-80{
    --tw-bg-opacity: 0.8;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-90{
    --tw-bg-opacity: 0.9;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-95{
    --tw-bg-opacity: 0.95;
  }

  .group:hover .desktop\:group-hover\:bg-opacity-100{
    --tw-bg-opacity: 1;
  }

  .desktop\:focus-within\:bg-opacity-0:focus-within{
    --tw-bg-opacity: 0;
  }

  .desktop\:focus-within\:bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05;
  }

  .desktop\:focus-within\:bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1;
  }

  .desktop\:focus-within\:bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2;
  }

  .desktop\:focus-within\:bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25;
  }

  .desktop\:focus-within\:bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3;
  }

  .desktop\:focus-within\:bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4;
  }

  .desktop\:focus-within\:bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5;
  }

  .desktop\:focus-within\:bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6;
  }

  .desktop\:focus-within\:bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7;
  }

  .desktop\:focus-within\:bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75;
  }

  .desktop\:focus-within\:bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8;
  }

  .desktop\:focus-within\:bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9;
  }

  .desktop\:focus-within\:bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95;
  }

  .desktop\:focus-within\:bg-opacity-100:focus-within{
    --tw-bg-opacity: 1;
  }

  .desktop\:hover\:bg-opacity-0:hover{
    --tw-bg-opacity: 0;
  }

  .desktop\:hover\:bg-opacity-5:hover{
    --tw-bg-opacity: 0.05;
  }

  .desktop\:hover\:bg-opacity-10:hover{
    --tw-bg-opacity: 0.1;
  }

  .desktop\:hover\:bg-opacity-20:hover{
    --tw-bg-opacity: 0.2;
  }

  .desktop\:hover\:bg-opacity-25:hover{
    --tw-bg-opacity: 0.25;
  }

  .desktop\:hover\:bg-opacity-30:hover{
    --tw-bg-opacity: 0.3;
  }

  .desktop\:hover\:bg-opacity-40:hover{
    --tw-bg-opacity: 0.4;
  }

  .desktop\:hover\:bg-opacity-50:hover{
    --tw-bg-opacity: 0.5;
  }

  .desktop\:hover\:bg-opacity-60:hover{
    --tw-bg-opacity: 0.6;
  }

  .desktop\:hover\:bg-opacity-70:hover{
    --tw-bg-opacity: 0.7;
  }

  .desktop\:hover\:bg-opacity-75:hover{
    --tw-bg-opacity: 0.75;
  }

  .desktop\:hover\:bg-opacity-80:hover{
    --tw-bg-opacity: 0.8;
  }

  .desktop\:hover\:bg-opacity-90:hover{
    --tw-bg-opacity: 0.9;
  }

  .desktop\:hover\:bg-opacity-95:hover{
    --tw-bg-opacity: 0.95;
  }

  .desktop\:hover\:bg-opacity-100:hover{
    --tw-bg-opacity: 1;
  }

  .desktop\:focus\:bg-opacity-0:focus{
    --tw-bg-opacity: 0;
  }

  .desktop\:focus\:bg-opacity-5:focus{
    --tw-bg-opacity: 0.05;
  }

  .desktop\:focus\:bg-opacity-10:focus{
    --tw-bg-opacity: 0.1;
  }

  .desktop\:focus\:bg-opacity-20:focus{
    --tw-bg-opacity: 0.2;
  }

  .desktop\:focus\:bg-opacity-25:focus{
    --tw-bg-opacity: 0.25;
  }

  .desktop\:focus\:bg-opacity-30:focus{
    --tw-bg-opacity: 0.3;
  }

  .desktop\:focus\:bg-opacity-40:focus{
    --tw-bg-opacity: 0.4;
  }

  .desktop\:focus\:bg-opacity-50:focus{
    --tw-bg-opacity: 0.5;
  }

  .desktop\:focus\:bg-opacity-60:focus{
    --tw-bg-opacity: 0.6;
  }

  .desktop\:focus\:bg-opacity-70:focus{
    --tw-bg-opacity: 0.7;
  }

  .desktop\:focus\:bg-opacity-75:focus{
    --tw-bg-opacity: 0.75;
  }

  .desktop\:focus\:bg-opacity-80:focus{
    --tw-bg-opacity: 0.8;
  }

  .desktop\:focus\:bg-opacity-90:focus{
    --tw-bg-opacity: 0.9;
  }

  .desktop\:focus\:bg-opacity-95:focus{
    --tw-bg-opacity: 0.95;
  }

  .desktop\:focus\:bg-opacity-100:focus{
    --tw-bg-opacity: 1;
  }

  .desktop\:bg-none{
    background-image: none;
  }

  .desktop\:bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
  }

  .desktop\:bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops));
  }

  .desktop\:bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
  }

  .desktop\:bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  }

  .desktop\:bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  }

  .desktop\:bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops));
  }

  .desktop\:bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops));
  }

  .desktop\:bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops));
  }

  .desktop\:from-transparent{
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .desktop\:from-current{
    --tw-gradient-from: currentColor;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .desktop\:from-black{
    --tw-gradient-from: #000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .desktop\:from-white{
    --tw-gradient-from: #fff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .desktop\:from-gray-50{
    --tw-gradient-from: #f9fafb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .desktop\:from-gray-100{
    --tw-gradient-from: #f3f4f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .desktop\:from-gray-200{
    --tw-gradient-from: #e5e7eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .desktop\:from-gray-300{
    --tw-gradient-from: #d1d5db;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .desktop\:from-gray-400{
    --tw-gradient-from: #9ca3af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .desktop\:from-gray-500{
    --tw-gradient-from: #6b7280;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .desktop\:from-gray-600{
    --tw-gradient-from: #4b5563;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .desktop\:from-gray-700{
    --tw-gradient-from: #374151;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .desktop\:from-gray-800{
    --tw-gradient-from: #1f2937;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .desktop\:from-gray-900{
    --tw-gradient-from: #111827;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .desktop\:from-red-50{
    --tw-gradient-from: #fef2f2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .desktop\:from-red-100{
    --tw-gradient-from: #fee2e2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .desktop\:from-red-200{
    --tw-gradient-from: #fecaca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .desktop\:from-red-300{
    --tw-gradient-from: #fca5a5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .desktop\:from-red-400{
    --tw-gradient-from: #f87171;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .desktop\:from-red-500{
    --tw-gradient-from: #ef4444;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .desktop\:from-red-600{
    --tw-gradient-from: #dc2626;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .desktop\:from-red-700{
    --tw-gradient-from: #b91c1c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .desktop\:from-red-800{
    --tw-gradient-from: #991b1b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .desktop\:from-red-900{
    --tw-gradient-from: #7f1d1d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .desktop\:from-red-light{
    --tw-gradient-from: #EA7A7A;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .desktop\:from-red-default{
    --tw-gradient-from: #B90000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .desktop\:from-red-dark{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .desktop\:from-yellow-50{
    --tw-gradient-from: #fffbeb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .desktop\:from-yellow-100{
    --tw-gradient-from: #fef3c7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .desktop\:from-yellow-200{
    --tw-gradient-from: #fde68a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .desktop\:from-yellow-300{
    --tw-gradient-from: #fcd34d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .desktop\:from-yellow-400{
    --tw-gradient-from: #fbbf24;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .desktop\:from-yellow-500{
    --tw-gradient-from: #f59e0b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .desktop\:from-yellow-600{
    --tw-gradient-from: #d97706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .desktop\:from-yellow-700{
    --tw-gradient-from: #b45309;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .desktop\:from-yellow-800{
    --tw-gradient-from: #92400e;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .desktop\:from-yellow-900{
    --tw-gradient-from: #78350f;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .desktop\:from-green-50{
    --tw-gradient-from: #ecfdf5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .desktop\:from-green-100{
    --tw-gradient-from: #d1fae5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .desktop\:from-green-200{
    --tw-gradient-from: #a7f3d0;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .desktop\:from-green-300{
    --tw-gradient-from: #6ee7b7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .desktop\:from-green-400{
    --tw-gradient-from: #34d399;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .desktop\:from-green-500{
    --tw-gradient-from: #10b981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .desktop\:from-green-600{
    --tw-gradient-from: #059669;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .desktop\:from-green-700{
    --tw-gradient-from: #047857;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .desktop\:from-green-800{
    --tw-gradient-from: #065f46;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .desktop\:from-green-900{
    --tw-gradient-from: #064e3b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .desktop\:from-green-light{
    --tw-gradient-from: #B5D1B9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .desktop\:from-green-default{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .desktop\:from-green-dark{
    --tw-gradient-from: #1C251E;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .desktop\:from-blue-50{
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .desktop\:from-blue-100{
    --tw-gradient-from: #dbeafe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .desktop\:from-blue-200{
    --tw-gradient-from: #bfdbfe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .desktop\:from-blue-300{
    --tw-gradient-from: #93c5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .desktop\:from-blue-400{
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .desktop\:from-blue-500{
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .desktop\:from-blue-600{
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .desktop\:from-blue-700{
    --tw-gradient-from: #1d4ed8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .desktop\:from-blue-800{
    --tw-gradient-from: #1e40af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .desktop\:from-blue-900{
    --tw-gradient-from: #1e3a8a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .desktop\:from-indigo-50{
    --tw-gradient-from: #eef2ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .desktop\:from-indigo-100{
    --tw-gradient-from: #e0e7ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .desktop\:from-indigo-200{
    --tw-gradient-from: #c7d2fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .desktop\:from-indigo-300{
    --tw-gradient-from: #a5b4fc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .desktop\:from-indigo-400{
    --tw-gradient-from: #818cf8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .desktop\:from-indigo-500{
    --tw-gradient-from: #6366f1;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .desktop\:from-indigo-600{
    --tw-gradient-from: #4f46e5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .desktop\:from-indigo-700{
    --tw-gradient-from: #4338ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .desktop\:from-indigo-800{
    --tw-gradient-from: #3730a3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .desktop\:from-indigo-900{
    --tw-gradient-from: #312e81;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .desktop\:from-purple-50{
    --tw-gradient-from: #f5f3ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .desktop\:from-purple-100{
    --tw-gradient-from: #ede9fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .desktop\:from-purple-200{
    --tw-gradient-from: #ddd6fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .desktop\:from-purple-300{
    --tw-gradient-from: #c4b5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .desktop\:from-purple-400{
    --tw-gradient-from: #a78bfa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .desktop\:from-purple-500{
    --tw-gradient-from: #8b5cf6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .desktop\:from-purple-600{
    --tw-gradient-from: #7c3aed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .desktop\:from-purple-700{
    --tw-gradient-from: #6d28d9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .desktop\:from-purple-800{
    --tw-gradient-from: #5b21b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .desktop\:from-purple-900{
    --tw-gradient-from: #4c1d95;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .desktop\:from-pink-50{
    --tw-gradient-from: #fdf2f8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .desktop\:from-pink-100{
    --tw-gradient-from: #fce7f3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .desktop\:from-pink-200{
    --tw-gradient-from: #fbcfe8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .desktop\:from-pink-300{
    --tw-gradient-from: #f9a8d4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .desktop\:from-pink-400{
    --tw-gradient-from: #f472b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .desktop\:from-pink-500{
    --tw-gradient-from: #ec4899;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .desktop\:from-pink-600{
    --tw-gradient-from: #db2777;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .desktop\:from-pink-700{
    --tw-gradient-from: #be185d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .desktop\:from-pink-800{
    --tw-gradient-from: #9d174d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .desktop\:from-pink-900{
    --tw-gradient-from: #831843;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .desktop\:from-brown-light{
    --tw-gradient-from: #f0e9de;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .desktop\:from-brown-semi{
    --tw-gradient-from: #ded6ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .desktop\:from-brown-default{
    --tw-gradient-from: #7b6c5c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .desktop\:from-brown-dark{
    --tw-gradient-from: #3d2706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .desktop\:from-success-light{
    --tw-gradient-from: #91E09C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .desktop\:from-success-default{
    --tw-gradient-from: #2D993C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .desktop\:from-success-dark{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .desktop\:from-error-light{
    --tw-gradient-from: #F98686;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .desktop\:from-error-default{
    --tw-gradient-from: #CB0707;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .desktop\:from-error-dark{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .desktop\:from-navigation-dark{
    --tw-gradient-from: #ffcd00;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .desktop\:hover\:from-transparent:hover{
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .desktop\:hover\:from-current:hover{
    --tw-gradient-from: currentColor;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .desktop\:hover\:from-black:hover{
    --tw-gradient-from: #000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .desktop\:hover\:from-white:hover{
    --tw-gradient-from: #fff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .desktop\:hover\:from-gray-50:hover{
    --tw-gradient-from: #f9fafb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .desktop\:hover\:from-gray-100:hover{
    --tw-gradient-from: #f3f4f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .desktop\:hover\:from-gray-200:hover{
    --tw-gradient-from: #e5e7eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .desktop\:hover\:from-gray-300:hover{
    --tw-gradient-from: #d1d5db;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .desktop\:hover\:from-gray-400:hover{
    --tw-gradient-from: #9ca3af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .desktop\:hover\:from-gray-500:hover{
    --tw-gradient-from: #6b7280;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .desktop\:hover\:from-gray-600:hover{
    --tw-gradient-from: #4b5563;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .desktop\:hover\:from-gray-700:hover{
    --tw-gradient-from: #374151;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .desktop\:hover\:from-gray-800:hover{
    --tw-gradient-from: #1f2937;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .desktop\:hover\:from-gray-900:hover{
    --tw-gradient-from: #111827;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .desktop\:hover\:from-red-50:hover{
    --tw-gradient-from: #fef2f2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .desktop\:hover\:from-red-100:hover{
    --tw-gradient-from: #fee2e2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .desktop\:hover\:from-red-200:hover{
    --tw-gradient-from: #fecaca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .desktop\:hover\:from-red-300:hover{
    --tw-gradient-from: #fca5a5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .desktop\:hover\:from-red-400:hover{
    --tw-gradient-from: #f87171;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .desktop\:hover\:from-red-500:hover{
    --tw-gradient-from: #ef4444;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .desktop\:hover\:from-red-600:hover{
    --tw-gradient-from: #dc2626;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .desktop\:hover\:from-red-700:hover{
    --tw-gradient-from: #b91c1c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .desktop\:hover\:from-red-800:hover{
    --tw-gradient-from: #991b1b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .desktop\:hover\:from-red-900:hover{
    --tw-gradient-from: #7f1d1d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .desktop\:hover\:from-red-light:hover{
    --tw-gradient-from: #EA7A7A;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .desktop\:hover\:from-red-default:hover{
    --tw-gradient-from: #B90000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .desktop\:hover\:from-red-dark:hover{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .desktop\:hover\:from-yellow-50:hover{
    --tw-gradient-from: #fffbeb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .desktop\:hover\:from-yellow-100:hover{
    --tw-gradient-from: #fef3c7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .desktop\:hover\:from-yellow-200:hover{
    --tw-gradient-from: #fde68a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .desktop\:hover\:from-yellow-300:hover{
    --tw-gradient-from: #fcd34d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .desktop\:hover\:from-yellow-400:hover{
    --tw-gradient-from: #fbbf24;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .desktop\:hover\:from-yellow-500:hover{
    --tw-gradient-from: #f59e0b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .desktop\:hover\:from-yellow-600:hover{
    --tw-gradient-from: #d97706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .desktop\:hover\:from-yellow-700:hover{
    --tw-gradient-from: #b45309;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .desktop\:hover\:from-yellow-800:hover{
    --tw-gradient-from: #92400e;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .desktop\:hover\:from-yellow-900:hover{
    --tw-gradient-from: #78350f;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .desktop\:hover\:from-green-50:hover{
    --tw-gradient-from: #ecfdf5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .desktop\:hover\:from-green-100:hover{
    --tw-gradient-from: #d1fae5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .desktop\:hover\:from-green-200:hover{
    --tw-gradient-from: #a7f3d0;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .desktop\:hover\:from-green-300:hover{
    --tw-gradient-from: #6ee7b7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .desktop\:hover\:from-green-400:hover{
    --tw-gradient-from: #34d399;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .desktop\:hover\:from-green-500:hover{
    --tw-gradient-from: #10b981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .desktop\:hover\:from-green-600:hover{
    --tw-gradient-from: #059669;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .desktop\:hover\:from-green-700:hover{
    --tw-gradient-from: #047857;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .desktop\:hover\:from-green-800:hover{
    --tw-gradient-from: #065f46;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .desktop\:hover\:from-green-900:hover{
    --tw-gradient-from: #064e3b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .desktop\:hover\:from-green-light:hover{
    --tw-gradient-from: #B5D1B9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .desktop\:hover\:from-green-default:hover{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .desktop\:hover\:from-green-dark:hover{
    --tw-gradient-from: #1C251E;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .desktop\:hover\:from-blue-50:hover{
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .desktop\:hover\:from-blue-100:hover{
    --tw-gradient-from: #dbeafe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .desktop\:hover\:from-blue-200:hover{
    --tw-gradient-from: #bfdbfe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .desktop\:hover\:from-blue-300:hover{
    --tw-gradient-from: #93c5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .desktop\:hover\:from-blue-400:hover{
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .desktop\:hover\:from-blue-500:hover{
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .desktop\:hover\:from-blue-600:hover{
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .desktop\:hover\:from-blue-700:hover{
    --tw-gradient-from: #1d4ed8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .desktop\:hover\:from-blue-800:hover{
    --tw-gradient-from: #1e40af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .desktop\:hover\:from-blue-900:hover{
    --tw-gradient-from: #1e3a8a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .desktop\:hover\:from-indigo-50:hover{
    --tw-gradient-from: #eef2ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .desktop\:hover\:from-indigo-100:hover{
    --tw-gradient-from: #e0e7ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .desktop\:hover\:from-indigo-200:hover{
    --tw-gradient-from: #c7d2fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .desktop\:hover\:from-indigo-300:hover{
    --tw-gradient-from: #a5b4fc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .desktop\:hover\:from-indigo-400:hover{
    --tw-gradient-from: #818cf8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .desktop\:hover\:from-indigo-500:hover{
    --tw-gradient-from: #6366f1;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .desktop\:hover\:from-indigo-600:hover{
    --tw-gradient-from: #4f46e5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .desktop\:hover\:from-indigo-700:hover{
    --tw-gradient-from: #4338ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .desktop\:hover\:from-indigo-800:hover{
    --tw-gradient-from: #3730a3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .desktop\:hover\:from-indigo-900:hover{
    --tw-gradient-from: #312e81;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .desktop\:hover\:from-purple-50:hover{
    --tw-gradient-from: #f5f3ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .desktop\:hover\:from-purple-100:hover{
    --tw-gradient-from: #ede9fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .desktop\:hover\:from-purple-200:hover{
    --tw-gradient-from: #ddd6fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .desktop\:hover\:from-purple-300:hover{
    --tw-gradient-from: #c4b5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .desktop\:hover\:from-purple-400:hover{
    --tw-gradient-from: #a78bfa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .desktop\:hover\:from-purple-500:hover{
    --tw-gradient-from: #8b5cf6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .desktop\:hover\:from-purple-600:hover{
    --tw-gradient-from: #7c3aed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .desktop\:hover\:from-purple-700:hover{
    --tw-gradient-from: #6d28d9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .desktop\:hover\:from-purple-800:hover{
    --tw-gradient-from: #5b21b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .desktop\:hover\:from-purple-900:hover{
    --tw-gradient-from: #4c1d95;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .desktop\:hover\:from-pink-50:hover{
    --tw-gradient-from: #fdf2f8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .desktop\:hover\:from-pink-100:hover{
    --tw-gradient-from: #fce7f3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .desktop\:hover\:from-pink-200:hover{
    --tw-gradient-from: #fbcfe8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .desktop\:hover\:from-pink-300:hover{
    --tw-gradient-from: #f9a8d4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .desktop\:hover\:from-pink-400:hover{
    --tw-gradient-from: #f472b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .desktop\:hover\:from-pink-500:hover{
    --tw-gradient-from: #ec4899;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .desktop\:hover\:from-pink-600:hover{
    --tw-gradient-from: #db2777;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .desktop\:hover\:from-pink-700:hover{
    --tw-gradient-from: #be185d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .desktop\:hover\:from-pink-800:hover{
    --tw-gradient-from: #9d174d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .desktop\:hover\:from-pink-900:hover{
    --tw-gradient-from: #831843;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .desktop\:hover\:from-brown-light:hover{
    --tw-gradient-from: #f0e9de;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .desktop\:hover\:from-brown-semi:hover{
    --tw-gradient-from: #ded6ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .desktop\:hover\:from-brown-default:hover{
    --tw-gradient-from: #7b6c5c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .desktop\:hover\:from-brown-dark:hover{
    --tw-gradient-from: #3d2706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .desktop\:hover\:from-success-light:hover{
    --tw-gradient-from: #91E09C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .desktop\:hover\:from-success-default:hover{
    --tw-gradient-from: #2D993C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .desktop\:hover\:from-success-dark:hover{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .desktop\:hover\:from-error-light:hover{
    --tw-gradient-from: #F98686;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .desktop\:hover\:from-error-default:hover{
    --tw-gradient-from: #CB0707;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .desktop\:hover\:from-error-dark:hover{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .desktop\:hover\:from-navigation-dark:hover{
    --tw-gradient-from: #ffcd00;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .desktop\:focus\:from-transparent:focus{
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .desktop\:focus\:from-current:focus{
    --tw-gradient-from: currentColor;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .desktop\:focus\:from-black:focus{
    --tw-gradient-from: #000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .desktop\:focus\:from-white:focus{
    --tw-gradient-from: #fff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .desktop\:focus\:from-gray-50:focus{
    --tw-gradient-from: #f9fafb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .desktop\:focus\:from-gray-100:focus{
    --tw-gradient-from: #f3f4f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .desktop\:focus\:from-gray-200:focus{
    --tw-gradient-from: #e5e7eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .desktop\:focus\:from-gray-300:focus{
    --tw-gradient-from: #d1d5db;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .desktop\:focus\:from-gray-400:focus{
    --tw-gradient-from: #9ca3af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .desktop\:focus\:from-gray-500:focus{
    --tw-gradient-from: #6b7280;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .desktop\:focus\:from-gray-600:focus{
    --tw-gradient-from: #4b5563;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .desktop\:focus\:from-gray-700:focus{
    --tw-gradient-from: #374151;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .desktop\:focus\:from-gray-800:focus{
    --tw-gradient-from: #1f2937;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .desktop\:focus\:from-gray-900:focus{
    --tw-gradient-from: #111827;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .desktop\:focus\:from-red-50:focus{
    --tw-gradient-from: #fef2f2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .desktop\:focus\:from-red-100:focus{
    --tw-gradient-from: #fee2e2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .desktop\:focus\:from-red-200:focus{
    --tw-gradient-from: #fecaca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .desktop\:focus\:from-red-300:focus{
    --tw-gradient-from: #fca5a5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .desktop\:focus\:from-red-400:focus{
    --tw-gradient-from: #f87171;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .desktop\:focus\:from-red-500:focus{
    --tw-gradient-from: #ef4444;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .desktop\:focus\:from-red-600:focus{
    --tw-gradient-from: #dc2626;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .desktop\:focus\:from-red-700:focus{
    --tw-gradient-from: #b91c1c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .desktop\:focus\:from-red-800:focus{
    --tw-gradient-from: #991b1b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .desktop\:focus\:from-red-900:focus{
    --tw-gradient-from: #7f1d1d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .desktop\:focus\:from-red-light:focus{
    --tw-gradient-from: #EA7A7A;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .desktop\:focus\:from-red-default:focus{
    --tw-gradient-from: #B90000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .desktop\:focus\:from-red-dark:focus{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .desktop\:focus\:from-yellow-50:focus{
    --tw-gradient-from: #fffbeb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .desktop\:focus\:from-yellow-100:focus{
    --tw-gradient-from: #fef3c7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .desktop\:focus\:from-yellow-200:focus{
    --tw-gradient-from: #fde68a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .desktop\:focus\:from-yellow-300:focus{
    --tw-gradient-from: #fcd34d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .desktop\:focus\:from-yellow-400:focus{
    --tw-gradient-from: #fbbf24;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .desktop\:focus\:from-yellow-500:focus{
    --tw-gradient-from: #f59e0b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .desktop\:focus\:from-yellow-600:focus{
    --tw-gradient-from: #d97706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .desktop\:focus\:from-yellow-700:focus{
    --tw-gradient-from: #b45309;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .desktop\:focus\:from-yellow-800:focus{
    --tw-gradient-from: #92400e;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .desktop\:focus\:from-yellow-900:focus{
    --tw-gradient-from: #78350f;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .desktop\:focus\:from-green-50:focus{
    --tw-gradient-from: #ecfdf5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .desktop\:focus\:from-green-100:focus{
    --tw-gradient-from: #d1fae5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .desktop\:focus\:from-green-200:focus{
    --tw-gradient-from: #a7f3d0;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .desktop\:focus\:from-green-300:focus{
    --tw-gradient-from: #6ee7b7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .desktop\:focus\:from-green-400:focus{
    --tw-gradient-from: #34d399;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .desktop\:focus\:from-green-500:focus{
    --tw-gradient-from: #10b981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .desktop\:focus\:from-green-600:focus{
    --tw-gradient-from: #059669;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .desktop\:focus\:from-green-700:focus{
    --tw-gradient-from: #047857;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .desktop\:focus\:from-green-800:focus{
    --tw-gradient-from: #065f46;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .desktop\:focus\:from-green-900:focus{
    --tw-gradient-from: #064e3b;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .desktop\:focus\:from-green-light:focus{
    --tw-gradient-from: #B5D1B9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .desktop\:focus\:from-green-default:focus{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .desktop\:focus\:from-green-dark:focus{
    --tw-gradient-from: #1C251E;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .desktop\:focus\:from-blue-50:focus{
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .desktop\:focus\:from-blue-100:focus{
    --tw-gradient-from: #dbeafe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .desktop\:focus\:from-blue-200:focus{
    --tw-gradient-from: #bfdbfe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .desktop\:focus\:from-blue-300:focus{
    --tw-gradient-from: #93c5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .desktop\:focus\:from-blue-400:focus{
    --tw-gradient-from: #60a5fa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .desktop\:focus\:from-blue-500:focus{
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .desktop\:focus\:from-blue-600:focus{
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .desktop\:focus\:from-blue-700:focus{
    --tw-gradient-from: #1d4ed8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .desktop\:focus\:from-blue-800:focus{
    --tw-gradient-from: #1e40af;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .desktop\:focus\:from-blue-900:focus{
    --tw-gradient-from: #1e3a8a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .desktop\:focus\:from-indigo-50:focus{
    --tw-gradient-from: #eef2ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .desktop\:focus\:from-indigo-100:focus{
    --tw-gradient-from: #e0e7ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .desktop\:focus\:from-indigo-200:focus{
    --tw-gradient-from: #c7d2fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .desktop\:focus\:from-indigo-300:focus{
    --tw-gradient-from: #a5b4fc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .desktop\:focus\:from-indigo-400:focus{
    --tw-gradient-from: #818cf8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .desktop\:focus\:from-indigo-500:focus{
    --tw-gradient-from: #6366f1;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .desktop\:focus\:from-indigo-600:focus{
    --tw-gradient-from: #4f46e5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .desktop\:focus\:from-indigo-700:focus{
    --tw-gradient-from: #4338ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .desktop\:focus\:from-indigo-800:focus{
    --tw-gradient-from: #3730a3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .desktop\:focus\:from-indigo-900:focus{
    --tw-gradient-from: #312e81;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .desktop\:focus\:from-purple-50:focus{
    --tw-gradient-from: #f5f3ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .desktop\:focus\:from-purple-100:focus{
    --tw-gradient-from: #ede9fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .desktop\:focus\:from-purple-200:focus{
    --tw-gradient-from: #ddd6fe;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .desktop\:focus\:from-purple-300:focus{
    --tw-gradient-from: #c4b5fd;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .desktop\:focus\:from-purple-400:focus{
    --tw-gradient-from: #a78bfa;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .desktop\:focus\:from-purple-500:focus{
    --tw-gradient-from: #8b5cf6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .desktop\:focus\:from-purple-600:focus{
    --tw-gradient-from: #7c3aed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .desktop\:focus\:from-purple-700:focus{
    --tw-gradient-from: #6d28d9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .desktop\:focus\:from-purple-800:focus{
    --tw-gradient-from: #5b21b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .desktop\:focus\:from-purple-900:focus{
    --tw-gradient-from: #4c1d95;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .desktop\:focus\:from-pink-50:focus{
    --tw-gradient-from: #fdf2f8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .desktop\:focus\:from-pink-100:focus{
    --tw-gradient-from: #fce7f3;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .desktop\:focus\:from-pink-200:focus{
    --tw-gradient-from: #fbcfe8;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .desktop\:focus\:from-pink-300:focus{
    --tw-gradient-from: #f9a8d4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .desktop\:focus\:from-pink-400:focus{
    --tw-gradient-from: #f472b6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .desktop\:focus\:from-pink-500:focus{
    --tw-gradient-from: #ec4899;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .desktop\:focus\:from-pink-600:focus{
    --tw-gradient-from: #db2777;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .desktop\:focus\:from-pink-700:focus{
    --tw-gradient-from: #be185d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .desktop\:focus\:from-pink-800:focus{
    --tw-gradient-from: #9d174d;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .desktop\:focus\:from-pink-900:focus{
    --tw-gradient-from: #831843;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .desktop\:focus\:from-brown-light:focus{
    --tw-gradient-from: #f0e9de;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .desktop\:focus\:from-brown-semi:focus{
    --tw-gradient-from: #ded6ca;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .desktop\:focus\:from-brown-default:focus{
    --tw-gradient-from: #7b6c5c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .desktop\:focus\:from-brown-dark:focus{
    --tw-gradient-from: #3d2706;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .desktop\:focus\:from-success-light:focus{
    --tw-gradient-from: #91E09C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .desktop\:focus\:from-success-default:focus{
    --tw-gradient-from: #2D993C;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .desktop\:focus\:from-success-dark:focus{
    --tw-gradient-from: #263B29;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .desktop\:focus\:from-error-light:focus{
    --tw-gradient-from: #F98686;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .desktop\:focus\:from-error-default:focus{
    --tw-gradient-from: #CB0707;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .desktop\:focus\:from-error-dark:focus{
    --tw-gradient-from: #580000;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .desktop\:focus\:from-navigation-dark:focus{
    --tw-gradient-from: #ffcd00;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .desktop\:via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .desktop\:via-current{
    --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .desktop\:via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .desktop\:via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .desktop\:via-gray-50{
    --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .desktop\:via-gray-100{
    --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .desktop\:via-gray-200{
    --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .desktop\:via-gray-300{
    --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .desktop\:via-gray-400{
    --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .desktop\:via-gray-500{
    --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .desktop\:via-gray-600{
    --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .desktop\:via-gray-700{
    --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .desktop\:via-gray-800{
    --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .desktop\:via-gray-900{
    --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .desktop\:via-red-50{
    --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .desktop\:via-red-100{
    --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .desktop\:via-red-200{
    --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .desktop\:via-red-300{
    --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .desktop\:via-red-400{
    --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .desktop\:via-red-500{
    --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .desktop\:via-red-600{
    --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .desktop\:via-red-700{
    --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .desktop\:via-red-800{
    --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .desktop\:via-red-900{
    --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .desktop\:via-red-light{
    --tw-gradient-stops: var(--tw-gradient-from), #EA7A7A, var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .desktop\:via-red-default{
    --tw-gradient-stops: var(--tw-gradient-from), #B90000, var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .desktop\:via-red-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .desktop\:via-yellow-50{
    --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .desktop\:via-yellow-100{
    --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .desktop\:via-yellow-200{
    --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .desktop\:via-yellow-300{
    --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .desktop\:via-yellow-400{
    --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .desktop\:via-yellow-500{
    --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .desktop\:via-yellow-600{
    --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .desktop\:via-yellow-700{
    --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .desktop\:via-yellow-800{
    --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .desktop\:via-yellow-900{
    --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .desktop\:via-green-50{
    --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .desktop\:via-green-100{
    --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .desktop\:via-green-200{
    --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .desktop\:via-green-300{
    --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .desktop\:via-green-400{
    --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .desktop\:via-green-500{
    --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .desktop\:via-green-600{
    --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .desktop\:via-green-700{
    --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .desktop\:via-green-800{
    --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .desktop\:via-green-900{
    --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .desktop\:via-green-light{
    --tw-gradient-stops: var(--tw-gradient-from), #B5D1B9, var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .desktop\:via-green-default{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .desktop\:via-green-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #1C251E, var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .desktop\:via-blue-50{
    --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .desktop\:via-blue-100{
    --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .desktop\:via-blue-200{
    --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .desktop\:via-blue-300{
    --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .desktop\:via-blue-400{
    --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .desktop\:via-blue-500{
    --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .desktop\:via-blue-600{
    --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .desktop\:via-blue-700{
    --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .desktop\:via-blue-800{
    --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .desktop\:via-blue-900{
    --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .desktop\:via-indigo-50{
    --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .desktop\:via-indigo-100{
    --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .desktop\:via-indigo-200{
    --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .desktop\:via-indigo-300{
    --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .desktop\:via-indigo-400{
    --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .desktop\:via-indigo-500{
    --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .desktop\:via-indigo-600{
    --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .desktop\:via-indigo-700{
    --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .desktop\:via-indigo-800{
    --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .desktop\:via-indigo-900{
    --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .desktop\:via-purple-50{
    --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .desktop\:via-purple-100{
    --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .desktop\:via-purple-200{
    --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .desktop\:via-purple-300{
    --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .desktop\:via-purple-400{
    --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .desktop\:via-purple-500{
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .desktop\:via-purple-600{
    --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .desktop\:via-purple-700{
    --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .desktop\:via-purple-800{
    --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .desktop\:via-purple-900{
    --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .desktop\:via-pink-50{
    --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .desktop\:via-pink-100{
    --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .desktop\:via-pink-200{
    --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .desktop\:via-pink-300{
    --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .desktop\:via-pink-400{
    --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .desktop\:via-pink-500{
    --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .desktop\:via-pink-600{
    --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .desktop\:via-pink-700{
    --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .desktop\:via-pink-800{
    --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .desktop\:via-pink-900{
    --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .desktop\:via-brown-light{
    --tw-gradient-stops: var(--tw-gradient-from), #f0e9de, var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .desktop\:via-brown-semi{
    --tw-gradient-stops: var(--tw-gradient-from), #ded6ca, var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .desktop\:via-brown-default{
    --tw-gradient-stops: var(--tw-gradient-from), #7b6c5c, var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .desktop\:via-brown-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #3d2706, var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .desktop\:via-success-light{
    --tw-gradient-stops: var(--tw-gradient-from), #91E09C, var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .desktop\:via-success-default{
    --tw-gradient-stops: var(--tw-gradient-from), #2D993C, var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .desktop\:via-success-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .desktop\:via-error-light{
    --tw-gradient-stops: var(--tw-gradient-from), #F98686, var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .desktop\:via-error-default{
    --tw-gradient-stops: var(--tw-gradient-from), #CB0707, var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .desktop\:via-error-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .desktop\:via-navigation-dark{
    --tw-gradient-stops: var(--tw-gradient-from), #ffcd00, var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .desktop\:hover\:via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .desktop\:hover\:via-current:hover{
    --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .desktop\:hover\:via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .desktop\:hover\:via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .desktop\:hover\:via-gray-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .desktop\:hover\:via-gray-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .desktop\:hover\:via-gray-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .desktop\:hover\:via-gray-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .desktop\:hover\:via-gray-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .desktop\:hover\:via-gray-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .desktop\:hover\:via-gray-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .desktop\:hover\:via-gray-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .desktop\:hover\:via-gray-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .desktop\:hover\:via-gray-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .desktop\:hover\:via-red-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .desktop\:hover\:via-red-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .desktop\:hover\:via-red-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .desktop\:hover\:via-red-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .desktop\:hover\:via-red-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .desktop\:hover\:via-red-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .desktop\:hover\:via-red-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .desktop\:hover\:via-red-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .desktop\:hover\:via-red-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .desktop\:hover\:via-red-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .desktop\:hover\:via-red-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #EA7A7A, var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .desktop\:hover\:via-red-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B90000, var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .desktop\:hover\:via-red-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .desktop\:hover\:via-yellow-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .desktop\:hover\:via-yellow-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .desktop\:hover\:via-yellow-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .desktop\:hover\:via-yellow-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .desktop\:hover\:via-yellow-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .desktop\:hover\:via-yellow-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .desktop\:hover\:via-yellow-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .desktop\:hover\:via-yellow-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .desktop\:hover\:via-yellow-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .desktop\:hover\:via-yellow-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .desktop\:hover\:via-green-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .desktop\:hover\:via-green-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .desktop\:hover\:via-green-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .desktop\:hover\:via-green-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .desktop\:hover\:via-green-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .desktop\:hover\:via-green-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .desktop\:hover\:via-green-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .desktop\:hover\:via-green-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .desktop\:hover\:via-green-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .desktop\:hover\:via-green-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .desktop\:hover\:via-green-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #B5D1B9, var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .desktop\:hover\:via-green-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .desktop\:hover\:via-green-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1C251E, var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .desktop\:hover\:via-blue-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .desktop\:hover\:via-blue-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .desktop\:hover\:via-blue-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .desktop\:hover\:via-blue-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .desktop\:hover\:via-blue-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .desktop\:hover\:via-blue-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .desktop\:hover\:via-blue-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .desktop\:hover\:via-blue-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .desktop\:hover\:via-blue-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .desktop\:hover\:via-blue-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .desktop\:hover\:via-indigo-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .desktop\:hover\:via-indigo-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .desktop\:hover\:via-indigo-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .desktop\:hover\:via-indigo-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .desktop\:hover\:via-indigo-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .desktop\:hover\:via-indigo-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .desktop\:hover\:via-indigo-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .desktop\:hover\:via-indigo-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .desktop\:hover\:via-indigo-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .desktop\:hover\:via-indigo-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .desktop\:hover\:via-purple-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .desktop\:hover\:via-purple-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .desktop\:hover\:via-purple-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .desktop\:hover\:via-purple-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .desktop\:hover\:via-purple-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .desktop\:hover\:via-purple-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .desktop\:hover\:via-purple-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .desktop\:hover\:via-purple-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .desktop\:hover\:via-purple-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .desktop\:hover\:via-purple-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .desktop\:hover\:via-pink-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .desktop\:hover\:via-pink-100:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .desktop\:hover\:via-pink-200:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .desktop\:hover\:via-pink-300:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .desktop\:hover\:via-pink-400:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .desktop\:hover\:via-pink-500:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .desktop\:hover\:via-pink-600:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .desktop\:hover\:via-pink-700:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .desktop\:hover\:via-pink-800:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .desktop\:hover\:via-pink-900:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .desktop\:hover\:via-brown-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #f0e9de, var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .desktop\:hover\:via-brown-semi:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ded6ca, var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .desktop\:hover\:via-brown-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #7b6c5c, var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .desktop\:hover\:via-brown-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #3d2706, var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .desktop\:hover\:via-success-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #91E09C, var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .desktop\:hover\:via-success-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2D993C, var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .desktop\:hover\:via-success-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .desktop\:hover\:via-error-light:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F98686, var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .desktop\:hover\:via-error-default:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #CB0707, var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .desktop\:hover\:via-error-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .desktop\:hover\:via-navigation-dark:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #ffcd00, var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .desktop\:focus\:via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .desktop\:focus\:via-current:focus{
    --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .desktop\:focus\:via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0));
  }

  .desktop\:focus\:via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0));
  }

  .desktop\:focus\:via-gray-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0));
  }

  .desktop\:focus\:via-gray-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0));
  }

  .desktop\:focus\:via-gray-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0));
  }

  .desktop\:focus\:via-gray-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0));
  }

  .desktop\:focus\:via-gray-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0));
  }

  .desktop\:focus\:via-gray-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0));
  }

  .desktop\:focus\:via-gray-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0));
  }

  .desktop\:focus\:via-gray-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0));
  }

  .desktop\:focus\:via-gray-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0));
  }

  .desktop\:focus\:via-gray-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0));
  }

  .desktop\:focus\:via-red-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
  }

  .desktop\:focus\:via-red-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0));
  }

  .desktop\:focus\:via-red-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0));
  }

  .desktop\:focus\:via-red-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0));
  }

  .desktop\:focus\:via-red-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0));
  }

  .desktop\:focus\:via-red-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0));
  }

  .desktop\:focus\:via-red-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0));
  }

  .desktop\:focus\:via-red-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0));
  }

  .desktop\:focus\:via-red-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0));
  }

  .desktop\:focus\:via-red-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0));
  }

  .desktop\:focus\:via-red-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #EA7A7A, var(--tw-gradient-to, rgba(234, 122, 122, 0));
  }

  .desktop\:focus\:via-red-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B90000, var(--tw-gradient-to, rgba(185, 0, 0, 0));
  }

  .desktop\:focus\:via-red-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .desktop\:focus\:via-yellow-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
  }

  .desktop\:focus\:via-yellow-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0));
  }

  .desktop\:focus\:via-yellow-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0));
  }

  .desktop\:focus\:via-yellow-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0));
  }

  .desktop\:focus\:via-yellow-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0));
  }

  .desktop\:focus\:via-yellow-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0));
  }

  .desktop\:focus\:via-yellow-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0));
  }

  .desktop\:focus\:via-yellow-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0));
  }

  .desktop\:focus\:via-yellow-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0));
  }

  .desktop\:focus\:via-yellow-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0));
  }

  .desktop\:focus\:via-green-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0));
  }

  .desktop\:focus\:via-green-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0));
  }

  .desktop\:focus\:via-green-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0));
  }

  .desktop\:focus\:via-green-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0));
  }

  .desktop\:focus\:via-green-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0));
  }

  .desktop\:focus\:via-green-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0));
  }

  .desktop\:focus\:via-green-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0));
  }

  .desktop\:focus\:via-green-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0));
  }

  .desktop\:focus\:via-green-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0));
  }

  .desktop\:focus\:via-green-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0));
  }

  .desktop\:focus\:via-green-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #B5D1B9, var(--tw-gradient-to, rgba(181, 209, 185, 0));
  }

  .desktop\:focus\:via-green-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .desktop\:focus\:via-green-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1C251E, var(--tw-gradient-to, rgba(28, 37, 30, 0));
  }

  .desktop\:focus\:via-blue-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
  }

  .desktop\:focus\:via-blue-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0));
  }

  .desktop\:focus\:via-blue-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0));
  }

  .desktop\:focus\:via-blue-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
  }

  .desktop\:focus\:via-blue-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0));
  }

  .desktop\:focus\:via-blue-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0));
  }

  .desktop\:focus\:via-blue-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0));
  }

  .desktop\:focus\:via-blue-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0));
  }

  .desktop\:focus\:via-blue-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0));
  }

  .desktop\:focus\:via-blue-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0));
  }

  .desktop\:focus\:via-indigo-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0));
  }

  .desktop\:focus\:via-indigo-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0));
  }

  .desktop\:focus\:via-indigo-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0));
  }

  .desktop\:focus\:via-indigo-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0));
  }

  .desktop\:focus\:via-indigo-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0));
  }

  .desktop\:focus\:via-indigo-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0));
  }

  .desktop\:focus\:via-indigo-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0));
  }

  .desktop\:focus\:via-indigo-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0));
  }

  .desktop\:focus\:via-indigo-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0));
  }

  .desktop\:focus\:via-indigo-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0));
  }

  .desktop\:focus\:via-purple-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0));
  }

  .desktop\:focus\:via-purple-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0));
  }

  .desktop\:focus\:via-purple-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0));
  }

  .desktop\:focus\:via-purple-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0));
  }

  .desktop\:focus\:via-purple-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0));
  }

  .desktop\:focus\:via-purple-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0));
  }

  .desktop\:focus\:via-purple-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0));
  }

  .desktop\:focus\:via-purple-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0));
  }

  .desktop\:focus\:via-purple-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0));
  }

  .desktop\:focus\:via-purple-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0));
  }

  .desktop\:focus\:via-pink-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0));
  }

  .desktop\:focus\:via-pink-100:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0));
  }

  .desktop\:focus\:via-pink-200:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0));
  }

  .desktop\:focus\:via-pink-300:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0));
  }

  .desktop\:focus\:via-pink-400:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0));
  }

  .desktop\:focus\:via-pink-500:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0));
  }

  .desktop\:focus\:via-pink-600:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0));
  }

  .desktop\:focus\:via-pink-700:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0));
  }

  .desktop\:focus\:via-pink-800:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0));
  }

  .desktop\:focus\:via-pink-900:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0));
  }

  .desktop\:focus\:via-brown-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #f0e9de, var(--tw-gradient-to, rgba(240, 233, 222, 0));
  }

  .desktop\:focus\:via-brown-semi:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ded6ca, var(--tw-gradient-to, rgba(222, 214, 202, 0));
  }

  .desktop\:focus\:via-brown-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #7b6c5c, var(--tw-gradient-to, rgba(123, 108, 92, 0));
  }

  .desktop\:focus\:via-brown-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #3d2706, var(--tw-gradient-to, rgba(61, 39, 6, 0));
  }

  .desktop\:focus\:via-success-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #91E09C, var(--tw-gradient-to, rgba(145, 224, 156, 0));
  }

  .desktop\:focus\:via-success-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2D993C, var(--tw-gradient-to, rgba(45, 153, 60, 0));
  }

  .desktop\:focus\:via-success-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #263B29, var(--tw-gradient-to, rgba(38, 59, 41, 0));
  }

  .desktop\:focus\:via-error-light:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F98686, var(--tw-gradient-to, rgba(249, 134, 134, 0));
  }

  .desktop\:focus\:via-error-default:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #CB0707, var(--tw-gradient-to, rgba(203, 7, 7, 0));
  }

  .desktop\:focus\:via-error-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #580000, var(--tw-gradient-to, rgba(88, 0, 0, 0));
  }

  .desktop\:focus\:via-navigation-dark:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #ffcd00, var(--tw-gradient-to, rgba(255, 205, 0, 0));
  }

  .desktop\:to-transparent{
    --tw-gradient-to: transparent;
  }

  .desktop\:to-current{
    --tw-gradient-to: currentColor;
  }

  .desktop\:to-black{
    --tw-gradient-to: #000;
  }

  .desktop\:to-white{
    --tw-gradient-to: #fff;
  }

  .desktop\:to-gray-50{
    --tw-gradient-to: #f9fafb;
  }

  .desktop\:to-gray-100{
    --tw-gradient-to: #f3f4f6;
  }

  .desktop\:to-gray-200{
    --tw-gradient-to: #e5e7eb;
  }

  .desktop\:to-gray-300{
    --tw-gradient-to: #d1d5db;
  }

  .desktop\:to-gray-400{
    --tw-gradient-to: #9ca3af;
  }

  .desktop\:to-gray-500{
    --tw-gradient-to: #6b7280;
  }

  .desktop\:to-gray-600{
    --tw-gradient-to: #4b5563;
  }

  .desktop\:to-gray-700{
    --tw-gradient-to: #374151;
  }

  .desktop\:to-gray-800{
    --tw-gradient-to: #1f2937;
  }

  .desktop\:to-gray-900{
    --tw-gradient-to: #111827;
  }

  .desktop\:to-red-50{
    --tw-gradient-to: #fef2f2;
  }

  .desktop\:to-red-100{
    --tw-gradient-to: #fee2e2;
  }

  .desktop\:to-red-200{
    --tw-gradient-to: #fecaca;
  }

  .desktop\:to-red-300{
    --tw-gradient-to: #fca5a5;
  }

  .desktop\:to-red-400{
    --tw-gradient-to: #f87171;
  }

  .desktop\:to-red-500{
    --tw-gradient-to: #ef4444;
  }

  .desktop\:to-red-600{
    --tw-gradient-to: #dc2626;
  }

  .desktop\:to-red-700{
    --tw-gradient-to: #b91c1c;
  }

  .desktop\:to-red-800{
    --tw-gradient-to: #991b1b;
  }

  .desktop\:to-red-900{
    --tw-gradient-to: #7f1d1d;
  }

  .desktop\:to-red-light{
    --tw-gradient-to: #EA7A7A;
  }

  .desktop\:to-red-default{
    --tw-gradient-to: #B90000;
  }

  .desktop\:to-red-dark{
    --tw-gradient-to: #580000;
  }

  .desktop\:to-yellow-50{
    --tw-gradient-to: #fffbeb;
  }

  .desktop\:to-yellow-100{
    --tw-gradient-to: #fef3c7;
  }

  .desktop\:to-yellow-200{
    --tw-gradient-to: #fde68a;
  }

  .desktop\:to-yellow-300{
    --tw-gradient-to: #fcd34d;
  }

  .desktop\:to-yellow-400{
    --tw-gradient-to: #fbbf24;
  }

  .desktop\:to-yellow-500{
    --tw-gradient-to: #f59e0b;
  }

  .desktop\:to-yellow-600{
    --tw-gradient-to: #d97706;
  }

  .desktop\:to-yellow-700{
    --tw-gradient-to: #b45309;
  }

  .desktop\:to-yellow-800{
    --tw-gradient-to: #92400e;
  }

  .desktop\:to-yellow-900{
    --tw-gradient-to: #78350f;
  }

  .desktop\:to-green-50{
    --tw-gradient-to: #ecfdf5;
  }

  .desktop\:to-green-100{
    --tw-gradient-to: #d1fae5;
  }

  .desktop\:to-green-200{
    --tw-gradient-to: #a7f3d0;
  }

  .desktop\:to-green-300{
    --tw-gradient-to: #6ee7b7;
  }

  .desktop\:to-green-400{
    --tw-gradient-to: #34d399;
  }

  .desktop\:to-green-500{
    --tw-gradient-to: #10b981;
  }

  .desktop\:to-green-600{
    --tw-gradient-to: #059669;
  }

  .desktop\:to-green-700{
    --tw-gradient-to: #047857;
  }

  .desktop\:to-green-800{
    --tw-gradient-to: #065f46;
  }

  .desktop\:to-green-900{
    --tw-gradient-to: #064e3b;
  }

  .desktop\:to-green-light{
    --tw-gradient-to: #B5D1B9;
  }

  .desktop\:to-green-default{
    --tw-gradient-to: #263B29;
  }

  .desktop\:to-green-dark{
    --tw-gradient-to: #1C251E;
  }

  .desktop\:to-blue-50{
    --tw-gradient-to: #eff6ff;
  }

  .desktop\:to-blue-100{
    --tw-gradient-to: #dbeafe;
  }

  .desktop\:to-blue-200{
    --tw-gradient-to: #bfdbfe;
  }

  .desktop\:to-blue-300{
    --tw-gradient-to: #93c5fd;
  }

  .desktop\:to-blue-400{
    --tw-gradient-to: #60a5fa;
  }

  .desktop\:to-blue-500{
    --tw-gradient-to: #3b82f6;
  }

  .desktop\:to-blue-600{
    --tw-gradient-to: #2563eb;
  }

  .desktop\:to-blue-700{
    --tw-gradient-to: #1d4ed8;
  }

  .desktop\:to-blue-800{
    --tw-gradient-to: #1e40af;
  }

  .desktop\:to-blue-900{
    --tw-gradient-to: #1e3a8a;
  }

  .desktop\:to-indigo-50{
    --tw-gradient-to: #eef2ff;
  }

  .desktop\:to-indigo-100{
    --tw-gradient-to: #e0e7ff;
  }

  .desktop\:to-indigo-200{
    --tw-gradient-to: #c7d2fe;
  }

  .desktop\:to-indigo-300{
    --tw-gradient-to: #a5b4fc;
  }

  .desktop\:to-indigo-400{
    --tw-gradient-to: #818cf8;
  }

  .desktop\:to-indigo-500{
    --tw-gradient-to: #6366f1;
  }

  .desktop\:to-indigo-600{
    --tw-gradient-to: #4f46e5;
  }

  .desktop\:to-indigo-700{
    --tw-gradient-to: #4338ca;
  }

  .desktop\:to-indigo-800{
    --tw-gradient-to: #3730a3;
  }

  .desktop\:to-indigo-900{
    --tw-gradient-to: #312e81;
  }

  .desktop\:to-purple-50{
    --tw-gradient-to: #f5f3ff;
  }

  .desktop\:to-purple-100{
    --tw-gradient-to: #ede9fe;
  }

  .desktop\:to-purple-200{
    --tw-gradient-to: #ddd6fe;
  }

  .desktop\:to-purple-300{
    --tw-gradient-to: #c4b5fd;
  }

  .desktop\:to-purple-400{
    --tw-gradient-to: #a78bfa;
  }

  .desktop\:to-purple-500{
    --tw-gradient-to: #8b5cf6;
  }

  .desktop\:to-purple-600{
    --tw-gradient-to: #7c3aed;
  }

  .desktop\:to-purple-700{
    --tw-gradient-to: #6d28d9;
  }

  .desktop\:to-purple-800{
    --tw-gradient-to: #5b21b6;
  }

  .desktop\:to-purple-900{
    --tw-gradient-to: #4c1d95;
  }

  .desktop\:to-pink-50{
    --tw-gradient-to: #fdf2f8;
  }

  .desktop\:to-pink-100{
    --tw-gradient-to: #fce7f3;
  }

  .desktop\:to-pink-200{
    --tw-gradient-to: #fbcfe8;
  }

  .desktop\:to-pink-300{
    --tw-gradient-to: #f9a8d4;
  }

  .desktop\:to-pink-400{
    --tw-gradient-to: #f472b6;
  }

  .desktop\:to-pink-500{
    --tw-gradient-to: #ec4899;
  }

  .desktop\:to-pink-600{
    --tw-gradient-to: #db2777;
  }

  .desktop\:to-pink-700{
    --tw-gradient-to: #be185d;
  }

  .desktop\:to-pink-800{
    --tw-gradient-to: #9d174d;
  }

  .desktop\:to-pink-900{
    --tw-gradient-to: #831843;
  }

  .desktop\:to-brown-light{
    --tw-gradient-to: #f0e9de;
  }

  .desktop\:to-brown-semi{
    --tw-gradient-to: #ded6ca;
  }

  .desktop\:to-brown-default{
    --tw-gradient-to: #7b6c5c;
  }

  .desktop\:to-brown-dark{
    --tw-gradient-to: #3d2706;
  }

  .desktop\:to-success-light{
    --tw-gradient-to: #91E09C;
  }

  .desktop\:to-success-default{
    --tw-gradient-to: #2D993C;
  }

  .desktop\:to-success-dark{
    --tw-gradient-to: #263B29;
  }

  .desktop\:to-error-light{
    --tw-gradient-to: #F98686;
  }

  .desktop\:to-error-default{
    --tw-gradient-to: #CB0707;
  }

  .desktop\:to-error-dark{
    --tw-gradient-to: #580000;
  }

  .desktop\:to-navigation-dark{
    --tw-gradient-to: #ffcd00;
  }

  .desktop\:hover\:to-transparent:hover{
    --tw-gradient-to: transparent;
  }

  .desktop\:hover\:to-current:hover{
    --tw-gradient-to: currentColor;
  }

  .desktop\:hover\:to-black:hover{
    --tw-gradient-to: #000;
  }

  .desktop\:hover\:to-white:hover{
    --tw-gradient-to: #fff;
  }

  .desktop\:hover\:to-gray-50:hover{
    --tw-gradient-to: #f9fafb;
  }

  .desktop\:hover\:to-gray-100:hover{
    --tw-gradient-to: #f3f4f6;
  }

  .desktop\:hover\:to-gray-200:hover{
    --tw-gradient-to: #e5e7eb;
  }

  .desktop\:hover\:to-gray-300:hover{
    --tw-gradient-to: #d1d5db;
  }

  .desktop\:hover\:to-gray-400:hover{
    --tw-gradient-to: #9ca3af;
  }

  .desktop\:hover\:to-gray-500:hover{
    --tw-gradient-to: #6b7280;
  }

  .desktop\:hover\:to-gray-600:hover{
    --tw-gradient-to: #4b5563;
  }

  .desktop\:hover\:to-gray-700:hover{
    --tw-gradient-to: #374151;
  }

  .desktop\:hover\:to-gray-800:hover{
    --tw-gradient-to: #1f2937;
  }

  .desktop\:hover\:to-gray-900:hover{
    --tw-gradient-to: #111827;
  }

  .desktop\:hover\:to-red-50:hover{
    --tw-gradient-to: #fef2f2;
  }

  .desktop\:hover\:to-red-100:hover{
    --tw-gradient-to: #fee2e2;
  }

  .desktop\:hover\:to-red-200:hover{
    --tw-gradient-to: #fecaca;
  }

  .desktop\:hover\:to-red-300:hover{
    --tw-gradient-to: #fca5a5;
  }

  .desktop\:hover\:to-red-400:hover{
    --tw-gradient-to: #f87171;
  }

  .desktop\:hover\:to-red-500:hover{
    --tw-gradient-to: #ef4444;
  }

  .desktop\:hover\:to-red-600:hover{
    --tw-gradient-to: #dc2626;
  }

  .desktop\:hover\:to-red-700:hover{
    --tw-gradient-to: #b91c1c;
  }

  .desktop\:hover\:to-red-800:hover{
    --tw-gradient-to: #991b1b;
  }

  .desktop\:hover\:to-red-900:hover{
    --tw-gradient-to: #7f1d1d;
  }

  .desktop\:hover\:to-red-light:hover{
    --tw-gradient-to: #EA7A7A;
  }

  .desktop\:hover\:to-red-default:hover{
    --tw-gradient-to: #B90000;
  }

  .desktop\:hover\:to-red-dark:hover{
    --tw-gradient-to: #580000;
  }

  .desktop\:hover\:to-yellow-50:hover{
    --tw-gradient-to: #fffbeb;
  }

  .desktop\:hover\:to-yellow-100:hover{
    --tw-gradient-to: #fef3c7;
  }

  .desktop\:hover\:to-yellow-200:hover{
    --tw-gradient-to: #fde68a;
  }

  .desktop\:hover\:to-yellow-300:hover{
    --tw-gradient-to: #fcd34d;
  }

  .desktop\:hover\:to-yellow-400:hover{
    --tw-gradient-to: #fbbf24;
  }

  .desktop\:hover\:to-yellow-500:hover{
    --tw-gradient-to: #f59e0b;
  }

  .desktop\:hover\:to-yellow-600:hover{
    --tw-gradient-to: #d97706;
  }

  .desktop\:hover\:to-yellow-700:hover{
    --tw-gradient-to: #b45309;
  }

  .desktop\:hover\:to-yellow-800:hover{
    --tw-gradient-to: #92400e;
  }

  .desktop\:hover\:to-yellow-900:hover{
    --tw-gradient-to: #78350f;
  }

  .desktop\:hover\:to-green-50:hover{
    --tw-gradient-to: #ecfdf5;
  }

  .desktop\:hover\:to-green-100:hover{
    --tw-gradient-to: #d1fae5;
  }

  .desktop\:hover\:to-green-200:hover{
    --tw-gradient-to: #a7f3d0;
  }

  .desktop\:hover\:to-green-300:hover{
    --tw-gradient-to: #6ee7b7;
  }

  .desktop\:hover\:to-green-400:hover{
    --tw-gradient-to: #34d399;
  }

  .desktop\:hover\:to-green-500:hover{
    --tw-gradient-to: #10b981;
  }

  .desktop\:hover\:to-green-600:hover{
    --tw-gradient-to: #059669;
  }

  .desktop\:hover\:to-green-700:hover{
    --tw-gradient-to: #047857;
  }

  .desktop\:hover\:to-green-800:hover{
    --tw-gradient-to: #065f46;
  }

  .desktop\:hover\:to-green-900:hover{
    --tw-gradient-to: #064e3b;
  }

  .desktop\:hover\:to-green-light:hover{
    --tw-gradient-to: #B5D1B9;
  }

  .desktop\:hover\:to-green-default:hover{
    --tw-gradient-to: #263B29;
  }

  .desktop\:hover\:to-green-dark:hover{
    --tw-gradient-to: #1C251E;
  }

  .desktop\:hover\:to-blue-50:hover{
    --tw-gradient-to: #eff6ff;
  }

  .desktop\:hover\:to-blue-100:hover{
    --tw-gradient-to: #dbeafe;
  }

  .desktop\:hover\:to-blue-200:hover{
    --tw-gradient-to: #bfdbfe;
  }

  .desktop\:hover\:to-blue-300:hover{
    --tw-gradient-to: #93c5fd;
  }

  .desktop\:hover\:to-blue-400:hover{
    --tw-gradient-to: #60a5fa;
  }

  .desktop\:hover\:to-blue-500:hover{
    --tw-gradient-to: #3b82f6;
  }

  .desktop\:hover\:to-blue-600:hover{
    --tw-gradient-to: #2563eb;
  }

  .desktop\:hover\:to-blue-700:hover{
    --tw-gradient-to: #1d4ed8;
  }

  .desktop\:hover\:to-blue-800:hover{
    --tw-gradient-to: #1e40af;
  }

  .desktop\:hover\:to-blue-900:hover{
    --tw-gradient-to: #1e3a8a;
  }

  .desktop\:hover\:to-indigo-50:hover{
    --tw-gradient-to: #eef2ff;
  }

  .desktop\:hover\:to-indigo-100:hover{
    --tw-gradient-to: #e0e7ff;
  }

  .desktop\:hover\:to-indigo-200:hover{
    --tw-gradient-to: #c7d2fe;
  }

  .desktop\:hover\:to-indigo-300:hover{
    --tw-gradient-to: #a5b4fc;
  }

  .desktop\:hover\:to-indigo-400:hover{
    --tw-gradient-to: #818cf8;
  }

  .desktop\:hover\:to-indigo-500:hover{
    --tw-gradient-to: #6366f1;
  }

  .desktop\:hover\:to-indigo-600:hover{
    --tw-gradient-to: #4f46e5;
  }

  .desktop\:hover\:to-indigo-700:hover{
    --tw-gradient-to: #4338ca;
  }

  .desktop\:hover\:to-indigo-800:hover{
    --tw-gradient-to: #3730a3;
  }

  .desktop\:hover\:to-indigo-900:hover{
    --tw-gradient-to: #312e81;
  }

  .desktop\:hover\:to-purple-50:hover{
    --tw-gradient-to: #f5f3ff;
  }

  .desktop\:hover\:to-purple-100:hover{
    --tw-gradient-to: #ede9fe;
  }

  .desktop\:hover\:to-purple-200:hover{
    --tw-gradient-to: #ddd6fe;
  }

  .desktop\:hover\:to-purple-300:hover{
    --tw-gradient-to: #c4b5fd;
  }

  .desktop\:hover\:to-purple-400:hover{
    --tw-gradient-to: #a78bfa;
  }

  .desktop\:hover\:to-purple-500:hover{
    --tw-gradient-to: #8b5cf6;
  }

  .desktop\:hover\:to-purple-600:hover{
    --tw-gradient-to: #7c3aed;
  }

  .desktop\:hover\:to-purple-700:hover{
    --tw-gradient-to: #6d28d9;
  }

  .desktop\:hover\:to-purple-800:hover{
    --tw-gradient-to: #5b21b6;
  }

  .desktop\:hover\:to-purple-900:hover{
    --tw-gradient-to: #4c1d95;
  }

  .desktop\:hover\:to-pink-50:hover{
    --tw-gradient-to: #fdf2f8;
  }

  .desktop\:hover\:to-pink-100:hover{
    --tw-gradient-to: #fce7f3;
  }

  .desktop\:hover\:to-pink-200:hover{
    --tw-gradient-to: #fbcfe8;
  }

  .desktop\:hover\:to-pink-300:hover{
    --tw-gradient-to: #f9a8d4;
  }

  .desktop\:hover\:to-pink-400:hover{
    --tw-gradient-to: #f472b6;
  }

  .desktop\:hover\:to-pink-500:hover{
    --tw-gradient-to: #ec4899;
  }

  .desktop\:hover\:to-pink-600:hover{
    --tw-gradient-to: #db2777;
  }

  .desktop\:hover\:to-pink-700:hover{
    --tw-gradient-to: #be185d;
  }

  .desktop\:hover\:to-pink-800:hover{
    --tw-gradient-to: #9d174d;
  }

  .desktop\:hover\:to-pink-900:hover{
    --tw-gradient-to: #831843;
  }

  .desktop\:hover\:to-brown-light:hover{
    --tw-gradient-to: #f0e9de;
  }

  .desktop\:hover\:to-brown-semi:hover{
    --tw-gradient-to: #ded6ca;
  }

  .desktop\:hover\:to-brown-default:hover{
    --tw-gradient-to: #7b6c5c;
  }

  .desktop\:hover\:to-brown-dark:hover{
    --tw-gradient-to: #3d2706;
  }

  .desktop\:hover\:to-success-light:hover{
    --tw-gradient-to: #91E09C;
  }

  .desktop\:hover\:to-success-default:hover{
    --tw-gradient-to: #2D993C;
  }

  .desktop\:hover\:to-success-dark:hover{
    --tw-gradient-to: #263B29;
  }

  .desktop\:hover\:to-error-light:hover{
    --tw-gradient-to: #F98686;
  }

  .desktop\:hover\:to-error-default:hover{
    --tw-gradient-to: #CB0707;
  }

  .desktop\:hover\:to-error-dark:hover{
    --tw-gradient-to: #580000;
  }

  .desktop\:hover\:to-navigation-dark:hover{
    --tw-gradient-to: #ffcd00;
  }

  .desktop\:focus\:to-transparent:focus{
    --tw-gradient-to: transparent;
  }

  .desktop\:focus\:to-current:focus{
    --tw-gradient-to: currentColor;
  }

  .desktop\:focus\:to-black:focus{
    --tw-gradient-to: #000;
  }

  .desktop\:focus\:to-white:focus{
    --tw-gradient-to: #fff;
  }

  .desktop\:focus\:to-gray-50:focus{
    --tw-gradient-to: #f9fafb;
  }

  .desktop\:focus\:to-gray-100:focus{
    --tw-gradient-to: #f3f4f6;
  }

  .desktop\:focus\:to-gray-200:focus{
    --tw-gradient-to: #e5e7eb;
  }

  .desktop\:focus\:to-gray-300:focus{
    --tw-gradient-to: #d1d5db;
  }

  .desktop\:focus\:to-gray-400:focus{
    --tw-gradient-to: #9ca3af;
  }

  .desktop\:focus\:to-gray-500:focus{
    --tw-gradient-to: #6b7280;
  }

  .desktop\:focus\:to-gray-600:focus{
    --tw-gradient-to: #4b5563;
  }

  .desktop\:focus\:to-gray-700:focus{
    --tw-gradient-to: #374151;
  }

  .desktop\:focus\:to-gray-800:focus{
    --tw-gradient-to: #1f2937;
  }

  .desktop\:focus\:to-gray-900:focus{
    --tw-gradient-to: #111827;
  }

  .desktop\:focus\:to-red-50:focus{
    --tw-gradient-to: #fef2f2;
  }

  .desktop\:focus\:to-red-100:focus{
    --tw-gradient-to: #fee2e2;
  }

  .desktop\:focus\:to-red-200:focus{
    --tw-gradient-to: #fecaca;
  }

  .desktop\:focus\:to-red-300:focus{
    --tw-gradient-to: #fca5a5;
  }

  .desktop\:focus\:to-red-400:focus{
    --tw-gradient-to: #f87171;
  }

  .desktop\:focus\:to-red-500:focus{
    --tw-gradient-to: #ef4444;
  }

  .desktop\:focus\:to-red-600:focus{
    --tw-gradient-to: #dc2626;
  }

  .desktop\:focus\:to-red-700:focus{
    --tw-gradient-to: #b91c1c;
  }

  .desktop\:focus\:to-red-800:focus{
    --tw-gradient-to: #991b1b;
  }

  .desktop\:focus\:to-red-900:focus{
    --tw-gradient-to: #7f1d1d;
  }

  .desktop\:focus\:to-red-light:focus{
    --tw-gradient-to: #EA7A7A;
  }

  .desktop\:focus\:to-red-default:focus{
    --tw-gradient-to: #B90000;
  }

  .desktop\:focus\:to-red-dark:focus{
    --tw-gradient-to: #580000;
  }

  .desktop\:focus\:to-yellow-50:focus{
    --tw-gradient-to: #fffbeb;
  }

  .desktop\:focus\:to-yellow-100:focus{
    --tw-gradient-to: #fef3c7;
  }

  .desktop\:focus\:to-yellow-200:focus{
    --tw-gradient-to: #fde68a;
  }

  .desktop\:focus\:to-yellow-300:focus{
    --tw-gradient-to: #fcd34d;
  }

  .desktop\:focus\:to-yellow-400:focus{
    --tw-gradient-to: #fbbf24;
  }

  .desktop\:focus\:to-yellow-500:focus{
    --tw-gradient-to: #f59e0b;
  }

  .desktop\:focus\:to-yellow-600:focus{
    --tw-gradient-to: #d97706;
  }

  .desktop\:focus\:to-yellow-700:focus{
    --tw-gradient-to: #b45309;
  }

  .desktop\:focus\:to-yellow-800:focus{
    --tw-gradient-to: #92400e;
  }

  .desktop\:focus\:to-yellow-900:focus{
    --tw-gradient-to: #78350f;
  }

  .desktop\:focus\:to-green-50:focus{
    --tw-gradient-to: #ecfdf5;
  }

  .desktop\:focus\:to-green-100:focus{
    --tw-gradient-to: #d1fae5;
  }

  .desktop\:focus\:to-green-200:focus{
    --tw-gradient-to: #a7f3d0;
  }

  .desktop\:focus\:to-green-300:focus{
    --tw-gradient-to: #6ee7b7;
  }

  .desktop\:focus\:to-green-400:focus{
    --tw-gradient-to: #34d399;
  }

  .desktop\:focus\:to-green-500:focus{
    --tw-gradient-to: #10b981;
  }

  .desktop\:focus\:to-green-600:focus{
    --tw-gradient-to: #059669;
  }

  .desktop\:focus\:to-green-700:focus{
    --tw-gradient-to: #047857;
  }

  .desktop\:focus\:to-green-800:focus{
    --tw-gradient-to: #065f46;
  }

  .desktop\:focus\:to-green-900:focus{
    --tw-gradient-to: #064e3b;
  }

  .desktop\:focus\:to-green-light:focus{
    --tw-gradient-to: #B5D1B9;
  }

  .desktop\:focus\:to-green-default:focus{
    --tw-gradient-to: #263B29;
  }

  .desktop\:focus\:to-green-dark:focus{
    --tw-gradient-to: #1C251E;
  }

  .desktop\:focus\:to-blue-50:focus{
    --tw-gradient-to: #eff6ff;
  }

  .desktop\:focus\:to-blue-100:focus{
    --tw-gradient-to: #dbeafe;
  }

  .desktop\:focus\:to-blue-200:focus{
    --tw-gradient-to: #bfdbfe;
  }

  .desktop\:focus\:to-blue-300:focus{
    --tw-gradient-to: #93c5fd;
  }

  .desktop\:focus\:to-blue-400:focus{
    --tw-gradient-to: #60a5fa;
  }

  .desktop\:focus\:to-blue-500:focus{
    --tw-gradient-to: #3b82f6;
  }

  .desktop\:focus\:to-blue-600:focus{
    --tw-gradient-to: #2563eb;
  }

  .desktop\:focus\:to-blue-700:focus{
    --tw-gradient-to: #1d4ed8;
  }

  .desktop\:focus\:to-blue-800:focus{
    --tw-gradient-to: #1e40af;
  }

  .desktop\:focus\:to-blue-900:focus{
    --tw-gradient-to: #1e3a8a;
  }

  .desktop\:focus\:to-indigo-50:focus{
    --tw-gradient-to: #eef2ff;
  }

  .desktop\:focus\:to-indigo-100:focus{
    --tw-gradient-to: #e0e7ff;
  }

  .desktop\:focus\:to-indigo-200:focus{
    --tw-gradient-to: #c7d2fe;
  }

  .desktop\:focus\:to-indigo-300:focus{
    --tw-gradient-to: #a5b4fc;
  }

  .desktop\:focus\:to-indigo-400:focus{
    --tw-gradient-to: #818cf8;
  }

  .desktop\:focus\:to-indigo-500:focus{
    --tw-gradient-to: #6366f1;
  }

  .desktop\:focus\:to-indigo-600:focus{
    --tw-gradient-to: #4f46e5;
  }

  .desktop\:focus\:to-indigo-700:focus{
    --tw-gradient-to: #4338ca;
  }

  .desktop\:focus\:to-indigo-800:focus{
    --tw-gradient-to: #3730a3;
  }

  .desktop\:focus\:to-indigo-900:focus{
    --tw-gradient-to: #312e81;
  }

  .desktop\:focus\:to-purple-50:focus{
    --tw-gradient-to: #f5f3ff;
  }

  .desktop\:focus\:to-purple-100:focus{
    --tw-gradient-to: #ede9fe;
  }

  .desktop\:focus\:to-purple-200:focus{
    --tw-gradient-to: #ddd6fe;
  }

  .desktop\:focus\:to-purple-300:focus{
    --tw-gradient-to: #c4b5fd;
  }

  .desktop\:focus\:to-purple-400:focus{
    --tw-gradient-to: #a78bfa;
  }

  .desktop\:focus\:to-purple-500:focus{
    --tw-gradient-to: #8b5cf6;
  }

  .desktop\:focus\:to-purple-600:focus{
    --tw-gradient-to: #7c3aed;
  }

  .desktop\:focus\:to-purple-700:focus{
    --tw-gradient-to: #6d28d9;
  }

  .desktop\:focus\:to-purple-800:focus{
    --tw-gradient-to: #5b21b6;
  }

  .desktop\:focus\:to-purple-900:focus{
    --tw-gradient-to: #4c1d95;
  }

  .desktop\:focus\:to-pink-50:focus{
    --tw-gradient-to: #fdf2f8;
  }

  .desktop\:focus\:to-pink-100:focus{
    --tw-gradient-to: #fce7f3;
  }

  .desktop\:focus\:to-pink-200:focus{
    --tw-gradient-to: #fbcfe8;
  }

  .desktop\:focus\:to-pink-300:focus{
    --tw-gradient-to: #f9a8d4;
  }

  .desktop\:focus\:to-pink-400:focus{
    --tw-gradient-to: #f472b6;
  }

  .desktop\:focus\:to-pink-500:focus{
    --tw-gradient-to: #ec4899;
  }

  .desktop\:focus\:to-pink-600:focus{
    --tw-gradient-to: #db2777;
  }

  .desktop\:focus\:to-pink-700:focus{
    --tw-gradient-to: #be185d;
  }

  .desktop\:focus\:to-pink-800:focus{
    --tw-gradient-to: #9d174d;
  }

  .desktop\:focus\:to-pink-900:focus{
    --tw-gradient-to: #831843;
  }

  .desktop\:focus\:to-brown-light:focus{
    --tw-gradient-to: #f0e9de;
  }

  .desktop\:focus\:to-brown-semi:focus{
    --tw-gradient-to: #ded6ca;
  }

  .desktop\:focus\:to-brown-default:focus{
    --tw-gradient-to: #7b6c5c;
  }

  .desktop\:focus\:to-brown-dark:focus{
    --tw-gradient-to: #3d2706;
  }

  .desktop\:focus\:to-success-light:focus{
    --tw-gradient-to: #91E09C;
  }

  .desktop\:focus\:to-success-default:focus{
    --tw-gradient-to: #2D993C;
  }

  .desktop\:focus\:to-success-dark:focus{
    --tw-gradient-to: #263B29;
  }

  .desktop\:focus\:to-error-light:focus{
    --tw-gradient-to: #F98686;
  }

  .desktop\:focus\:to-error-default:focus{
    --tw-gradient-to: #CB0707;
  }

  .desktop\:focus\:to-error-dark:focus{
    --tw-gradient-to: #580000;
  }

  .desktop\:focus\:to-navigation-dark:focus{
    --tw-gradient-to: #ffcd00;
  }

  .desktop\:decoration-slice{
    -webkit-box-decoration-break: slice;
            box-decoration-break: slice;
  }

  .desktop\:decoration-clone{
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
  }

  .desktop\:bg-auto{
    background-size: auto;
  }

  .desktop\:bg-cover{
    background-size: cover;
  }

  .desktop\:bg-contain{
    background-size: contain;
  }

  .desktop\:bg-fixed{
    background-attachment: fixed;
  }

  .desktop\:bg-local{
    background-attachment: local;
  }

  .desktop\:bg-scroll{
    background-attachment: scroll;
  }

  .desktop\:bg-clip-border{
    background-clip: border-box;
  }

  .desktop\:bg-clip-padding{
    background-clip: padding-box;
  }

  .desktop\:bg-clip-content{
    background-clip: content-box;
  }

  .desktop\:bg-clip-text{
    -webkit-background-clip: text;
            background-clip: text;
  }

  .desktop\:bg-bottom{
    background-position: bottom;
  }

  .desktop\:bg-center{
    background-position: center;
  }

  .desktop\:bg-left{
    background-position: left;
  }

  .desktop\:bg-left-bottom{
    background-position: left bottom;
  }

  .desktop\:bg-left-top{
    background-position: left top;
  }

  .desktop\:bg-right{
    background-position: right;
  }

  .desktop\:bg-right-bottom{
    background-position: right bottom;
  }

  .desktop\:bg-right-top{
    background-position: right top;
  }

  .desktop\:bg-top{
    background-position: top;
  }

  .desktop\:bg-repeat{
    background-repeat: repeat;
  }

  .desktop\:bg-no-repeat{
    background-repeat: no-repeat;
  }

  .desktop\:bg-repeat-x{
    background-repeat: repeat-x;
  }

  .desktop\:bg-repeat-y{
    background-repeat: repeat-y;
  }

  .desktop\:bg-repeat-round{
    background-repeat: round;
  }

  .desktop\:bg-repeat-space{
    background-repeat: space;
  }

  .desktop\:bg-origin-border{
    background-origin: border-box;
  }

  .desktop\:bg-origin-padding{
    background-origin: padding-box;
  }

  .desktop\:bg-origin-content{
    background-origin: content-box;
  }

  .desktop\:fill-current{
    fill: currentColor;
  }

  .desktop\:stroke-current{
    stroke: currentColor;
  }

  .desktop\:stroke-0{
    stroke-width: 0;
  }

  .desktop\:stroke-1{
    stroke-width: 1;
  }

  .desktop\:stroke-2{
    stroke-width: 2;
  }

  .desktop\:object-contain{
    -o-object-fit: contain;
       object-fit: contain;
  }

  .desktop\:object-cover{
    -o-object-fit: cover;
       object-fit: cover;
  }

  .desktop\:object-fill{
    -o-object-fit: fill;
       object-fit: fill;
  }

  .desktop\:object-none{
    -o-object-fit: none;
       object-fit: none;
  }

  .desktop\:object-scale-down{
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }

  .desktop\:object-bottom{
    -o-object-position: bottom;
       object-position: bottom;
  }

  .desktop\:object-center{
    -o-object-position: center;
       object-position: center;
  }

  .desktop\:object-left{
    -o-object-position: left;
       object-position: left;
  }

  .desktop\:object-left-bottom{
    -o-object-position: left bottom;
       object-position: left bottom;
  }

  .desktop\:object-left-top{
    -o-object-position: left top;
       object-position: left top;
  }

  .desktop\:object-right{
    -o-object-position: right;
       object-position: right;
  }

  .desktop\:object-right-bottom{
    -o-object-position: right bottom;
       object-position: right bottom;
  }

  .desktop\:object-right-top{
    -o-object-position: right top;
       object-position: right top;
  }

  .desktop\:object-top{
    -o-object-position: top;
       object-position: top;
  }

  .desktop\:p-0{
    padding: 0px;
  }

  .desktop\:p-1{
    padding: 0.25rem;
  }

  .desktop\:p-2{
    padding: 0.5rem;
  }

  .desktop\:p-3{
    padding: 0.75rem;
  }

  .desktop\:p-4{
    padding: 1rem;
  }

  .desktop\:p-5{
    padding: 1.25rem;
  }

  .desktop\:p-6{
    padding: 1.5rem;
  }

  .desktop\:p-7{
    padding: 1.75rem;
  }

  .desktop\:p-8{
    padding: 2rem;
  }

  .desktop\:p-9{
    padding: 2.25rem;
  }

  .desktop\:p-10{
    padding: 2.5rem;
  }

  .desktop\:p-11{
    padding: 2.75rem;
  }

  .desktop\:p-12{
    padding: 3rem;
  }

  .desktop\:p-14{
    padding: 3.5rem;
  }

  .desktop\:p-16{
    padding: 4rem;
  }

  .desktop\:p-20{
    padding: 5rem;
  }

  .desktop\:p-24{
    padding: 6rem;
  }

  .desktop\:p-28{
    padding: 7rem;
  }

  .desktop\:p-32{
    padding: 8rem;
  }

  .desktop\:p-36{
    padding: 9rem;
  }

  .desktop\:p-40{
    padding: 10rem;
  }

  .desktop\:p-44{
    padding: 11rem;
  }

  .desktop\:p-48{
    padding: 12rem;
  }

  .desktop\:p-52{
    padding: 13rem;
  }

  .desktop\:p-56{
    padding: 14rem;
  }

  .desktop\:p-60{
    padding: 15rem;
  }

  .desktop\:p-64{
    padding: 16rem;
  }

  .desktop\:p-72{
    padding: 18rem;
  }

  .desktop\:p-80{
    padding: 20rem;
  }

  .desktop\:p-96{
    padding: 24rem;
  }

  .desktop\:p-px{
    padding: 1px;
  }

  .desktop\:p-0\.5{
    padding: 0.125rem;
  }

  .desktop\:p-1\.5{
    padding: 0.375rem;
  }

  .desktop\:p-2\.5{
    padding: 0.625rem;
  }

  .desktop\:p-3\.5{
    padding: 0.875rem;
  }

  .desktop\:last\:p-0:last-child{
    padding: 0px;
  }

  .desktop\:last\:p-1:last-child{
    padding: 0.25rem;
  }

  .desktop\:last\:p-2:last-child{
    padding: 0.5rem;
  }

  .desktop\:last\:p-3:last-child{
    padding: 0.75rem;
  }

  .desktop\:last\:p-4:last-child{
    padding: 1rem;
  }

  .desktop\:last\:p-5:last-child{
    padding: 1.25rem;
  }

  .desktop\:last\:p-6:last-child{
    padding: 1.5rem;
  }

  .desktop\:last\:p-7:last-child{
    padding: 1.75rem;
  }

  .desktop\:last\:p-8:last-child{
    padding: 2rem;
  }

  .desktop\:last\:p-9:last-child{
    padding: 2.25rem;
  }

  .desktop\:last\:p-10:last-child{
    padding: 2.5rem;
  }

  .desktop\:last\:p-11:last-child{
    padding: 2.75rem;
  }

  .desktop\:last\:p-12:last-child{
    padding: 3rem;
  }

  .desktop\:last\:p-14:last-child{
    padding: 3.5rem;
  }

  .desktop\:last\:p-16:last-child{
    padding: 4rem;
  }

  .desktop\:last\:p-20:last-child{
    padding: 5rem;
  }

  .desktop\:last\:p-24:last-child{
    padding: 6rem;
  }

  .desktop\:last\:p-28:last-child{
    padding: 7rem;
  }

  .desktop\:last\:p-32:last-child{
    padding: 8rem;
  }

  .desktop\:last\:p-36:last-child{
    padding: 9rem;
  }

  .desktop\:last\:p-40:last-child{
    padding: 10rem;
  }

  .desktop\:last\:p-44:last-child{
    padding: 11rem;
  }

  .desktop\:last\:p-48:last-child{
    padding: 12rem;
  }

  .desktop\:last\:p-52:last-child{
    padding: 13rem;
  }

  .desktop\:last\:p-56:last-child{
    padding: 14rem;
  }

  .desktop\:last\:p-60:last-child{
    padding: 15rem;
  }

  .desktop\:last\:p-64:last-child{
    padding: 16rem;
  }

  .desktop\:last\:p-72:last-child{
    padding: 18rem;
  }

  .desktop\:last\:p-80:last-child{
    padding: 20rem;
  }

  .desktop\:last\:p-96:last-child{
    padding: 24rem;
  }

  .desktop\:last\:p-px:last-child{
    padding: 1px;
  }

  .desktop\:last\:p-0\.5:last-child{
    padding: 0.125rem;
  }

  .desktop\:last\:p-1\.5:last-child{
    padding: 0.375rem;
  }

  .desktop\:last\:p-2\.5:last-child{
    padding: 0.625rem;
  }

  .desktop\:last\:p-3\.5:last-child{
    padding: 0.875rem;
  }

  .desktop\:hover\:p-0:hover{
    padding: 0px;
  }

  .desktop\:hover\:p-1:hover{
    padding: 0.25rem;
  }

  .desktop\:hover\:p-2:hover{
    padding: 0.5rem;
  }

  .desktop\:hover\:p-3:hover{
    padding: 0.75rem;
  }

  .desktop\:hover\:p-4:hover{
    padding: 1rem;
  }

  .desktop\:hover\:p-5:hover{
    padding: 1.25rem;
  }

  .desktop\:hover\:p-6:hover{
    padding: 1.5rem;
  }

  .desktop\:hover\:p-7:hover{
    padding: 1.75rem;
  }

  .desktop\:hover\:p-8:hover{
    padding: 2rem;
  }

  .desktop\:hover\:p-9:hover{
    padding: 2.25rem;
  }

  .desktop\:hover\:p-10:hover{
    padding: 2.5rem;
  }

  .desktop\:hover\:p-11:hover{
    padding: 2.75rem;
  }

  .desktop\:hover\:p-12:hover{
    padding: 3rem;
  }

  .desktop\:hover\:p-14:hover{
    padding: 3.5rem;
  }

  .desktop\:hover\:p-16:hover{
    padding: 4rem;
  }

  .desktop\:hover\:p-20:hover{
    padding: 5rem;
  }

  .desktop\:hover\:p-24:hover{
    padding: 6rem;
  }

  .desktop\:hover\:p-28:hover{
    padding: 7rem;
  }

  .desktop\:hover\:p-32:hover{
    padding: 8rem;
  }

  .desktop\:hover\:p-36:hover{
    padding: 9rem;
  }

  .desktop\:hover\:p-40:hover{
    padding: 10rem;
  }

  .desktop\:hover\:p-44:hover{
    padding: 11rem;
  }

  .desktop\:hover\:p-48:hover{
    padding: 12rem;
  }

  .desktop\:hover\:p-52:hover{
    padding: 13rem;
  }

  .desktop\:hover\:p-56:hover{
    padding: 14rem;
  }

  .desktop\:hover\:p-60:hover{
    padding: 15rem;
  }

  .desktop\:hover\:p-64:hover{
    padding: 16rem;
  }

  .desktop\:hover\:p-72:hover{
    padding: 18rem;
  }

  .desktop\:hover\:p-80:hover{
    padding: 20rem;
  }

  .desktop\:hover\:p-96:hover{
    padding: 24rem;
  }

  .desktop\:hover\:p-px:hover{
    padding: 1px;
  }

  .desktop\:hover\:p-0\.5:hover{
    padding: 0.125rem;
  }

  .desktop\:hover\:p-1\.5:hover{
    padding: 0.375rem;
  }

  .desktop\:hover\:p-2\.5:hover{
    padding: 0.625rem;
  }

  .desktop\:hover\:p-3\.5:hover{
    padding: 0.875rem;
  }

  .desktop\:focus\:p-0:focus{
    padding: 0px;
  }

  .desktop\:focus\:p-1:focus{
    padding: 0.25rem;
  }

  .desktop\:focus\:p-2:focus{
    padding: 0.5rem;
  }

  .desktop\:focus\:p-3:focus{
    padding: 0.75rem;
  }

  .desktop\:focus\:p-4:focus{
    padding: 1rem;
  }

  .desktop\:focus\:p-5:focus{
    padding: 1.25rem;
  }

  .desktop\:focus\:p-6:focus{
    padding: 1.5rem;
  }

  .desktop\:focus\:p-7:focus{
    padding: 1.75rem;
  }

  .desktop\:focus\:p-8:focus{
    padding: 2rem;
  }

  .desktop\:focus\:p-9:focus{
    padding: 2.25rem;
  }

  .desktop\:focus\:p-10:focus{
    padding: 2.5rem;
  }

  .desktop\:focus\:p-11:focus{
    padding: 2.75rem;
  }

  .desktop\:focus\:p-12:focus{
    padding: 3rem;
  }

  .desktop\:focus\:p-14:focus{
    padding: 3.5rem;
  }

  .desktop\:focus\:p-16:focus{
    padding: 4rem;
  }

  .desktop\:focus\:p-20:focus{
    padding: 5rem;
  }

  .desktop\:focus\:p-24:focus{
    padding: 6rem;
  }

  .desktop\:focus\:p-28:focus{
    padding: 7rem;
  }

  .desktop\:focus\:p-32:focus{
    padding: 8rem;
  }

  .desktop\:focus\:p-36:focus{
    padding: 9rem;
  }

  .desktop\:focus\:p-40:focus{
    padding: 10rem;
  }

  .desktop\:focus\:p-44:focus{
    padding: 11rem;
  }

  .desktop\:focus\:p-48:focus{
    padding: 12rem;
  }

  .desktop\:focus\:p-52:focus{
    padding: 13rem;
  }

  .desktop\:focus\:p-56:focus{
    padding: 14rem;
  }

  .desktop\:focus\:p-60:focus{
    padding: 15rem;
  }

  .desktop\:focus\:p-64:focus{
    padding: 16rem;
  }

  .desktop\:focus\:p-72:focus{
    padding: 18rem;
  }

  .desktop\:focus\:p-80:focus{
    padding: 20rem;
  }

  .desktop\:focus\:p-96:focus{
    padding: 24rem;
  }

  .desktop\:focus\:p-px:focus{
    padding: 1px;
  }

  .desktop\:focus\:p-0\.5:focus{
    padding: 0.125rem;
  }

  .desktop\:focus\:p-1\.5:focus{
    padding: 0.375rem;
  }

  .desktop\:focus\:p-2\.5:focus{
    padding: 0.625rem;
  }

  .desktop\:focus\:p-3\.5:focus{
    padding: 0.875rem;
  }

  .desktop\:first\:p-0:first-child{
    padding: 0px;
  }

  .desktop\:first\:p-1:first-child{
    padding: 0.25rem;
  }

  .desktop\:first\:p-2:first-child{
    padding: 0.5rem;
  }

  .desktop\:first\:p-3:first-child{
    padding: 0.75rem;
  }

  .desktop\:first\:p-4:first-child{
    padding: 1rem;
  }

  .desktop\:first\:p-5:first-child{
    padding: 1.25rem;
  }

  .desktop\:first\:p-6:first-child{
    padding: 1.5rem;
  }

  .desktop\:first\:p-7:first-child{
    padding: 1.75rem;
  }

  .desktop\:first\:p-8:first-child{
    padding: 2rem;
  }

  .desktop\:first\:p-9:first-child{
    padding: 2.25rem;
  }

  .desktop\:first\:p-10:first-child{
    padding: 2.5rem;
  }

  .desktop\:first\:p-11:first-child{
    padding: 2.75rem;
  }

  .desktop\:first\:p-12:first-child{
    padding: 3rem;
  }

  .desktop\:first\:p-14:first-child{
    padding: 3.5rem;
  }

  .desktop\:first\:p-16:first-child{
    padding: 4rem;
  }

  .desktop\:first\:p-20:first-child{
    padding: 5rem;
  }

  .desktop\:first\:p-24:first-child{
    padding: 6rem;
  }

  .desktop\:first\:p-28:first-child{
    padding: 7rem;
  }

  .desktop\:first\:p-32:first-child{
    padding: 8rem;
  }

  .desktop\:first\:p-36:first-child{
    padding: 9rem;
  }

  .desktop\:first\:p-40:first-child{
    padding: 10rem;
  }

  .desktop\:first\:p-44:first-child{
    padding: 11rem;
  }

  .desktop\:first\:p-48:first-child{
    padding: 12rem;
  }

  .desktop\:first\:p-52:first-child{
    padding: 13rem;
  }

  .desktop\:first\:p-56:first-child{
    padding: 14rem;
  }

  .desktop\:first\:p-60:first-child{
    padding: 15rem;
  }

  .desktop\:first\:p-64:first-child{
    padding: 16rem;
  }

  .desktop\:first\:p-72:first-child{
    padding: 18rem;
  }

  .desktop\:first\:p-80:first-child{
    padding: 20rem;
  }

  .desktop\:first\:p-96:first-child{
    padding: 24rem;
  }

  .desktop\:first\:p-px:first-child{
    padding: 1px;
  }

  .desktop\:first\:p-0\.5:first-child{
    padding: 0.125rem;
  }

  .desktop\:first\:p-1\.5:first-child{
    padding: 0.375rem;
  }

  .desktop\:first\:p-2\.5:first-child{
    padding: 0.625rem;
  }

  .desktop\:first\:p-3\.5:first-child{
    padding: 0.875rem;
  }

  .desktop\:last\:p-0:last-child{
    padding: 0px;
  }

  .desktop\:last\:p-1:last-child{
    padding: 0.25rem;
  }

  .desktop\:last\:p-2:last-child{
    padding: 0.5rem;
  }

  .desktop\:last\:p-3:last-child{
    padding: 0.75rem;
  }

  .desktop\:last\:p-4:last-child{
    padding: 1rem;
  }

  .desktop\:last\:p-5:last-child{
    padding: 1.25rem;
  }

  .desktop\:last\:p-6:last-child{
    padding: 1.5rem;
  }

  .desktop\:last\:p-7:last-child{
    padding: 1.75rem;
  }

  .desktop\:last\:p-8:last-child{
    padding: 2rem;
  }

  .desktop\:last\:p-9:last-child{
    padding: 2.25rem;
  }

  .desktop\:last\:p-10:last-child{
    padding: 2.5rem;
  }

  .desktop\:last\:p-11:last-child{
    padding: 2.75rem;
  }

  .desktop\:last\:p-12:last-child{
    padding: 3rem;
  }

  .desktop\:last\:p-14:last-child{
    padding: 3.5rem;
  }

  .desktop\:last\:p-16:last-child{
    padding: 4rem;
  }

  .desktop\:last\:p-20:last-child{
    padding: 5rem;
  }

  .desktop\:last\:p-24:last-child{
    padding: 6rem;
  }

  .desktop\:last\:p-28:last-child{
    padding: 7rem;
  }

  .desktop\:last\:p-32:last-child{
    padding: 8rem;
  }

  .desktop\:last\:p-36:last-child{
    padding: 9rem;
  }

  .desktop\:last\:p-40:last-child{
    padding: 10rem;
  }

  .desktop\:last\:p-44:last-child{
    padding: 11rem;
  }

  .desktop\:last\:p-48:last-child{
    padding: 12rem;
  }

  .desktop\:last\:p-52:last-child{
    padding: 13rem;
  }

  .desktop\:last\:p-56:last-child{
    padding: 14rem;
  }

  .desktop\:last\:p-60:last-child{
    padding: 15rem;
  }

  .desktop\:last\:p-64:last-child{
    padding: 16rem;
  }

  .desktop\:last\:p-72:last-child{
    padding: 18rem;
  }

  .desktop\:last\:p-80:last-child{
    padding: 20rem;
  }

  .desktop\:last\:p-96:last-child{
    padding: 24rem;
  }

  .desktop\:last\:p-px:last-child{
    padding: 1px;
  }

  .desktop\:last\:p-0\.5:last-child{
    padding: 0.125rem;
  }

  .desktop\:last\:p-1\.5:last-child{
    padding: 0.375rem;
  }

  .desktop\:last\:p-2\.5:last-child{
    padding: 0.625rem;
  }

  .desktop\:last\:p-3\.5:last-child{
    padding: 0.875rem;
  }

  .desktop\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }

  .desktop\:px-1{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .desktop\:px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .desktop\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .desktop\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .desktop\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .desktop\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .desktop\:px-7{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .desktop\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .desktop\:px-9{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .desktop\:px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .desktop\:px-11{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .desktop\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .desktop\:px-14{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .desktop\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .desktop\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .desktop\:px-24{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .desktop\:px-28{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .desktop\:px-32{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .desktop\:px-36{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .desktop\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .desktop\:px-44{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .desktop\:px-48{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .desktop\:px-52{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .desktop\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .desktop\:px-60{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .desktop\:px-64{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .desktop\:px-72{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .desktop\:px-80{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .desktop\:px-96{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .desktop\:px-px{
    padding-left: 1px;
    padding-right: 1px;
  }

  .desktop\:px-0\.5{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .desktop\:px-1\.5{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .desktop\:px-2\.5{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .desktop\:px-3\.5{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .desktop\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .desktop\:py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .desktop\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .desktop\:py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .desktop\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .desktop\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .desktop\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .desktop\:py-7{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .desktop\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .desktop\:py-9{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .desktop\:py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .desktop\:py-11{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .desktop\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .desktop\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .desktop\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .desktop\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .desktop\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .desktop\:py-28{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .desktop\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .desktop\:py-36{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .desktop\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .desktop\:py-44{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .desktop\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .desktop\:py-52{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .desktop\:py-56{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .desktop\:py-60{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .desktop\:py-64{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .desktop\:py-72{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .desktop\:py-80{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .desktop\:py-96{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .desktop\:py-px{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .desktop\:py-0\.5{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .desktop\:py-1\.5{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .desktop\:py-2\.5{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .desktop\:py-3\.5{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .desktop\:last\:px-0:last-child{
    padding-left: 0px;
    padding-right: 0px;
  }

  .desktop\:last\:px-1:last-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .desktop\:last\:px-2:last-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .desktop\:last\:px-3:last-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .desktop\:last\:px-4:last-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .desktop\:last\:px-5:last-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .desktop\:last\:px-6:last-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .desktop\:last\:px-7:last-child{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .desktop\:last\:px-8:last-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .desktop\:last\:px-9:last-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .desktop\:last\:px-10:last-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .desktop\:last\:px-11:last-child{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .desktop\:last\:px-12:last-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .desktop\:last\:px-14:last-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .desktop\:last\:px-16:last-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .desktop\:last\:px-20:last-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .desktop\:last\:px-24:last-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .desktop\:last\:px-28:last-child{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .desktop\:last\:px-32:last-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .desktop\:last\:px-36:last-child{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .desktop\:last\:px-40:last-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .desktop\:last\:px-44:last-child{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .desktop\:last\:px-48:last-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .desktop\:last\:px-52:last-child{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .desktop\:last\:px-56:last-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .desktop\:last\:px-60:last-child{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .desktop\:last\:px-64:last-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .desktop\:last\:px-72:last-child{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .desktop\:last\:px-80:last-child{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .desktop\:last\:px-96:last-child{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .desktop\:last\:px-px:last-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .desktop\:last\:px-0\.5:last-child{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .desktop\:last\:px-1\.5:last-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .desktop\:last\:px-2\.5:last-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .desktop\:last\:px-3\.5:last-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .desktop\:last\:py-0:last-child{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .desktop\:last\:py-1:last-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .desktop\:last\:py-2:last-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .desktop\:last\:py-3:last-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .desktop\:last\:py-4:last-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .desktop\:last\:py-5:last-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .desktop\:last\:py-6:last-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .desktop\:last\:py-7:last-child{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .desktop\:last\:py-8:last-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .desktop\:last\:py-9:last-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .desktop\:last\:py-10:last-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .desktop\:last\:py-11:last-child{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .desktop\:last\:py-12:last-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .desktop\:last\:py-14:last-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .desktop\:last\:py-16:last-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .desktop\:last\:py-20:last-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .desktop\:last\:py-24:last-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .desktop\:last\:py-28:last-child{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .desktop\:last\:py-32:last-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .desktop\:last\:py-36:last-child{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .desktop\:last\:py-40:last-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .desktop\:last\:py-44:last-child{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .desktop\:last\:py-48:last-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .desktop\:last\:py-52:last-child{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .desktop\:last\:py-56:last-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .desktop\:last\:py-60:last-child{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .desktop\:last\:py-64:last-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .desktop\:last\:py-72:last-child{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .desktop\:last\:py-80:last-child{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .desktop\:last\:py-96:last-child{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .desktop\:last\:py-px:last-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .desktop\:last\:py-0\.5:last-child{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .desktop\:last\:py-1\.5:last-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .desktop\:last\:py-2\.5:last-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .desktop\:last\:py-3\.5:last-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .desktop\:hover\:px-0:hover{
    padding-left: 0px;
    padding-right: 0px;
  }

  .desktop\:hover\:px-1:hover{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .desktop\:hover\:px-2:hover{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .desktop\:hover\:px-3:hover{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .desktop\:hover\:px-4:hover{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .desktop\:hover\:px-5:hover{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .desktop\:hover\:px-6:hover{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .desktop\:hover\:px-7:hover{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .desktop\:hover\:px-8:hover{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .desktop\:hover\:px-9:hover{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .desktop\:hover\:px-10:hover{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .desktop\:hover\:px-11:hover{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .desktop\:hover\:px-12:hover{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .desktop\:hover\:px-14:hover{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .desktop\:hover\:px-16:hover{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .desktop\:hover\:px-20:hover{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .desktop\:hover\:px-24:hover{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .desktop\:hover\:px-28:hover{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .desktop\:hover\:px-32:hover{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .desktop\:hover\:px-36:hover{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .desktop\:hover\:px-40:hover{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .desktop\:hover\:px-44:hover{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .desktop\:hover\:px-48:hover{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .desktop\:hover\:px-52:hover{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .desktop\:hover\:px-56:hover{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .desktop\:hover\:px-60:hover{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .desktop\:hover\:px-64:hover{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .desktop\:hover\:px-72:hover{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .desktop\:hover\:px-80:hover{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .desktop\:hover\:px-96:hover{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .desktop\:hover\:px-px:hover{
    padding-left: 1px;
    padding-right: 1px;
  }

  .desktop\:hover\:px-0\.5:hover{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .desktop\:hover\:px-1\.5:hover{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .desktop\:hover\:px-2\.5:hover{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .desktop\:hover\:px-3\.5:hover{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .desktop\:hover\:py-0:hover{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .desktop\:hover\:py-1:hover{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .desktop\:hover\:py-2:hover{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .desktop\:hover\:py-3:hover{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .desktop\:hover\:py-4:hover{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .desktop\:hover\:py-5:hover{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .desktop\:hover\:py-6:hover{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .desktop\:hover\:py-7:hover{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .desktop\:hover\:py-8:hover{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .desktop\:hover\:py-9:hover{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .desktop\:hover\:py-10:hover{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .desktop\:hover\:py-11:hover{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .desktop\:hover\:py-12:hover{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .desktop\:hover\:py-14:hover{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .desktop\:hover\:py-16:hover{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .desktop\:hover\:py-20:hover{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .desktop\:hover\:py-24:hover{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .desktop\:hover\:py-28:hover{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .desktop\:hover\:py-32:hover{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .desktop\:hover\:py-36:hover{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .desktop\:hover\:py-40:hover{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .desktop\:hover\:py-44:hover{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .desktop\:hover\:py-48:hover{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .desktop\:hover\:py-52:hover{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .desktop\:hover\:py-56:hover{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .desktop\:hover\:py-60:hover{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .desktop\:hover\:py-64:hover{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .desktop\:hover\:py-72:hover{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .desktop\:hover\:py-80:hover{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .desktop\:hover\:py-96:hover{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .desktop\:hover\:py-px:hover{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .desktop\:hover\:py-0\.5:hover{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .desktop\:hover\:py-1\.5:hover{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .desktop\:hover\:py-2\.5:hover{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .desktop\:hover\:py-3\.5:hover{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .desktop\:focus\:px-0:focus{
    padding-left: 0px;
    padding-right: 0px;
  }

  .desktop\:focus\:px-1:focus{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .desktop\:focus\:px-2:focus{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .desktop\:focus\:px-3:focus{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .desktop\:focus\:px-4:focus{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .desktop\:focus\:px-5:focus{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .desktop\:focus\:px-6:focus{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .desktop\:focus\:px-7:focus{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .desktop\:focus\:px-8:focus{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .desktop\:focus\:px-9:focus{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .desktop\:focus\:px-10:focus{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .desktop\:focus\:px-11:focus{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .desktop\:focus\:px-12:focus{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .desktop\:focus\:px-14:focus{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .desktop\:focus\:px-16:focus{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .desktop\:focus\:px-20:focus{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .desktop\:focus\:px-24:focus{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .desktop\:focus\:px-28:focus{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .desktop\:focus\:px-32:focus{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .desktop\:focus\:px-36:focus{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .desktop\:focus\:px-40:focus{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .desktop\:focus\:px-44:focus{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .desktop\:focus\:px-48:focus{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .desktop\:focus\:px-52:focus{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .desktop\:focus\:px-56:focus{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .desktop\:focus\:px-60:focus{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .desktop\:focus\:px-64:focus{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .desktop\:focus\:px-72:focus{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .desktop\:focus\:px-80:focus{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .desktop\:focus\:px-96:focus{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .desktop\:focus\:px-px:focus{
    padding-left: 1px;
    padding-right: 1px;
  }

  .desktop\:focus\:px-0\.5:focus{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .desktop\:focus\:px-1\.5:focus{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .desktop\:focus\:px-2\.5:focus{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .desktop\:focus\:px-3\.5:focus{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .desktop\:focus\:py-0:focus{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .desktop\:focus\:py-1:focus{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .desktop\:focus\:py-2:focus{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .desktop\:focus\:py-3:focus{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .desktop\:focus\:py-4:focus{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .desktop\:focus\:py-5:focus{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .desktop\:focus\:py-6:focus{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .desktop\:focus\:py-7:focus{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .desktop\:focus\:py-8:focus{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .desktop\:focus\:py-9:focus{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .desktop\:focus\:py-10:focus{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .desktop\:focus\:py-11:focus{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .desktop\:focus\:py-12:focus{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .desktop\:focus\:py-14:focus{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .desktop\:focus\:py-16:focus{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .desktop\:focus\:py-20:focus{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .desktop\:focus\:py-24:focus{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .desktop\:focus\:py-28:focus{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .desktop\:focus\:py-32:focus{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .desktop\:focus\:py-36:focus{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .desktop\:focus\:py-40:focus{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .desktop\:focus\:py-44:focus{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .desktop\:focus\:py-48:focus{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .desktop\:focus\:py-52:focus{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .desktop\:focus\:py-56:focus{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .desktop\:focus\:py-60:focus{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .desktop\:focus\:py-64:focus{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .desktop\:focus\:py-72:focus{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .desktop\:focus\:py-80:focus{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .desktop\:focus\:py-96:focus{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .desktop\:focus\:py-px:focus{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .desktop\:focus\:py-0\.5:focus{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .desktop\:focus\:py-1\.5:focus{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .desktop\:focus\:py-2\.5:focus{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .desktop\:focus\:py-3\.5:focus{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .desktop\:first\:px-0:first-child{
    padding-left: 0px;
    padding-right: 0px;
  }

  .desktop\:first\:px-1:first-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .desktop\:first\:px-2:first-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .desktop\:first\:px-3:first-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .desktop\:first\:px-4:first-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .desktop\:first\:px-5:first-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .desktop\:first\:px-6:first-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .desktop\:first\:px-7:first-child{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .desktop\:first\:px-8:first-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .desktop\:first\:px-9:first-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .desktop\:first\:px-10:first-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .desktop\:first\:px-11:first-child{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .desktop\:first\:px-12:first-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .desktop\:first\:px-14:first-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .desktop\:first\:px-16:first-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .desktop\:first\:px-20:first-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .desktop\:first\:px-24:first-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .desktop\:first\:px-28:first-child{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .desktop\:first\:px-32:first-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .desktop\:first\:px-36:first-child{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .desktop\:first\:px-40:first-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .desktop\:first\:px-44:first-child{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .desktop\:first\:px-48:first-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .desktop\:first\:px-52:first-child{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .desktop\:first\:px-56:first-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .desktop\:first\:px-60:first-child{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .desktop\:first\:px-64:first-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .desktop\:first\:px-72:first-child{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .desktop\:first\:px-80:first-child{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .desktop\:first\:px-96:first-child{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .desktop\:first\:px-px:first-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .desktop\:first\:px-0\.5:first-child{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .desktop\:first\:px-1\.5:first-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .desktop\:first\:px-2\.5:first-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .desktop\:first\:px-3\.5:first-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .desktop\:first\:py-0:first-child{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .desktop\:first\:py-1:first-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .desktop\:first\:py-2:first-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .desktop\:first\:py-3:first-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .desktop\:first\:py-4:first-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .desktop\:first\:py-5:first-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .desktop\:first\:py-6:first-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .desktop\:first\:py-7:first-child{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .desktop\:first\:py-8:first-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .desktop\:first\:py-9:first-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .desktop\:first\:py-10:first-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .desktop\:first\:py-11:first-child{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .desktop\:first\:py-12:first-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .desktop\:first\:py-14:first-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .desktop\:first\:py-16:first-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .desktop\:first\:py-20:first-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .desktop\:first\:py-24:first-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .desktop\:first\:py-28:first-child{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .desktop\:first\:py-32:first-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .desktop\:first\:py-36:first-child{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .desktop\:first\:py-40:first-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .desktop\:first\:py-44:first-child{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .desktop\:first\:py-48:first-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .desktop\:first\:py-52:first-child{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .desktop\:first\:py-56:first-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .desktop\:first\:py-60:first-child{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .desktop\:first\:py-64:first-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .desktop\:first\:py-72:first-child{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .desktop\:first\:py-80:first-child{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .desktop\:first\:py-96:first-child{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .desktop\:first\:py-px:first-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .desktop\:first\:py-0\.5:first-child{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .desktop\:first\:py-1\.5:first-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .desktop\:first\:py-2\.5:first-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .desktop\:first\:py-3\.5:first-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .desktop\:last\:px-0:last-child{
    padding-left: 0px;
    padding-right: 0px;
  }

  .desktop\:last\:px-1:last-child{
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .desktop\:last\:px-2:last-child{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .desktop\:last\:px-3:last-child{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .desktop\:last\:px-4:last-child{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .desktop\:last\:px-5:last-child{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .desktop\:last\:px-6:last-child{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .desktop\:last\:px-7:last-child{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .desktop\:last\:px-8:last-child{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .desktop\:last\:px-9:last-child{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .desktop\:last\:px-10:last-child{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .desktop\:last\:px-11:last-child{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }

  .desktop\:last\:px-12:last-child{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .desktop\:last\:px-14:last-child{
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .desktop\:last\:px-16:last-child{
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .desktop\:last\:px-20:last-child{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .desktop\:last\:px-24:last-child{
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .desktop\:last\:px-28:last-child{
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .desktop\:last\:px-32:last-child{
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .desktop\:last\:px-36:last-child{
    padding-left: 9rem;
    padding-right: 9rem;
  }

  .desktop\:last\:px-40:last-child{
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .desktop\:last\:px-44:last-child{
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .desktop\:last\:px-48:last-child{
    padding-left: 12rem;
    padding-right: 12rem;
  }

  .desktop\:last\:px-52:last-child{
    padding-left: 13rem;
    padding-right: 13rem;
  }

  .desktop\:last\:px-56:last-child{
    padding-left: 14rem;
    padding-right: 14rem;
  }

  .desktop\:last\:px-60:last-child{
    padding-left: 15rem;
    padding-right: 15rem;
  }

  .desktop\:last\:px-64:last-child{
    padding-left: 16rem;
    padding-right: 16rem;
  }

  .desktop\:last\:px-72:last-child{
    padding-left: 18rem;
    padding-right: 18rem;
  }

  .desktop\:last\:px-80:last-child{
    padding-left: 20rem;
    padding-right: 20rem;
  }

  .desktop\:last\:px-96:last-child{
    padding-left: 24rem;
    padding-right: 24rem;
  }

  .desktop\:last\:px-px:last-child{
    padding-left: 1px;
    padding-right: 1px;
  }

  .desktop\:last\:px-0\.5:last-child{
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .desktop\:last\:px-1\.5:last-child{
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }

  .desktop\:last\:px-2\.5:last-child{
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .desktop\:last\:px-3\.5:last-child{
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .desktop\:last\:py-0:last-child{
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .desktop\:last\:py-1:last-child{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .desktop\:last\:py-2:last-child{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .desktop\:last\:py-3:last-child{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .desktop\:last\:py-4:last-child{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .desktop\:last\:py-5:last-child{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .desktop\:last\:py-6:last-child{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .desktop\:last\:py-7:last-child{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .desktop\:last\:py-8:last-child{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .desktop\:last\:py-9:last-child{
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .desktop\:last\:py-10:last-child{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .desktop\:last\:py-11:last-child{
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .desktop\:last\:py-12:last-child{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .desktop\:last\:py-14:last-child{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .desktop\:last\:py-16:last-child{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .desktop\:last\:py-20:last-child{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .desktop\:last\:py-24:last-child{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .desktop\:last\:py-28:last-child{
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .desktop\:last\:py-32:last-child{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .desktop\:last\:py-36:last-child{
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .desktop\:last\:py-40:last-child{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .desktop\:last\:py-44:last-child{
    padding-top: 11rem;
    padding-bottom: 11rem;
  }

  .desktop\:last\:py-48:last-child{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .desktop\:last\:py-52:last-child{
    padding-top: 13rem;
    padding-bottom: 13rem;
  }

  .desktop\:last\:py-56:last-child{
    padding-top: 14rem;
    padding-bottom: 14rem;
  }

  .desktop\:last\:py-60:last-child{
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .desktop\:last\:py-64:last-child{
    padding-top: 16rem;
    padding-bottom: 16rem;
  }

  .desktop\:last\:py-72:last-child{
    padding-top: 18rem;
    padding-bottom: 18rem;
  }

  .desktop\:last\:py-80:last-child{
    padding-top: 20rem;
    padding-bottom: 20rem;
  }

  .desktop\:last\:py-96:last-child{
    padding-top: 24rem;
    padding-bottom: 24rem;
  }

  .desktop\:last\:py-px:last-child{
    padding-top: 1px;
    padding-bottom: 1px;
  }

  .desktop\:last\:py-0\.5:last-child{
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .desktop\:last\:py-1\.5:last-child{
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .desktop\:last\:py-2\.5:last-child{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .desktop\:last\:py-3\.5:last-child{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }

  .desktop\:pt-0{
    padding-top: 0px;
  }

  .desktop\:pt-1{
    padding-top: 0.25rem;
  }

  .desktop\:pt-2{
    padding-top: 0.5rem;
  }

  .desktop\:pt-3{
    padding-top: 0.75rem;
  }

  .desktop\:pt-4{
    padding-top: 1rem;
  }

  .desktop\:pt-5{
    padding-top: 1.25rem;
  }

  .desktop\:pt-6{
    padding-top: 1.5rem;
  }

  .desktop\:pt-7{
    padding-top: 1.75rem;
  }

  .desktop\:pt-8{
    padding-top: 2rem;
  }

  .desktop\:pt-9{
    padding-top: 2.25rem;
  }

  .desktop\:pt-10{
    padding-top: 2.5rem;
  }

  .desktop\:pt-11{
    padding-top: 2.75rem;
  }

  .desktop\:pt-12{
    padding-top: 3rem;
  }

  .desktop\:pt-14{
    padding-top: 3.5rem;
  }

  .desktop\:pt-16{
    padding-top: 4rem;
  }

  .desktop\:pt-20{
    padding-top: 5rem;
  }

  .desktop\:pt-24{
    padding-top: 6rem;
  }

  .desktop\:pt-28{
    padding-top: 7rem;
  }

  .desktop\:pt-32{
    padding-top: 8rem;
  }

  .desktop\:pt-36{
    padding-top: 9rem;
  }

  .desktop\:pt-40{
    padding-top: 10rem;
  }

  .desktop\:pt-44{
    padding-top: 11rem;
  }

  .desktop\:pt-48{
    padding-top: 12rem;
  }

  .desktop\:pt-52{
    padding-top: 13rem;
  }

  .desktop\:pt-56{
    padding-top: 14rem;
  }

  .desktop\:pt-60{
    padding-top: 15rem;
  }

  .desktop\:pt-64{
    padding-top: 16rem;
  }

  .desktop\:pt-72{
    padding-top: 18rem;
  }

  .desktop\:pt-80{
    padding-top: 20rem;
  }

  .desktop\:pt-96{
    padding-top: 24rem;
  }

  .desktop\:pt-px{
    padding-top: 1px;
  }

  .desktop\:pt-0\.5{
    padding-top: 0.125rem;
  }

  .desktop\:pt-1\.5{
    padding-top: 0.375rem;
  }

  .desktop\:pt-2\.5{
    padding-top: 0.625rem;
  }

  .desktop\:pt-3\.5{
    padding-top: 0.875rem;
  }

  .desktop\:pr-0{
    padding-right: 0px;
  }

  .desktop\:pr-1{
    padding-right: 0.25rem;
  }

  .desktop\:pr-2{
    padding-right: 0.5rem;
  }

  .desktop\:pr-3{
    padding-right: 0.75rem;
  }

  .desktop\:pr-4{
    padding-right: 1rem;
  }

  .desktop\:pr-5{
    padding-right: 1.25rem;
  }

  .desktop\:pr-6{
    padding-right: 1.5rem;
  }

  .desktop\:pr-7{
    padding-right: 1.75rem;
  }

  .desktop\:pr-8{
    padding-right: 2rem;
  }

  .desktop\:pr-9{
    padding-right: 2.25rem;
  }

  .desktop\:pr-10{
    padding-right: 2.5rem;
  }

  .desktop\:pr-11{
    padding-right: 2.75rem;
  }

  .desktop\:pr-12{
    padding-right: 3rem;
  }

  .desktop\:pr-14{
    padding-right: 3.5rem;
  }

  .desktop\:pr-16{
    padding-right: 4rem;
  }

  .desktop\:pr-20{
    padding-right: 5rem;
  }

  .desktop\:pr-24{
    padding-right: 6rem;
  }

  .desktop\:pr-28{
    padding-right: 7rem;
  }

  .desktop\:pr-32{
    padding-right: 8rem;
  }

  .desktop\:pr-36{
    padding-right: 9rem;
  }

  .desktop\:pr-40{
    padding-right: 10rem;
  }

  .desktop\:pr-44{
    padding-right: 11rem;
  }

  .desktop\:pr-48{
    padding-right: 12rem;
  }

  .desktop\:pr-52{
    padding-right: 13rem;
  }

  .desktop\:pr-56{
    padding-right: 14rem;
  }

  .desktop\:pr-60{
    padding-right: 15rem;
  }

  .desktop\:pr-64{
    padding-right: 16rem;
  }

  .desktop\:pr-72{
    padding-right: 18rem;
  }

  .desktop\:pr-80{
    padding-right: 20rem;
  }

  .desktop\:pr-96{
    padding-right: 24rem;
  }

  .desktop\:pr-px{
    padding-right: 1px;
  }

  .desktop\:pr-0\.5{
    padding-right: 0.125rem;
  }

  .desktop\:pr-1\.5{
    padding-right: 0.375rem;
  }

  .desktop\:pr-2\.5{
    padding-right: 0.625rem;
  }

  .desktop\:pr-3\.5{
    padding-right: 0.875rem;
  }

  .desktop\:pb-0{
    padding-bottom: 0px;
  }

  .desktop\:pb-1{
    padding-bottom: 0.25rem;
  }

  .desktop\:pb-2{
    padding-bottom: 0.5rem;
  }

  .desktop\:pb-3{
    padding-bottom: 0.75rem;
  }

  .desktop\:pb-4{
    padding-bottom: 1rem;
  }

  .desktop\:pb-5{
    padding-bottom: 1.25rem;
  }

  .desktop\:pb-6{
    padding-bottom: 1.5rem;
  }

  .desktop\:pb-7{
    padding-bottom: 1.75rem;
  }

  .desktop\:pb-8{
    padding-bottom: 2rem;
  }

  .desktop\:pb-9{
    padding-bottom: 2.25rem;
  }

  .desktop\:pb-10{
    padding-bottom: 2.5rem;
  }

  .desktop\:pb-11{
    padding-bottom: 2.75rem;
  }

  .desktop\:pb-12{
    padding-bottom: 3rem;
  }

  .desktop\:pb-14{
    padding-bottom: 3.5rem;
  }

  .desktop\:pb-16{
    padding-bottom: 4rem;
  }

  .desktop\:pb-20{
    padding-bottom: 5rem;
  }

  .desktop\:pb-24{
    padding-bottom: 6rem;
  }

  .desktop\:pb-28{
    padding-bottom: 7rem;
  }

  .desktop\:pb-32{
    padding-bottom: 8rem;
  }

  .desktop\:pb-36{
    padding-bottom: 9rem;
  }

  .desktop\:pb-40{
    padding-bottom: 10rem;
  }

  .desktop\:pb-44{
    padding-bottom: 11rem;
  }

  .desktop\:pb-48{
    padding-bottom: 12rem;
  }

  .desktop\:pb-52{
    padding-bottom: 13rem;
  }

  .desktop\:pb-56{
    padding-bottom: 14rem;
  }

  .desktop\:pb-60{
    padding-bottom: 15rem;
  }

  .desktop\:pb-64{
    padding-bottom: 16rem;
  }

  .desktop\:pb-72{
    padding-bottom: 18rem;
  }

  .desktop\:pb-80{
    padding-bottom: 20rem;
  }

  .desktop\:pb-96{
    padding-bottom: 24rem;
  }

  .desktop\:pb-px{
    padding-bottom: 1px;
  }

  .desktop\:pb-0\.5{
    padding-bottom: 0.125rem;
  }

  .desktop\:pb-1\.5{
    padding-bottom: 0.375rem;
  }

  .desktop\:pb-2\.5{
    padding-bottom: 0.625rem;
  }

  .desktop\:pb-3\.5{
    padding-bottom: 0.875rem;
  }

  .desktop\:pl-0{
    padding-left: 0px;
  }

  .desktop\:pl-1{
    padding-left: 0.25rem;
  }

  .desktop\:pl-2{
    padding-left: 0.5rem;
  }

  .desktop\:pl-3{
    padding-left: 0.75rem;
  }

  .desktop\:pl-4{
    padding-left: 1rem;
  }

  .desktop\:pl-5{
    padding-left: 1.25rem;
  }

  .desktop\:pl-6{
    padding-left: 1.5rem;
  }

  .desktop\:pl-7{
    padding-left: 1.75rem;
  }

  .desktop\:pl-8{
    padding-left: 2rem;
  }

  .desktop\:pl-9{
    padding-left: 2.25rem;
  }

  .desktop\:pl-10{
    padding-left: 2.5rem;
  }

  .desktop\:pl-11{
    padding-left: 2.75rem;
  }

  .desktop\:pl-12{
    padding-left: 3rem;
  }

  .desktop\:pl-14{
    padding-left: 3.5rem;
  }

  .desktop\:pl-16{
    padding-left: 4rem;
  }

  .desktop\:pl-20{
    padding-left: 5rem;
  }

  .desktop\:pl-24{
    padding-left: 6rem;
  }

  .desktop\:pl-28{
    padding-left: 7rem;
  }

  .desktop\:pl-32{
    padding-left: 8rem;
  }

  .desktop\:pl-36{
    padding-left: 9rem;
  }

  .desktop\:pl-40{
    padding-left: 10rem;
  }

  .desktop\:pl-44{
    padding-left: 11rem;
  }

  .desktop\:pl-48{
    padding-left: 12rem;
  }

  .desktop\:pl-52{
    padding-left: 13rem;
  }

  .desktop\:pl-56{
    padding-left: 14rem;
  }

  .desktop\:pl-60{
    padding-left: 15rem;
  }

  .desktop\:pl-64{
    padding-left: 16rem;
  }

  .desktop\:pl-72{
    padding-left: 18rem;
  }

  .desktop\:pl-80{
    padding-left: 20rem;
  }

  .desktop\:pl-96{
    padding-left: 24rem;
  }

  .desktop\:pl-px{
    padding-left: 1px;
  }

  .desktop\:pl-0\.5{
    padding-left: 0.125rem;
  }

  .desktop\:pl-1\.5{
    padding-left: 0.375rem;
  }

  .desktop\:pl-2\.5{
    padding-left: 0.625rem;
  }

  .desktop\:pl-3\.5{
    padding-left: 0.875rem;
  }

  .desktop\:last\:pt-0:last-child{
    padding-top: 0px;
  }

  .desktop\:last\:pt-1:last-child{
    padding-top: 0.25rem;
  }

  .desktop\:last\:pt-2:last-child{
    padding-top: 0.5rem;
  }

  .desktop\:last\:pt-3:last-child{
    padding-top: 0.75rem;
  }

  .desktop\:last\:pt-4:last-child{
    padding-top: 1rem;
  }

  .desktop\:last\:pt-5:last-child{
    padding-top: 1.25rem;
  }

  .desktop\:last\:pt-6:last-child{
    padding-top: 1.5rem;
  }

  .desktop\:last\:pt-7:last-child{
    padding-top: 1.75rem;
  }

  .desktop\:last\:pt-8:last-child{
    padding-top: 2rem;
  }

  .desktop\:last\:pt-9:last-child{
    padding-top: 2.25rem;
  }

  .desktop\:last\:pt-10:last-child{
    padding-top: 2.5rem;
  }

  .desktop\:last\:pt-11:last-child{
    padding-top: 2.75rem;
  }

  .desktop\:last\:pt-12:last-child{
    padding-top: 3rem;
  }

  .desktop\:last\:pt-14:last-child{
    padding-top: 3.5rem;
  }

  .desktop\:last\:pt-16:last-child{
    padding-top: 4rem;
  }

  .desktop\:last\:pt-20:last-child{
    padding-top: 5rem;
  }

  .desktop\:last\:pt-24:last-child{
    padding-top: 6rem;
  }

  .desktop\:last\:pt-28:last-child{
    padding-top: 7rem;
  }

  .desktop\:last\:pt-32:last-child{
    padding-top: 8rem;
  }

  .desktop\:last\:pt-36:last-child{
    padding-top: 9rem;
  }

  .desktop\:last\:pt-40:last-child{
    padding-top: 10rem;
  }

  .desktop\:last\:pt-44:last-child{
    padding-top: 11rem;
  }

  .desktop\:last\:pt-48:last-child{
    padding-top: 12rem;
  }

  .desktop\:last\:pt-52:last-child{
    padding-top: 13rem;
  }

  .desktop\:last\:pt-56:last-child{
    padding-top: 14rem;
  }

  .desktop\:last\:pt-60:last-child{
    padding-top: 15rem;
  }

  .desktop\:last\:pt-64:last-child{
    padding-top: 16rem;
  }

  .desktop\:last\:pt-72:last-child{
    padding-top: 18rem;
  }

  .desktop\:last\:pt-80:last-child{
    padding-top: 20rem;
  }

  .desktop\:last\:pt-96:last-child{
    padding-top: 24rem;
  }

  .desktop\:last\:pt-px:last-child{
    padding-top: 1px;
  }

  .desktop\:last\:pt-0\.5:last-child{
    padding-top: 0.125rem;
  }

  .desktop\:last\:pt-1\.5:last-child{
    padding-top: 0.375rem;
  }

  .desktop\:last\:pt-2\.5:last-child{
    padding-top: 0.625rem;
  }

  .desktop\:last\:pt-3\.5:last-child{
    padding-top: 0.875rem;
  }

  .desktop\:last\:pr-0:last-child{
    padding-right: 0px;
  }

  .desktop\:last\:pr-1:last-child{
    padding-right: 0.25rem;
  }

  .desktop\:last\:pr-2:last-child{
    padding-right: 0.5rem;
  }

  .desktop\:last\:pr-3:last-child{
    padding-right: 0.75rem;
  }

  .desktop\:last\:pr-4:last-child{
    padding-right: 1rem;
  }

  .desktop\:last\:pr-5:last-child{
    padding-right: 1.25rem;
  }

  .desktop\:last\:pr-6:last-child{
    padding-right: 1.5rem;
  }

  .desktop\:last\:pr-7:last-child{
    padding-right: 1.75rem;
  }

  .desktop\:last\:pr-8:last-child{
    padding-right: 2rem;
  }

  .desktop\:last\:pr-9:last-child{
    padding-right: 2.25rem;
  }

  .desktop\:last\:pr-10:last-child{
    padding-right: 2.5rem;
  }

  .desktop\:last\:pr-11:last-child{
    padding-right: 2.75rem;
  }

  .desktop\:last\:pr-12:last-child{
    padding-right: 3rem;
  }

  .desktop\:last\:pr-14:last-child{
    padding-right: 3.5rem;
  }

  .desktop\:last\:pr-16:last-child{
    padding-right: 4rem;
  }

  .desktop\:last\:pr-20:last-child{
    padding-right: 5rem;
  }

  .desktop\:last\:pr-24:last-child{
    padding-right: 6rem;
  }

  .desktop\:last\:pr-28:last-child{
    padding-right: 7rem;
  }

  .desktop\:last\:pr-32:last-child{
    padding-right: 8rem;
  }

  .desktop\:last\:pr-36:last-child{
    padding-right: 9rem;
  }

  .desktop\:last\:pr-40:last-child{
    padding-right: 10rem;
  }

  .desktop\:last\:pr-44:last-child{
    padding-right: 11rem;
  }

  .desktop\:last\:pr-48:last-child{
    padding-right: 12rem;
  }

  .desktop\:last\:pr-52:last-child{
    padding-right: 13rem;
  }

  .desktop\:last\:pr-56:last-child{
    padding-right: 14rem;
  }

  .desktop\:last\:pr-60:last-child{
    padding-right: 15rem;
  }

  .desktop\:last\:pr-64:last-child{
    padding-right: 16rem;
  }

  .desktop\:last\:pr-72:last-child{
    padding-right: 18rem;
  }

  .desktop\:last\:pr-80:last-child{
    padding-right: 20rem;
  }

  .desktop\:last\:pr-96:last-child{
    padding-right: 24rem;
  }

  .desktop\:last\:pr-px:last-child{
    padding-right: 1px;
  }

  .desktop\:last\:pr-0\.5:last-child{
    padding-right: 0.125rem;
  }

  .desktop\:last\:pr-1\.5:last-child{
    padding-right: 0.375rem;
  }

  .desktop\:last\:pr-2\.5:last-child{
    padding-right: 0.625rem;
  }

  .desktop\:last\:pr-3\.5:last-child{
    padding-right: 0.875rem;
  }

  .desktop\:last\:pb-0:last-child{
    padding-bottom: 0px;
  }

  .desktop\:last\:pb-1:last-child{
    padding-bottom: 0.25rem;
  }

  .desktop\:last\:pb-2:last-child{
    padding-bottom: 0.5rem;
  }

  .desktop\:last\:pb-3:last-child{
    padding-bottom: 0.75rem;
  }

  .desktop\:last\:pb-4:last-child{
    padding-bottom: 1rem;
  }

  .desktop\:last\:pb-5:last-child{
    padding-bottom: 1.25rem;
  }

  .desktop\:last\:pb-6:last-child{
    padding-bottom: 1.5rem;
  }

  .desktop\:last\:pb-7:last-child{
    padding-bottom: 1.75rem;
  }

  .desktop\:last\:pb-8:last-child{
    padding-bottom: 2rem;
  }

  .desktop\:last\:pb-9:last-child{
    padding-bottom: 2.25rem;
  }

  .desktop\:last\:pb-10:last-child{
    padding-bottom: 2.5rem;
  }

  .desktop\:last\:pb-11:last-child{
    padding-bottom: 2.75rem;
  }

  .desktop\:last\:pb-12:last-child{
    padding-bottom: 3rem;
  }

  .desktop\:last\:pb-14:last-child{
    padding-bottom: 3.5rem;
  }

  .desktop\:last\:pb-16:last-child{
    padding-bottom: 4rem;
  }

  .desktop\:last\:pb-20:last-child{
    padding-bottom: 5rem;
  }

  .desktop\:last\:pb-24:last-child{
    padding-bottom: 6rem;
  }

  .desktop\:last\:pb-28:last-child{
    padding-bottom: 7rem;
  }

  .desktop\:last\:pb-32:last-child{
    padding-bottom: 8rem;
  }

  .desktop\:last\:pb-36:last-child{
    padding-bottom: 9rem;
  }

  .desktop\:last\:pb-40:last-child{
    padding-bottom: 10rem;
  }

  .desktop\:last\:pb-44:last-child{
    padding-bottom: 11rem;
  }

  .desktop\:last\:pb-48:last-child{
    padding-bottom: 12rem;
  }

  .desktop\:last\:pb-52:last-child{
    padding-bottom: 13rem;
  }

  .desktop\:last\:pb-56:last-child{
    padding-bottom: 14rem;
  }

  .desktop\:last\:pb-60:last-child{
    padding-bottom: 15rem;
  }

  .desktop\:last\:pb-64:last-child{
    padding-bottom: 16rem;
  }

  .desktop\:last\:pb-72:last-child{
    padding-bottom: 18rem;
  }

  .desktop\:last\:pb-80:last-child{
    padding-bottom: 20rem;
  }

  .desktop\:last\:pb-96:last-child{
    padding-bottom: 24rem;
  }

  .desktop\:last\:pb-px:last-child{
    padding-bottom: 1px;
  }

  .desktop\:last\:pb-0\.5:last-child{
    padding-bottom: 0.125rem;
  }

  .desktop\:last\:pb-1\.5:last-child{
    padding-bottom: 0.375rem;
  }

  .desktop\:last\:pb-2\.5:last-child{
    padding-bottom: 0.625rem;
  }

  .desktop\:last\:pb-3\.5:last-child{
    padding-bottom: 0.875rem;
  }

  .desktop\:last\:pl-0:last-child{
    padding-left: 0px;
  }

  .desktop\:last\:pl-1:last-child{
    padding-left: 0.25rem;
  }

  .desktop\:last\:pl-2:last-child{
    padding-left: 0.5rem;
  }

  .desktop\:last\:pl-3:last-child{
    padding-left: 0.75rem;
  }

  .desktop\:last\:pl-4:last-child{
    padding-left: 1rem;
  }

  .desktop\:last\:pl-5:last-child{
    padding-left: 1.25rem;
  }

  .desktop\:last\:pl-6:last-child{
    padding-left: 1.5rem;
  }

  .desktop\:last\:pl-7:last-child{
    padding-left: 1.75rem;
  }

  .desktop\:last\:pl-8:last-child{
    padding-left: 2rem;
  }

  .desktop\:last\:pl-9:last-child{
    padding-left: 2.25rem;
  }

  .desktop\:last\:pl-10:last-child{
    padding-left: 2.5rem;
  }

  .desktop\:last\:pl-11:last-child{
    padding-left: 2.75rem;
  }

  .desktop\:last\:pl-12:last-child{
    padding-left: 3rem;
  }

  .desktop\:last\:pl-14:last-child{
    padding-left: 3.5rem;
  }

  .desktop\:last\:pl-16:last-child{
    padding-left: 4rem;
  }

  .desktop\:last\:pl-20:last-child{
    padding-left: 5rem;
  }

  .desktop\:last\:pl-24:last-child{
    padding-left: 6rem;
  }

  .desktop\:last\:pl-28:last-child{
    padding-left: 7rem;
  }

  .desktop\:last\:pl-32:last-child{
    padding-left: 8rem;
  }

  .desktop\:last\:pl-36:last-child{
    padding-left: 9rem;
  }

  .desktop\:last\:pl-40:last-child{
    padding-left: 10rem;
  }

  .desktop\:last\:pl-44:last-child{
    padding-left: 11rem;
  }

  .desktop\:last\:pl-48:last-child{
    padding-left: 12rem;
  }

  .desktop\:last\:pl-52:last-child{
    padding-left: 13rem;
  }

  .desktop\:last\:pl-56:last-child{
    padding-left: 14rem;
  }

  .desktop\:last\:pl-60:last-child{
    padding-left: 15rem;
  }

  .desktop\:last\:pl-64:last-child{
    padding-left: 16rem;
  }

  .desktop\:last\:pl-72:last-child{
    padding-left: 18rem;
  }

  .desktop\:last\:pl-80:last-child{
    padding-left: 20rem;
  }

  .desktop\:last\:pl-96:last-child{
    padding-left: 24rem;
  }

  .desktop\:last\:pl-px:last-child{
    padding-left: 1px;
  }

  .desktop\:last\:pl-0\.5:last-child{
    padding-left: 0.125rem;
  }

  .desktop\:last\:pl-1\.5:last-child{
    padding-left: 0.375rem;
  }

  .desktop\:last\:pl-2\.5:last-child{
    padding-left: 0.625rem;
  }

  .desktop\:last\:pl-3\.5:last-child{
    padding-left: 0.875rem;
  }

  .desktop\:hover\:pt-0:hover{
    padding-top: 0px;
  }

  .desktop\:hover\:pt-1:hover{
    padding-top: 0.25rem;
  }

  .desktop\:hover\:pt-2:hover{
    padding-top: 0.5rem;
  }

  .desktop\:hover\:pt-3:hover{
    padding-top: 0.75rem;
  }

  .desktop\:hover\:pt-4:hover{
    padding-top: 1rem;
  }

  .desktop\:hover\:pt-5:hover{
    padding-top: 1.25rem;
  }

  .desktop\:hover\:pt-6:hover{
    padding-top: 1.5rem;
  }

  .desktop\:hover\:pt-7:hover{
    padding-top: 1.75rem;
  }

  .desktop\:hover\:pt-8:hover{
    padding-top: 2rem;
  }

  .desktop\:hover\:pt-9:hover{
    padding-top: 2.25rem;
  }

  .desktop\:hover\:pt-10:hover{
    padding-top: 2.5rem;
  }

  .desktop\:hover\:pt-11:hover{
    padding-top: 2.75rem;
  }

  .desktop\:hover\:pt-12:hover{
    padding-top: 3rem;
  }

  .desktop\:hover\:pt-14:hover{
    padding-top: 3.5rem;
  }

  .desktop\:hover\:pt-16:hover{
    padding-top: 4rem;
  }

  .desktop\:hover\:pt-20:hover{
    padding-top: 5rem;
  }

  .desktop\:hover\:pt-24:hover{
    padding-top: 6rem;
  }

  .desktop\:hover\:pt-28:hover{
    padding-top: 7rem;
  }

  .desktop\:hover\:pt-32:hover{
    padding-top: 8rem;
  }

  .desktop\:hover\:pt-36:hover{
    padding-top: 9rem;
  }

  .desktop\:hover\:pt-40:hover{
    padding-top: 10rem;
  }

  .desktop\:hover\:pt-44:hover{
    padding-top: 11rem;
  }

  .desktop\:hover\:pt-48:hover{
    padding-top: 12rem;
  }

  .desktop\:hover\:pt-52:hover{
    padding-top: 13rem;
  }

  .desktop\:hover\:pt-56:hover{
    padding-top: 14rem;
  }

  .desktop\:hover\:pt-60:hover{
    padding-top: 15rem;
  }

  .desktop\:hover\:pt-64:hover{
    padding-top: 16rem;
  }

  .desktop\:hover\:pt-72:hover{
    padding-top: 18rem;
  }

  .desktop\:hover\:pt-80:hover{
    padding-top: 20rem;
  }

  .desktop\:hover\:pt-96:hover{
    padding-top: 24rem;
  }

  .desktop\:hover\:pt-px:hover{
    padding-top: 1px;
  }

  .desktop\:hover\:pt-0\.5:hover{
    padding-top: 0.125rem;
  }

  .desktop\:hover\:pt-1\.5:hover{
    padding-top: 0.375rem;
  }

  .desktop\:hover\:pt-2\.5:hover{
    padding-top: 0.625rem;
  }

  .desktop\:hover\:pt-3\.5:hover{
    padding-top: 0.875rem;
  }

  .desktop\:hover\:pr-0:hover{
    padding-right: 0px;
  }

  .desktop\:hover\:pr-1:hover{
    padding-right: 0.25rem;
  }

  .desktop\:hover\:pr-2:hover{
    padding-right: 0.5rem;
  }

  .desktop\:hover\:pr-3:hover{
    padding-right: 0.75rem;
  }

  .desktop\:hover\:pr-4:hover{
    padding-right: 1rem;
  }

  .desktop\:hover\:pr-5:hover{
    padding-right: 1.25rem;
  }

  .desktop\:hover\:pr-6:hover{
    padding-right: 1.5rem;
  }

  .desktop\:hover\:pr-7:hover{
    padding-right: 1.75rem;
  }

  .desktop\:hover\:pr-8:hover{
    padding-right: 2rem;
  }

  .desktop\:hover\:pr-9:hover{
    padding-right: 2.25rem;
  }

  .desktop\:hover\:pr-10:hover{
    padding-right: 2.5rem;
  }

  .desktop\:hover\:pr-11:hover{
    padding-right: 2.75rem;
  }

  .desktop\:hover\:pr-12:hover{
    padding-right: 3rem;
  }

  .desktop\:hover\:pr-14:hover{
    padding-right: 3.5rem;
  }

  .desktop\:hover\:pr-16:hover{
    padding-right: 4rem;
  }

  .desktop\:hover\:pr-20:hover{
    padding-right: 5rem;
  }

  .desktop\:hover\:pr-24:hover{
    padding-right: 6rem;
  }

  .desktop\:hover\:pr-28:hover{
    padding-right: 7rem;
  }

  .desktop\:hover\:pr-32:hover{
    padding-right: 8rem;
  }

  .desktop\:hover\:pr-36:hover{
    padding-right: 9rem;
  }

  .desktop\:hover\:pr-40:hover{
    padding-right: 10rem;
  }

  .desktop\:hover\:pr-44:hover{
    padding-right: 11rem;
  }

  .desktop\:hover\:pr-48:hover{
    padding-right: 12rem;
  }

  .desktop\:hover\:pr-52:hover{
    padding-right: 13rem;
  }

  .desktop\:hover\:pr-56:hover{
    padding-right: 14rem;
  }

  .desktop\:hover\:pr-60:hover{
    padding-right: 15rem;
  }

  .desktop\:hover\:pr-64:hover{
    padding-right: 16rem;
  }

  .desktop\:hover\:pr-72:hover{
    padding-right: 18rem;
  }

  .desktop\:hover\:pr-80:hover{
    padding-right: 20rem;
  }

  .desktop\:hover\:pr-96:hover{
    padding-right: 24rem;
  }

  .desktop\:hover\:pr-px:hover{
    padding-right: 1px;
  }

  .desktop\:hover\:pr-0\.5:hover{
    padding-right: 0.125rem;
  }

  .desktop\:hover\:pr-1\.5:hover{
    padding-right: 0.375rem;
  }

  .desktop\:hover\:pr-2\.5:hover{
    padding-right: 0.625rem;
  }

  .desktop\:hover\:pr-3\.5:hover{
    padding-right: 0.875rem;
  }

  .desktop\:hover\:pb-0:hover{
    padding-bottom: 0px;
  }

  .desktop\:hover\:pb-1:hover{
    padding-bottom: 0.25rem;
  }

  .desktop\:hover\:pb-2:hover{
    padding-bottom: 0.5rem;
  }

  .desktop\:hover\:pb-3:hover{
    padding-bottom: 0.75rem;
  }

  .desktop\:hover\:pb-4:hover{
    padding-bottom: 1rem;
  }

  .desktop\:hover\:pb-5:hover{
    padding-bottom: 1.25rem;
  }

  .desktop\:hover\:pb-6:hover{
    padding-bottom: 1.5rem;
  }

  .desktop\:hover\:pb-7:hover{
    padding-bottom: 1.75rem;
  }

  .desktop\:hover\:pb-8:hover{
    padding-bottom: 2rem;
  }

  .desktop\:hover\:pb-9:hover{
    padding-bottom: 2.25rem;
  }

  .desktop\:hover\:pb-10:hover{
    padding-bottom: 2.5rem;
  }

  .desktop\:hover\:pb-11:hover{
    padding-bottom: 2.75rem;
  }

  .desktop\:hover\:pb-12:hover{
    padding-bottom: 3rem;
  }

  .desktop\:hover\:pb-14:hover{
    padding-bottom: 3.5rem;
  }

  .desktop\:hover\:pb-16:hover{
    padding-bottom: 4rem;
  }

  .desktop\:hover\:pb-20:hover{
    padding-bottom: 5rem;
  }

  .desktop\:hover\:pb-24:hover{
    padding-bottom: 6rem;
  }

  .desktop\:hover\:pb-28:hover{
    padding-bottom: 7rem;
  }

  .desktop\:hover\:pb-32:hover{
    padding-bottom: 8rem;
  }

  .desktop\:hover\:pb-36:hover{
    padding-bottom: 9rem;
  }

  .desktop\:hover\:pb-40:hover{
    padding-bottom: 10rem;
  }

  .desktop\:hover\:pb-44:hover{
    padding-bottom: 11rem;
  }

  .desktop\:hover\:pb-48:hover{
    padding-bottom: 12rem;
  }

  .desktop\:hover\:pb-52:hover{
    padding-bottom: 13rem;
  }

  .desktop\:hover\:pb-56:hover{
    padding-bottom: 14rem;
  }

  .desktop\:hover\:pb-60:hover{
    padding-bottom: 15rem;
  }

  .desktop\:hover\:pb-64:hover{
    padding-bottom: 16rem;
  }

  .desktop\:hover\:pb-72:hover{
    padding-bottom: 18rem;
  }

  .desktop\:hover\:pb-80:hover{
    padding-bottom: 20rem;
  }

  .desktop\:hover\:pb-96:hover{
    padding-bottom: 24rem;
  }

  .desktop\:hover\:pb-px:hover{
    padding-bottom: 1px;
  }

  .desktop\:hover\:pb-0\.5:hover{
    padding-bottom: 0.125rem;
  }

  .desktop\:hover\:pb-1\.5:hover{
    padding-bottom: 0.375rem;
  }

  .desktop\:hover\:pb-2\.5:hover{
    padding-bottom: 0.625rem;
  }

  .desktop\:hover\:pb-3\.5:hover{
    padding-bottom: 0.875rem;
  }

  .desktop\:hover\:pl-0:hover{
    padding-left: 0px;
  }

  .desktop\:hover\:pl-1:hover{
    padding-left: 0.25rem;
  }

  .desktop\:hover\:pl-2:hover{
    padding-left: 0.5rem;
  }

  .desktop\:hover\:pl-3:hover{
    padding-left: 0.75rem;
  }

  .desktop\:hover\:pl-4:hover{
    padding-left: 1rem;
  }

  .desktop\:hover\:pl-5:hover{
    padding-left: 1.25rem;
  }

  .desktop\:hover\:pl-6:hover{
    padding-left: 1.5rem;
  }

  .desktop\:hover\:pl-7:hover{
    padding-left: 1.75rem;
  }

  .desktop\:hover\:pl-8:hover{
    padding-left: 2rem;
  }

  .desktop\:hover\:pl-9:hover{
    padding-left: 2.25rem;
  }

  .desktop\:hover\:pl-10:hover{
    padding-left: 2.5rem;
  }

  .desktop\:hover\:pl-11:hover{
    padding-left: 2.75rem;
  }

  .desktop\:hover\:pl-12:hover{
    padding-left: 3rem;
  }

  .desktop\:hover\:pl-14:hover{
    padding-left: 3.5rem;
  }

  .desktop\:hover\:pl-16:hover{
    padding-left: 4rem;
  }

  .desktop\:hover\:pl-20:hover{
    padding-left: 5rem;
  }

  .desktop\:hover\:pl-24:hover{
    padding-left: 6rem;
  }

  .desktop\:hover\:pl-28:hover{
    padding-left: 7rem;
  }

  .desktop\:hover\:pl-32:hover{
    padding-left: 8rem;
  }

  .desktop\:hover\:pl-36:hover{
    padding-left: 9rem;
  }

  .desktop\:hover\:pl-40:hover{
    padding-left: 10rem;
  }

  .desktop\:hover\:pl-44:hover{
    padding-left: 11rem;
  }

  .desktop\:hover\:pl-48:hover{
    padding-left: 12rem;
  }

  .desktop\:hover\:pl-52:hover{
    padding-left: 13rem;
  }

  .desktop\:hover\:pl-56:hover{
    padding-left: 14rem;
  }

  .desktop\:hover\:pl-60:hover{
    padding-left: 15rem;
  }

  .desktop\:hover\:pl-64:hover{
    padding-left: 16rem;
  }

  .desktop\:hover\:pl-72:hover{
    padding-left: 18rem;
  }

  .desktop\:hover\:pl-80:hover{
    padding-left: 20rem;
  }

  .desktop\:hover\:pl-96:hover{
    padding-left: 24rem;
  }

  .desktop\:hover\:pl-px:hover{
    padding-left: 1px;
  }

  .desktop\:hover\:pl-0\.5:hover{
    padding-left: 0.125rem;
  }

  .desktop\:hover\:pl-1\.5:hover{
    padding-left: 0.375rem;
  }

  .desktop\:hover\:pl-2\.5:hover{
    padding-left: 0.625rem;
  }

  .desktop\:hover\:pl-3\.5:hover{
    padding-left: 0.875rem;
  }

  .desktop\:focus\:pt-0:focus{
    padding-top: 0px;
  }

  .desktop\:focus\:pt-1:focus{
    padding-top: 0.25rem;
  }

  .desktop\:focus\:pt-2:focus{
    padding-top: 0.5rem;
  }

  .desktop\:focus\:pt-3:focus{
    padding-top: 0.75rem;
  }

  .desktop\:focus\:pt-4:focus{
    padding-top: 1rem;
  }

  .desktop\:focus\:pt-5:focus{
    padding-top: 1.25rem;
  }

  .desktop\:focus\:pt-6:focus{
    padding-top: 1.5rem;
  }

  .desktop\:focus\:pt-7:focus{
    padding-top: 1.75rem;
  }

  .desktop\:focus\:pt-8:focus{
    padding-top: 2rem;
  }

  .desktop\:focus\:pt-9:focus{
    padding-top: 2.25rem;
  }

  .desktop\:focus\:pt-10:focus{
    padding-top: 2.5rem;
  }

  .desktop\:focus\:pt-11:focus{
    padding-top: 2.75rem;
  }

  .desktop\:focus\:pt-12:focus{
    padding-top: 3rem;
  }

  .desktop\:focus\:pt-14:focus{
    padding-top: 3.5rem;
  }

  .desktop\:focus\:pt-16:focus{
    padding-top: 4rem;
  }

  .desktop\:focus\:pt-20:focus{
    padding-top: 5rem;
  }

  .desktop\:focus\:pt-24:focus{
    padding-top: 6rem;
  }

  .desktop\:focus\:pt-28:focus{
    padding-top: 7rem;
  }

  .desktop\:focus\:pt-32:focus{
    padding-top: 8rem;
  }

  .desktop\:focus\:pt-36:focus{
    padding-top: 9rem;
  }

  .desktop\:focus\:pt-40:focus{
    padding-top: 10rem;
  }

  .desktop\:focus\:pt-44:focus{
    padding-top: 11rem;
  }

  .desktop\:focus\:pt-48:focus{
    padding-top: 12rem;
  }

  .desktop\:focus\:pt-52:focus{
    padding-top: 13rem;
  }

  .desktop\:focus\:pt-56:focus{
    padding-top: 14rem;
  }

  .desktop\:focus\:pt-60:focus{
    padding-top: 15rem;
  }

  .desktop\:focus\:pt-64:focus{
    padding-top: 16rem;
  }

  .desktop\:focus\:pt-72:focus{
    padding-top: 18rem;
  }

  .desktop\:focus\:pt-80:focus{
    padding-top: 20rem;
  }

  .desktop\:focus\:pt-96:focus{
    padding-top: 24rem;
  }

  .desktop\:focus\:pt-px:focus{
    padding-top: 1px;
  }

  .desktop\:focus\:pt-0\.5:focus{
    padding-top: 0.125rem;
  }

  .desktop\:focus\:pt-1\.5:focus{
    padding-top: 0.375rem;
  }

  .desktop\:focus\:pt-2\.5:focus{
    padding-top: 0.625rem;
  }

  .desktop\:focus\:pt-3\.5:focus{
    padding-top: 0.875rem;
  }

  .desktop\:focus\:pr-0:focus{
    padding-right: 0px;
  }

  .desktop\:focus\:pr-1:focus{
    padding-right: 0.25rem;
  }

  .desktop\:focus\:pr-2:focus{
    padding-right: 0.5rem;
  }

  .desktop\:focus\:pr-3:focus{
    padding-right: 0.75rem;
  }

  .desktop\:focus\:pr-4:focus{
    padding-right: 1rem;
  }

  .desktop\:focus\:pr-5:focus{
    padding-right: 1.25rem;
  }

  .desktop\:focus\:pr-6:focus{
    padding-right: 1.5rem;
  }

  .desktop\:focus\:pr-7:focus{
    padding-right: 1.75rem;
  }

  .desktop\:focus\:pr-8:focus{
    padding-right: 2rem;
  }

  .desktop\:focus\:pr-9:focus{
    padding-right: 2.25rem;
  }

  .desktop\:focus\:pr-10:focus{
    padding-right: 2.5rem;
  }

  .desktop\:focus\:pr-11:focus{
    padding-right: 2.75rem;
  }

  .desktop\:focus\:pr-12:focus{
    padding-right: 3rem;
  }

  .desktop\:focus\:pr-14:focus{
    padding-right: 3.5rem;
  }

  .desktop\:focus\:pr-16:focus{
    padding-right: 4rem;
  }

  .desktop\:focus\:pr-20:focus{
    padding-right: 5rem;
  }

  .desktop\:focus\:pr-24:focus{
    padding-right: 6rem;
  }

  .desktop\:focus\:pr-28:focus{
    padding-right: 7rem;
  }

  .desktop\:focus\:pr-32:focus{
    padding-right: 8rem;
  }

  .desktop\:focus\:pr-36:focus{
    padding-right: 9rem;
  }

  .desktop\:focus\:pr-40:focus{
    padding-right: 10rem;
  }

  .desktop\:focus\:pr-44:focus{
    padding-right: 11rem;
  }

  .desktop\:focus\:pr-48:focus{
    padding-right: 12rem;
  }

  .desktop\:focus\:pr-52:focus{
    padding-right: 13rem;
  }

  .desktop\:focus\:pr-56:focus{
    padding-right: 14rem;
  }

  .desktop\:focus\:pr-60:focus{
    padding-right: 15rem;
  }

  .desktop\:focus\:pr-64:focus{
    padding-right: 16rem;
  }

  .desktop\:focus\:pr-72:focus{
    padding-right: 18rem;
  }

  .desktop\:focus\:pr-80:focus{
    padding-right: 20rem;
  }

  .desktop\:focus\:pr-96:focus{
    padding-right: 24rem;
  }

  .desktop\:focus\:pr-px:focus{
    padding-right: 1px;
  }

  .desktop\:focus\:pr-0\.5:focus{
    padding-right: 0.125rem;
  }

  .desktop\:focus\:pr-1\.5:focus{
    padding-right: 0.375rem;
  }

  .desktop\:focus\:pr-2\.5:focus{
    padding-right: 0.625rem;
  }

  .desktop\:focus\:pr-3\.5:focus{
    padding-right: 0.875rem;
  }

  .desktop\:focus\:pb-0:focus{
    padding-bottom: 0px;
  }

  .desktop\:focus\:pb-1:focus{
    padding-bottom: 0.25rem;
  }

  .desktop\:focus\:pb-2:focus{
    padding-bottom: 0.5rem;
  }

  .desktop\:focus\:pb-3:focus{
    padding-bottom: 0.75rem;
  }

  .desktop\:focus\:pb-4:focus{
    padding-bottom: 1rem;
  }

  .desktop\:focus\:pb-5:focus{
    padding-bottom: 1.25rem;
  }

  .desktop\:focus\:pb-6:focus{
    padding-bottom: 1.5rem;
  }

  .desktop\:focus\:pb-7:focus{
    padding-bottom: 1.75rem;
  }

  .desktop\:focus\:pb-8:focus{
    padding-bottom: 2rem;
  }

  .desktop\:focus\:pb-9:focus{
    padding-bottom: 2.25rem;
  }

  .desktop\:focus\:pb-10:focus{
    padding-bottom: 2.5rem;
  }

  .desktop\:focus\:pb-11:focus{
    padding-bottom: 2.75rem;
  }

  .desktop\:focus\:pb-12:focus{
    padding-bottom: 3rem;
  }

  .desktop\:focus\:pb-14:focus{
    padding-bottom: 3.5rem;
  }

  .desktop\:focus\:pb-16:focus{
    padding-bottom: 4rem;
  }

  .desktop\:focus\:pb-20:focus{
    padding-bottom: 5rem;
  }

  .desktop\:focus\:pb-24:focus{
    padding-bottom: 6rem;
  }

  .desktop\:focus\:pb-28:focus{
    padding-bottom: 7rem;
  }

  .desktop\:focus\:pb-32:focus{
    padding-bottom: 8rem;
  }

  .desktop\:focus\:pb-36:focus{
    padding-bottom: 9rem;
  }

  .desktop\:focus\:pb-40:focus{
    padding-bottom: 10rem;
  }

  .desktop\:focus\:pb-44:focus{
    padding-bottom: 11rem;
  }

  .desktop\:focus\:pb-48:focus{
    padding-bottom: 12rem;
  }

  .desktop\:focus\:pb-52:focus{
    padding-bottom: 13rem;
  }

  .desktop\:focus\:pb-56:focus{
    padding-bottom: 14rem;
  }

  .desktop\:focus\:pb-60:focus{
    padding-bottom: 15rem;
  }

  .desktop\:focus\:pb-64:focus{
    padding-bottom: 16rem;
  }

  .desktop\:focus\:pb-72:focus{
    padding-bottom: 18rem;
  }

  .desktop\:focus\:pb-80:focus{
    padding-bottom: 20rem;
  }

  .desktop\:focus\:pb-96:focus{
    padding-bottom: 24rem;
  }

  .desktop\:focus\:pb-px:focus{
    padding-bottom: 1px;
  }

  .desktop\:focus\:pb-0\.5:focus{
    padding-bottom: 0.125rem;
  }

  .desktop\:focus\:pb-1\.5:focus{
    padding-bottom: 0.375rem;
  }

  .desktop\:focus\:pb-2\.5:focus{
    padding-bottom: 0.625rem;
  }

  .desktop\:focus\:pb-3\.5:focus{
    padding-bottom: 0.875rem;
  }

  .desktop\:focus\:pl-0:focus{
    padding-left: 0px;
  }

  .desktop\:focus\:pl-1:focus{
    padding-left: 0.25rem;
  }

  .desktop\:focus\:pl-2:focus{
    padding-left: 0.5rem;
  }

  .desktop\:focus\:pl-3:focus{
    padding-left: 0.75rem;
  }

  .desktop\:focus\:pl-4:focus{
    padding-left: 1rem;
  }

  .desktop\:focus\:pl-5:focus{
    padding-left: 1.25rem;
  }

  .desktop\:focus\:pl-6:focus{
    padding-left: 1.5rem;
  }

  .desktop\:focus\:pl-7:focus{
    padding-left: 1.75rem;
  }

  .desktop\:focus\:pl-8:focus{
    padding-left: 2rem;
  }

  .desktop\:focus\:pl-9:focus{
    padding-left: 2.25rem;
  }

  .desktop\:focus\:pl-10:focus{
    padding-left: 2.5rem;
  }

  .desktop\:focus\:pl-11:focus{
    padding-left: 2.75rem;
  }

  .desktop\:focus\:pl-12:focus{
    padding-left: 3rem;
  }

  .desktop\:focus\:pl-14:focus{
    padding-left: 3.5rem;
  }

  .desktop\:focus\:pl-16:focus{
    padding-left: 4rem;
  }

  .desktop\:focus\:pl-20:focus{
    padding-left: 5rem;
  }

  .desktop\:focus\:pl-24:focus{
    padding-left: 6rem;
  }

  .desktop\:focus\:pl-28:focus{
    padding-left: 7rem;
  }

  .desktop\:focus\:pl-32:focus{
    padding-left: 8rem;
  }

  .desktop\:focus\:pl-36:focus{
    padding-left: 9rem;
  }

  .desktop\:focus\:pl-40:focus{
    padding-left: 10rem;
  }

  .desktop\:focus\:pl-44:focus{
    padding-left: 11rem;
  }

  .desktop\:focus\:pl-48:focus{
    padding-left: 12rem;
  }

  .desktop\:focus\:pl-52:focus{
    padding-left: 13rem;
  }

  .desktop\:focus\:pl-56:focus{
    padding-left: 14rem;
  }

  .desktop\:focus\:pl-60:focus{
    padding-left: 15rem;
  }

  .desktop\:focus\:pl-64:focus{
    padding-left: 16rem;
  }

  .desktop\:focus\:pl-72:focus{
    padding-left: 18rem;
  }

  .desktop\:focus\:pl-80:focus{
    padding-left: 20rem;
  }

  .desktop\:focus\:pl-96:focus{
    padding-left: 24rem;
  }

  .desktop\:focus\:pl-px:focus{
    padding-left: 1px;
  }

  .desktop\:focus\:pl-0\.5:focus{
    padding-left: 0.125rem;
  }

  .desktop\:focus\:pl-1\.5:focus{
    padding-left: 0.375rem;
  }

  .desktop\:focus\:pl-2\.5:focus{
    padding-left: 0.625rem;
  }

  .desktop\:focus\:pl-3\.5:focus{
    padding-left: 0.875rem;
  }

  .desktop\:first\:pt-0:first-child{
    padding-top: 0px;
  }

  .desktop\:first\:pt-1:first-child{
    padding-top: 0.25rem;
  }

  .desktop\:first\:pt-2:first-child{
    padding-top: 0.5rem;
  }

  .desktop\:first\:pt-3:first-child{
    padding-top: 0.75rem;
  }

  .desktop\:first\:pt-4:first-child{
    padding-top: 1rem;
  }

  .desktop\:first\:pt-5:first-child{
    padding-top: 1.25rem;
  }

  .desktop\:first\:pt-6:first-child{
    padding-top: 1.5rem;
  }

  .desktop\:first\:pt-7:first-child{
    padding-top: 1.75rem;
  }

  .desktop\:first\:pt-8:first-child{
    padding-top: 2rem;
  }

  .desktop\:first\:pt-9:first-child{
    padding-top: 2.25rem;
  }

  .desktop\:first\:pt-10:first-child{
    padding-top: 2.5rem;
  }

  .desktop\:first\:pt-11:first-child{
    padding-top: 2.75rem;
  }

  .desktop\:first\:pt-12:first-child{
    padding-top: 3rem;
  }

  .desktop\:first\:pt-14:first-child{
    padding-top: 3.5rem;
  }

  .desktop\:first\:pt-16:first-child{
    padding-top: 4rem;
  }

  .desktop\:first\:pt-20:first-child{
    padding-top: 5rem;
  }

  .desktop\:first\:pt-24:first-child{
    padding-top: 6rem;
  }

  .desktop\:first\:pt-28:first-child{
    padding-top: 7rem;
  }

  .desktop\:first\:pt-32:first-child{
    padding-top: 8rem;
  }

  .desktop\:first\:pt-36:first-child{
    padding-top: 9rem;
  }

  .desktop\:first\:pt-40:first-child{
    padding-top: 10rem;
  }

  .desktop\:first\:pt-44:first-child{
    padding-top: 11rem;
  }

  .desktop\:first\:pt-48:first-child{
    padding-top: 12rem;
  }

  .desktop\:first\:pt-52:first-child{
    padding-top: 13rem;
  }

  .desktop\:first\:pt-56:first-child{
    padding-top: 14rem;
  }

  .desktop\:first\:pt-60:first-child{
    padding-top: 15rem;
  }

  .desktop\:first\:pt-64:first-child{
    padding-top: 16rem;
  }

  .desktop\:first\:pt-72:first-child{
    padding-top: 18rem;
  }

  .desktop\:first\:pt-80:first-child{
    padding-top: 20rem;
  }

  .desktop\:first\:pt-96:first-child{
    padding-top: 24rem;
  }

  .desktop\:first\:pt-px:first-child{
    padding-top: 1px;
  }

  .desktop\:first\:pt-0\.5:first-child{
    padding-top: 0.125rem;
  }

  .desktop\:first\:pt-1\.5:first-child{
    padding-top: 0.375rem;
  }

  .desktop\:first\:pt-2\.5:first-child{
    padding-top: 0.625rem;
  }

  .desktop\:first\:pt-3\.5:first-child{
    padding-top: 0.875rem;
  }

  .desktop\:first\:pr-0:first-child{
    padding-right: 0px;
  }

  .desktop\:first\:pr-1:first-child{
    padding-right: 0.25rem;
  }

  .desktop\:first\:pr-2:first-child{
    padding-right: 0.5rem;
  }

  .desktop\:first\:pr-3:first-child{
    padding-right: 0.75rem;
  }

  .desktop\:first\:pr-4:first-child{
    padding-right: 1rem;
  }

  .desktop\:first\:pr-5:first-child{
    padding-right: 1.25rem;
  }

  .desktop\:first\:pr-6:first-child{
    padding-right: 1.5rem;
  }

  .desktop\:first\:pr-7:first-child{
    padding-right: 1.75rem;
  }

  .desktop\:first\:pr-8:first-child{
    padding-right: 2rem;
  }

  .desktop\:first\:pr-9:first-child{
    padding-right: 2.25rem;
  }

  .desktop\:first\:pr-10:first-child{
    padding-right: 2.5rem;
  }

  .desktop\:first\:pr-11:first-child{
    padding-right: 2.75rem;
  }

  .desktop\:first\:pr-12:first-child{
    padding-right: 3rem;
  }

  .desktop\:first\:pr-14:first-child{
    padding-right: 3.5rem;
  }

  .desktop\:first\:pr-16:first-child{
    padding-right: 4rem;
  }

  .desktop\:first\:pr-20:first-child{
    padding-right: 5rem;
  }

  .desktop\:first\:pr-24:first-child{
    padding-right: 6rem;
  }

  .desktop\:first\:pr-28:first-child{
    padding-right: 7rem;
  }

  .desktop\:first\:pr-32:first-child{
    padding-right: 8rem;
  }

  .desktop\:first\:pr-36:first-child{
    padding-right: 9rem;
  }

  .desktop\:first\:pr-40:first-child{
    padding-right: 10rem;
  }

  .desktop\:first\:pr-44:first-child{
    padding-right: 11rem;
  }

  .desktop\:first\:pr-48:first-child{
    padding-right: 12rem;
  }

  .desktop\:first\:pr-52:first-child{
    padding-right: 13rem;
  }

  .desktop\:first\:pr-56:first-child{
    padding-right: 14rem;
  }

  .desktop\:first\:pr-60:first-child{
    padding-right: 15rem;
  }

  .desktop\:first\:pr-64:first-child{
    padding-right: 16rem;
  }

  .desktop\:first\:pr-72:first-child{
    padding-right: 18rem;
  }

  .desktop\:first\:pr-80:first-child{
    padding-right: 20rem;
  }

  .desktop\:first\:pr-96:first-child{
    padding-right: 24rem;
  }

  .desktop\:first\:pr-px:first-child{
    padding-right: 1px;
  }

  .desktop\:first\:pr-0\.5:first-child{
    padding-right: 0.125rem;
  }

  .desktop\:first\:pr-1\.5:first-child{
    padding-right: 0.375rem;
  }

  .desktop\:first\:pr-2\.5:first-child{
    padding-right: 0.625rem;
  }

  .desktop\:first\:pr-3\.5:first-child{
    padding-right: 0.875rem;
  }

  .desktop\:first\:pb-0:first-child{
    padding-bottom: 0px;
  }

  .desktop\:first\:pb-1:first-child{
    padding-bottom: 0.25rem;
  }

  .desktop\:first\:pb-2:first-child{
    padding-bottom: 0.5rem;
  }

  .desktop\:first\:pb-3:first-child{
    padding-bottom: 0.75rem;
  }

  .desktop\:first\:pb-4:first-child{
    padding-bottom: 1rem;
  }

  .desktop\:first\:pb-5:first-child{
    padding-bottom: 1.25rem;
  }

  .desktop\:first\:pb-6:first-child{
    padding-bottom: 1.5rem;
  }

  .desktop\:first\:pb-7:first-child{
    padding-bottom: 1.75rem;
  }

  .desktop\:first\:pb-8:first-child{
    padding-bottom: 2rem;
  }

  .desktop\:first\:pb-9:first-child{
    padding-bottom: 2.25rem;
  }

  .desktop\:first\:pb-10:first-child{
    padding-bottom: 2.5rem;
  }

  .desktop\:first\:pb-11:first-child{
    padding-bottom: 2.75rem;
  }

  .desktop\:first\:pb-12:first-child{
    padding-bottom: 3rem;
  }

  .desktop\:first\:pb-14:first-child{
    padding-bottom: 3.5rem;
  }

  .desktop\:first\:pb-16:first-child{
    padding-bottom: 4rem;
  }

  .desktop\:first\:pb-20:first-child{
    padding-bottom: 5rem;
  }

  .desktop\:first\:pb-24:first-child{
    padding-bottom: 6rem;
  }

  .desktop\:first\:pb-28:first-child{
    padding-bottom: 7rem;
  }

  .desktop\:first\:pb-32:first-child{
    padding-bottom: 8rem;
  }

  .desktop\:first\:pb-36:first-child{
    padding-bottom: 9rem;
  }

  .desktop\:first\:pb-40:first-child{
    padding-bottom: 10rem;
  }

  .desktop\:first\:pb-44:first-child{
    padding-bottom: 11rem;
  }

  .desktop\:first\:pb-48:first-child{
    padding-bottom: 12rem;
  }

  .desktop\:first\:pb-52:first-child{
    padding-bottom: 13rem;
  }

  .desktop\:first\:pb-56:first-child{
    padding-bottom: 14rem;
  }

  .desktop\:first\:pb-60:first-child{
    padding-bottom: 15rem;
  }

  .desktop\:first\:pb-64:first-child{
    padding-bottom: 16rem;
  }

  .desktop\:first\:pb-72:first-child{
    padding-bottom: 18rem;
  }

  .desktop\:first\:pb-80:first-child{
    padding-bottom: 20rem;
  }

  .desktop\:first\:pb-96:first-child{
    padding-bottom: 24rem;
  }

  .desktop\:first\:pb-px:first-child{
    padding-bottom: 1px;
  }

  .desktop\:first\:pb-0\.5:first-child{
    padding-bottom: 0.125rem;
  }

  .desktop\:first\:pb-1\.5:first-child{
    padding-bottom: 0.375rem;
  }

  .desktop\:first\:pb-2\.5:first-child{
    padding-bottom: 0.625rem;
  }

  .desktop\:first\:pb-3\.5:first-child{
    padding-bottom: 0.875rem;
  }

  .desktop\:first\:pl-0:first-child{
    padding-left: 0px;
  }

  .desktop\:first\:pl-1:first-child{
    padding-left: 0.25rem;
  }

  .desktop\:first\:pl-2:first-child{
    padding-left: 0.5rem;
  }

  .desktop\:first\:pl-3:first-child{
    padding-left: 0.75rem;
  }

  .desktop\:first\:pl-4:first-child{
    padding-left: 1rem;
  }

  .desktop\:first\:pl-5:first-child{
    padding-left: 1.25rem;
  }

  .desktop\:first\:pl-6:first-child{
    padding-left: 1.5rem;
  }

  .desktop\:first\:pl-7:first-child{
    padding-left: 1.75rem;
  }

  .desktop\:first\:pl-8:first-child{
    padding-left: 2rem;
  }

  .desktop\:first\:pl-9:first-child{
    padding-left: 2.25rem;
  }

  .desktop\:first\:pl-10:first-child{
    padding-left: 2.5rem;
  }

  .desktop\:first\:pl-11:first-child{
    padding-left: 2.75rem;
  }

  .desktop\:first\:pl-12:first-child{
    padding-left: 3rem;
  }

  .desktop\:first\:pl-14:first-child{
    padding-left: 3.5rem;
  }

  .desktop\:first\:pl-16:first-child{
    padding-left: 4rem;
  }

  .desktop\:first\:pl-20:first-child{
    padding-left: 5rem;
  }

  .desktop\:first\:pl-24:first-child{
    padding-left: 6rem;
  }

  .desktop\:first\:pl-28:first-child{
    padding-left: 7rem;
  }

  .desktop\:first\:pl-32:first-child{
    padding-left: 8rem;
  }

  .desktop\:first\:pl-36:first-child{
    padding-left: 9rem;
  }

  .desktop\:first\:pl-40:first-child{
    padding-left: 10rem;
  }

  .desktop\:first\:pl-44:first-child{
    padding-left: 11rem;
  }

  .desktop\:first\:pl-48:first-child{
    padding-left: 12rem;
  }

  .desktop\:first\:pl-52:first-child{
    padding-left: 13rem;
  }

  .desktop\:first\:pl-56:first-child{
    padding-left: 14rem;
  }

  .desktop\:first\:pl-60:first-child{
    padding-left: 15rem;
  }

  .desktop\:first\:pl-64:first-child{
    padding-left: 16rem;
  }

  .desktop\:first\:pl-72:first-child{
    padding-left: 18rem;
  }

  .desktop\:first\:pl-80:first-child{
    padding-left: 20rem;
  }

  .desktop\:first\:pl-96:first-child{
    padding-left: 24rem;
  }

  .desktop\:first\:pl-px:first-child{
    padding-left: 1px;
  }

  .desktop\:first\:pl-0\.5:first-child{
    padding-left: 0.125rem;
  }

  .desktop\:first\:pl-1\.5:first-child{
    padding-left: 0.375rem;
  }

  .desktop\:first\:pl-2\.5:first-child{
    padding-left: 0.625rem;
  }

  .desktop\:first\:pl-3\.5:first-child{
    padding-left: 0.875rem;
  }

  .desktop\:last\:pt-0:last-child{
    padding-top: 0px;
  }

  .desktop\:last\:pt-1:last-child{
    padding-top: 0.25rem;
  }

  .desktop\:last\:pt-2:last-child{
    padding-top: 0.5rem;
  }

  .desktop\:last\:pt-3:last-child{
    padding-top: 0.75rem;
  }

  .desktop\:last\:pt-4:last-child{
    padding-top: 1rem;
  }

  .desktop\:last\:pt-5:last-child{
    padding-top: 1.25rem;
  }

  .desktop\:last\:pt-6:last-child{
    padding-top: 1.5rem;
  }

  .desktop\:last\:pt-7:last-child{
    padding-top: 1.75rem;
  }

  .desktop\:last\:pt-8:last-child{
    padding-top: 2rem;
  }

  .desktop\:last\:pt-9:last-child{
    padding-top: 2.25rem;
  }

  .desktop\:last\:pt-10:last-child{
    padding-top: 2.5rem;
  }

  .desktop\:last\:pt-11:last-child{
    padding-top: 2.75rem;
  }

  .desktop\:last\:pt-12:last-child{
    padding-top: 3rem;
  }

  .desktop\:last\:pt-14:last-child{
    padding-top: 3.5rem;
  }

  .desktop\:last\:pt-16:last-child{
    padding-top: 4rem;
  }

  .desktop\:last\:pt-20:last-child{
    padding-top: 5rem;
  }

  .desktop\:last\:pt-24:last-child{
    padding-top: 6rem;
  }

  .desktop\:last\:pt-28:last-child{
    padding-top: 7rem;
  }

  .desktop\:last\:pt-32:last-child{
    padding-top: 8rem;
  }

  .desktop\:last\:pt-36:last-child{
    padding-top: 9rem;
  }

  .desktop\:last\:pt-40:last-child{
    padding-top: 10rem;
  }

  .desktop\:last\:pt-44:last-child{
    padding-top: 11rem;
  }

  .desktop\:last\:pt-48:last-child{
    padding-top: 12rem;
  }

  .desktop\:last\:pt-52:last-child{
    padding-top: 13rem;
  }

  .desktop\:last\:pt-56:last-child{
    padding-top: 14rem;
  }

  .desktop\:last\:pt-60:last-child{
    padding-top: 15rem;
  }

  .desktop\:last\:pt-64:last-child{
    padding-top: 16rem;
  }

  .desktop\:last\:pt-72:last-child{
    padding-top: 18rem;
  }

  .desktop\:last\:pt-80:last-child{
    padding-top: 20rem;
  }

  .desktop\:last\:pt-96:last-child{
    padding-top: 24rem;
  }

  .desktop\:last\:pt-px:last-child{
    padding-top: 1px;
  }

  .desktop\:last\:pt-0\.5:last-child{
    padding-top: 0.125rem;
  }

  .desktop\:last\:pt-1\.5:last-child{
    padding-top: 0.375rem;
  }

  .desktop\:last\:pt-2\.5:last-child{
    padding-top: 0.625rem;
  }

  .desktop\:last\:pt-3\.5:last-child{
    padding-top: 0.875rem;
  }

  .desktop\:last\:pr-0:last-child{
    padding-right: 0px;
  }

  .desktop\:last\:pr-1:last-child{
    padding-right: 0.25rem;
  }

  .desktop\:last\:pr-2:last-child{
    padding-right: 0.5rem;
  }

  .desktop\:last\:pr-3:last-child{
    padding-right: 0.75rem;
  }

  .desktop\:last\:pr-4:last-child{
    padding-right: 1rem;
  }

  .desktop\:last\:pr-5:last-child{
    padding-right: 1.25rem;
  }

  .desktop\:last\:pr-6:last-child{
    padding-right: 1.5rem;
  }

  .desktop\:last\:pr-7:last-child{
    padding-right: 1.75rem;
  }

  .desktop\:last\:pr-8:last-child{
    padding-right: 2rem;
  }

  .desktop\:last\:pr-9:last-child{
    padding-right: 2.25rem;
  }

  .desktop\:last\:pr-10:last-child{
    padding-right: 2.5rem;
  }

  .desktop\:last\:pr-11:last-child{
    padding-right: 2.75rem;
  }

  .desktop\:last\:pr-12:last-child{
    padding-right: 3rem;
  }

  .desktop\:last\:pr-14:last-child{
    padding-right: 3.5rem;
  }

  .desktop\:last\:pr-16:last-child{
    padding-right: 4rem;
  }

  .desktop\:last\:pr-20:last-child{
    padding-right: 5rem;
  }

  .desktop\:last\:pr-24:last-child{
    padding-right: 6rem;
  }

  .desktop\:last\:pr-28:last-child{
    padding-right: 7rem;
  }

  .desktop\:last\:pr-32:last-child{
    padding-right: 8rem;
  }

  .desktop\:last\:pr-36:last-child{
    padding-right: 9rem;
  }

  .desktop\:last\:pr-40:last-child{
    padding-right: 10rem;
  }

  .desktop\:last\:pr-44:last-child{
    padding-right: 11rem;
  }

  .desktop\:last\:pr-48:last-child{
    padding-right: 12rem;
  }

  .desktop\:last\:pr-52:last-child{
    padding-right: 13rem;
  }

  .desktop\:last\:pr-56:last-child{
    padding-right: 14rem;
  }

  .desktop\:last\:pr-60:last-child{
    padding-right: 15rem;
  }

  .desktop\:last\:pr-64:last-child{
    padding-right: 16rem;
  }

  .desktop\:last\:pr-72:last-child{
    padding-right: 18rem;
  }

  .desktop\:last\:pr-80:last-child{
    padding-right: 20rem;
  }

  .desktop\:last\:pr-96:last-child{
    padding-right: 24rem;
  }

  .desktop\:last\:pr-px:last-child{
    padding-right: 1px;
  }

  .desktop\:last\:pr-0\.5:last-child{
    padding-right: 0.125rem;
  }

  .desktop\:last\:pr-1\.5:last-child{
    padding-right: 0.375rem;
  }

  .desktop\:last\:pr-2\.5:last-child{
    padding-right: 0.625rem;
  }

  .desktop\:last\:pr-3\.5:last-child{
    padding-right: 0.875rem;
  }

  .desktop\:last\:pb-0:last-child{
    padding-bottom: 0px;
  }

  .desktop\:last\:pb-1:last-child{
    padding-bottom: 0.25rem;
  }

  .desktop\:last\:pb-2:last-child{
    padding-bottom: 0.5rem;
  }

  .desktop\:last\:pb-3:last-child{
    padding-bottom: 0.75rem;
  }

  .desktop\:last\:pb-4:last-child{
    padding-bottom: 1rem;
  }

  .desktop\:last\:pb-5:last-child{
    padding-bottom: 1.25rem;
  }

  .desktop\:last\:pb-6:last-child{
    padding-bottom: 1.5rem;
  }

  .desktop\:last\:pb-7:last-child{
    padding-bottom: 1.75rem;
  }

  .desktop\:last\:pb-8:last-child{
    padding-bottom: 2rem;
  }

  .desktop\:last\:pb-9:last-child{
    padding-bottom: 2.25rem;
  }

  .desktop\:last\:pb-10:last-child{
    padding-bottom: 2.5rem;
  }

  .desktop\:last\:pb-11:last-child{
    padding-bottom: 2.75rem;
  }

  .desktop\:last\:pb-12:last-child{
    padding-bottom: 3rem;
  }

  .desktop\:last\:pb-14:last-child{
    padding-bottom: 3.5rem;
  }

  .desktop\:last\:pb-16:last-child{
    padding-bottom: 4rem;
  }

  .desktop\:last\:pb-20:last-child{
    padding-bottom: 5rem;
  }

  .desktop\:last\:pb-24:last-child{
    padding-bottom: 6rem;
  }

  .desktop\:last\:pb-28:last-child{
    padding-bottom: 7rem;
  }

  .desktop\:last\:pb-32:last-child{
    padding-bottom: 8rem;
  }

  .desktop\:last\:pb-36:last-child{
    padding-bottom: 9rem;
  }

  .desktop\:last\:pb-40:last-child{
    padding-bottom: 10rem;
  }

  .desktop\:last\:pb-44:last-child{
    padding-bottom: 11rem;
  }

  .desktop\:last\:pb-48:last-child{
    padding-bottom: 12rem;
  }

  .desktop\:last\:pb-52:last-child{
    padding-bottom: 13rem;
  }

  .desktop\:last\:pb-56:last-child{
    padding-bottom: 14rem;
  }

  .desktop\:last\:pb-60:last-child{
    padding-bottom: 15rem;
  }

  .desktop\:last\:pb-64:last-child{
    padding-bottom: 16rem;
  }

  .desktop\:last\:pb-72:last-child{
    padding-bottom: 18rem;
  }

  .desktop\:last\:pb-80:last-child{
    padding-bottom: 20rem;
  }

  .desktop\:last\:pb-96:last-child{
    padding-bottom: 24rem;
  }

  .desktop\:last\:pb-px:last-child{
    padding-bottom: 1px;
  }

  .desktop\:last\:pb-0\.5:last-child{
    padding-bottom: 0.125rem;
  }

  .desktop\:last\:pb-1\.5:last-child{
    padding-bottom: 0.375rem;
  }

  .desktop\:last\:pb-2\.5:last-child{
    padding-bottom: 0.625rem;
  }

  .desktop\:last\:pb-3\.5:last-child{
    padding-bottom: 0.875rem;
  }

  .desktop\:last\:pl-0:last-child{
    padding-left: 0px;
  }

  .desktop\:last\:pl-1:last-child{
    padding-left: 0.25rem;
  }

  .desktop\:last\:pl-2:last-child{
    padding-left: 0.5rem;
  }

  .desktop\:last\:pl-3:last-child{
    padding-left: 0.75rem;
  }

  .desktop\:last\:pl-4:last-child{
    padding-left: 1rem;
  }

  .desktop\:last\:pl-5:last-child{
    padding-left: 1.25rem;
  }

  .desktop\:last\:pl-6:last-child{
    padding-left: 1.5rem;
  }

  .desktop\:last\:pl-7:last-child{
    padding-left: 1.75rem;
  }

  .desktop\:last\:pl-8:last-child{
    padding-left: 2rem;
  }

  .desktop\:last\:pl-9:last-child{
    padding-left: 2.25rem;
  }

  .desktop\:last\:pl-10:last-child{
    padding-left: 2.5rem;
  }

  .desktop\:last\:pl-11:last-child{
    padding-left: 2.75rem;
  }

  .desktop\:last\:pl-12:last-child{
    padding-left: 3rem;
  }

  .desktop\:last\:pl-14:last-child{
    padding-left: 3.5rem;
  }

  .desktop\:last\:pl-16:last-child{
    padding-left: 4rem;
  }

  .desktop\:last\:pl-20:last-child{
    padding-left: 5rem;
  }

  .desktop\:last\:pl-24:last-child{
    padding-left: 6rem;
  }

  .desktop\:last\:pl-28:last-child{
    padding-left: 7rem;
  }

  .desktop\:last\:pl-32:last-child{
    padding-left: 8rem;
  }

  .desktop\:last\:pl-36:last-child{
    padding-left: 9rem;
  }

  .desktop\:last\:pl-40:last-child{
    padding-left: 10rem;
  }

  .desktop\:last\:pl-44:last-child{
    padding-left: 11rem;
  }

  .desktop\:last\:pl-48:last-child{
    padding-left: 12rem;
  }

  .desktop\:last\:pl-52:last-child{
    padding-left: 13rem;
  }

  .desktop\:last\:pl-56:last-child{
    padding-left: 14rem;
  }

  .desktop\:last\:pl-60:last-child{
    padding-left: 15rem;
  }

  .desktop\:last\:pl-64:last-child{
    padding-left: 16rem;
  }

  .desktop\:last\:pl-72:last-child{
    padding-left: 18rem;
  }

  .desktop\:last\:pl-80:last-child{
    padding-left: 20rem;
  }

  .desktop\:last\:pl-96:last-child{
    padding-left: 24rem;
  }

  .desktop\:last\:pl-px:last-child{
    padding-left: 1px;
  }

  .desktop\:last\:pl-0\.5:last-child{
    padding-left: 0.125rem;
  }

  .desktop\:last\:pl-1\.5:last-child{
    padding-left: 0.375rem;
  }

  .desktop\:last\:pl-2\.5:last-child{
    padding-left: 0.625rem;
  }

  .desktop\:last\:pl-3\.5:last-child{
    padding-left: 0.875rem;
  }

  .desktop\:text-left{
    text-align: left;
  }

  .desktop\:text-center{
    text-align: center;
  }

  .desktop\:text-right{
    text-align: right;
  }

  .desktop\:text-justify{
    text-align: justify;
  }

  .desktop\:align-baseline{
    vertical-align: baseline;
  }

  .desktop\:align-top{
    vertical-align: top;
  }

  .desktop\:align-middle{
    vertical-align: middle;
  }

  .desktop\:align-bottom{
    vertical-align: bottom;
  }

  .desktop\:align-text-top{
    vertical-align: text-top;
  }

  .desktop\:align-text-bottom{
    vertical-align: text-bottom;
  }

  .desktop\:font-klint-bold{
    font-family: KlintPro-Bold, Helvetica, Arial, sans-serif;
  }

  .desktop\:font-klint-regular{
    font-family: KlintPro-Regular, Helvetica, Arial, sans-serif;
  }

  .desktop\:text-xs{
    font-size: 0.75rem;
    line-height: 1rem;
  }

  .desktop\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .desktop\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .desktop\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .desktop\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .desktop\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .desktop\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .desktop\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .desktop\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }

  .desktop\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }

  .desktop\:text-7xl{
    font-size: 5rem;
  }

  .desktop\:text-8xl{
    font-size: 6rem;
  }

  .desktop\:text-9xl{
    font-size: 7rem;
  }

  .desktop\:font-thin{
    font-weight: 100;
  }

  .desktop\:font-extralight{
    font-weight: 200;
  }

  .desktop\:font-light{
    font-weight: 300;
  }

  .desktop\:font-normal{
    font-weight: 400;
  }

  .desktop\:font-medium{
    font-weight: 500;
  }

  .desktop\:font-semibold{
    font-weight: 600;
  }

  .desktop\:font-bold{
    font-weight: 700;
  }

  .desktop\:font-extrabold{
    font-weight: 800;
  }

  .desktop\:font-black{
    font-weight: 900;
  }

  .desktop\:uppercase{
    text-transform: uppercase;
  }

  .desktop\:lowercase{
    text-transform: lowercase;
  }

  .desktop\:capitalize{
    text-transform: capitalize;
  }

  .desktop\:normal-case{
    text-transform: none;
  }

  .desktop\:italic{
    font-style: italic;
  }

  .desktop\:not-italic{
    font-style: normal;
  }

  .desktop\:ordinal, .desktop\:slashed-zero, .desktop\:lining-nums, .desktop\:oldstyle-nums, .desktop\:proportional-nums, .desktop\:tabular-nums, .desktop\:diagonal-fractions, .desktop\:stacked-fractions{
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/);
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  }

  .desktop\:normal-nums{
    font-variant-numeric: normal;
  }

  .desktop\:ordinal{
    --tw-ordinal: ordinal;
  }

  .desktop\:slashed-zero{
    --tw-slashed-zero: slashed-zero;
  }

  .desktop\:lining-nums{
    --tw-numeric-figure: lining-nums;
  }

  .desktop\:oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums;
  }

  .desktop\:proportional-nums{
    --tw-numeric-spacing: proportional-nums;
  }

  .desktop\:tabular-nums{
    --tw-numeric-spacing: tabular-nums;
  }

  .desktop\:diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions;
  }

  .desktop\:stacked-fractions{
    --tw-numeric-fraction: stacked-fractions;
  }

  .desktop\:leading-3{
    line-height: .75rem;
  }

  .desktop\:leading-4{
    line-height: 1rem;
  }

  .desktop\:leading-5{
    line-height: 1.25rem;
  }

  .desktop\:leading-6{
    line-height: 1.5rem;
  }

  .desktop\:leading-7{
    line-height: 1.75rem;
  }

  .desktop\:leading-8{
    line-height: 2rem;
  }

  .desktop\:leading-9{
    line-height: 2.25rem;
  }

  .desktop\:leading-10{
    line-height: 2.5rem;
  }

  .desktop\:leading-none{
    line-height: 1;
  }

  .desktop\:leading-tight{
    line-height: 1.25;
  }

  .desktop\:leading-snug{
    line-height: 1.375;
  }

  .desktop\:leading-normal{
    line-height: 1.5;
  }

  .desktop\:leading-relaxed{
    line-height: 1.625;
  }

  .desktop\:leading-loose{
    line-height: 2;
  }

  .desktop\:tracking-tighter{
    letter-spacing: -0.05em;
  }

  .desktop\:tracking-tight{
    letter-spacing: -0.025em;
  }

  .desktop\:tracking-normal{
    letter-spacing: 0em;
  }

  .desktop\:tracking-wide{
    letter-spacing: 0.025em;
  }

  .desktop\:tracking-wider{
    letter-spacing: 0.05em;
  }

  .desktop\:tracking-widest{
    letter-spacing: 0.1em;
  }

  .desktop\:text-transparent{
    color: transparent;
  }

  .desktop\:text-current{
    color: currentColor;
  }

  .desktop\:text-black{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:text-white{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .desktop\:text-gray-50{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .desktop\:text-gray-100{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .desktop\:text-gray-200{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .desktop\:text-gray-300{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .desktop\:text-gray-400{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .desktop\:text-gray-500{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .desktop\:text-gray-600{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .desktop\:text-gray-700{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .desktop\:text-gray-800{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .desktop\:text-gray-900{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .desktop\:text-red-50{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .desktop\:text-red-100{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .desktop\:text-red-200{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .desktop\:text-red-300{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .desktop\:text-red-400{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .desktop\:text-red-500{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .desktop\:text-red-600{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .desktop\:text-red-700{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .desktop\:text-red-800{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .desktop\:text-red-900{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .desktop\:text-red-light{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .desktop\:text-red-default{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:text-red-dark{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:text-yellow-50{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .desktop\:text-yellow-100{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .desktop\:text-yellow-200{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .desktop\:text-yellow-300{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .desktop\:text-yellow-400{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .desktop\:text-yellow-500{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .desktop\:text-yellow-600{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .desktop\:text-yellow-700{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .desktop\:text-yellow-800{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .desktop\:text-yellow-900{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .desktop\:text-green-50{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .desktop\:text-green-100{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .desktop\:text-green-200{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .desktop\:text-green-300{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .desktop\:text-green-400{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .desktop\:text-green-500{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .desktop\:text-green-600{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .desktop\:text-green-700{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .desktop\:text-green-800{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .desktop\:text-green-900{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .desktop\:text-green-light{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .desktop\:text-green-default{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .desktop\:text-green-dark{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .desktop\:text-blue-50{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .desktop\:text-blue-100{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .desktop\:text-blue-200{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .desktop\:text-blue-300{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .desktop\:text-blue-400{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .desktop\:text-blue-500{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .desktop\:text-blue-600{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .desktop\:text-blue-700{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .desktop\:text-blue-800{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .desktop\:text-blue-900{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .desktop\:text-indigo-50{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .desktop\:text-indigo-100{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .desktop\:text-indigo-200{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .desktop\:text-indigo-300{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .desktop\:text-indigo-400{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .desktop\:text-indigo-500{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .desktop\:text-indigo-600{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .desktop\:text-indigo-700{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .desktop\:text-indigo-800{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .desktop\:text-indigo-900{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .desktop\:text-purple-50{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .desktop\:text-purple-100{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .desktop\:text-purple-200{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .desktop\:text-purple-300{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .desktop\:text-purple-400{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .desktop\:text-purple-500{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .desktop\:text-purple-600{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .desktop\:text-purple-700{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .desktop\:text-purple-800{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .desktop\:text-purple-900{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .desktop\:text-pink-50{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .desktop\:text-pink-100{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .desktop\:text-pink-200{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .desktop\:text-pink-300{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .desktop\:text-pink-400{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .desktop\:text-pink-500{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .desktop\:text-pink-600{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .desktop\:text-pink-700{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .desktop\:text-pink-800{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .desktop\:text-pink-900{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .desktop\:text-brown-light{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .desktop\:text-brown-semi{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .desktop\:text-brown-default{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .desktop\:text-brown-dark{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .desktop\:text-success-light{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .desktop\:text-success-default{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .desktop\:text-success-dark{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .desktop\:text-error-light{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .desktop\:text-error-default{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .desktop\:text-error-dark{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:text-navigation-dark{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-transparent{
    color: transparent;
  }

  .group:hover .desktop\:group-hover\:text-current{
    color: currentColor;
  }

  .group:hover .desktop\:group-hover\:text-black{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-white{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-gray-50{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-gray-100{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-gray-200{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-gray-300{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-gray-400{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-gray-500{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-gray-600{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-gray-700{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-gray-800{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-gray-900{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-50{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-100{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-200{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-300{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-400{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-500{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-600{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-700{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-800{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-900{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-light{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-default{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-red-dark{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-yellow-50{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-yellow-100{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-yellow-200{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-yellow-300{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-yellow-400{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-yellow-500{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-yellow-600{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-yellow-700{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-yellow-800{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-yellow-900{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-50{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-100{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-200{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-300{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-400{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-500{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-600{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-700{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-800{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-900{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-light{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-default{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-green-dark{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-blue-50{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-blue-100{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-blue-200{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-blue-300{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-blue-400{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-blue-500{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-blue-600{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-blue-700{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-blue-800{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-blue-900{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-indigo-50{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-indigo-100{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-indigo-200{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-indigo-300{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-indigo-400{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-indigo-500{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-indigo-600{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-indigo-700{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-indigo-800{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-indigo-900{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-purple-50{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-purple-100{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-purple-200{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-purple-300{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-purple-400{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-purple-500{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-purple-600{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-purple-700{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-purple-800{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-purple-900{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-pink-50{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-pink-100{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-pink-200{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-pink-300{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-pink-400{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-pink-500{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-pink-600{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-pink-700{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-pink-800{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-pink-900{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-brown-light{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-brown-semi{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-brown-default{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-brown-dark{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-success-light{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-success-default{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-success-dark{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-error-light{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-error-default{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-error-dark{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .group:hover .desktop\:group-hover\:text-navigation-dark{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-transparent:focus-within{
    color: transparent;
  }

  .desktop\:focus-within\:text-current:focus-within{
    color: currentColor;
  }

  .desktop\:focus-within\:text-black:focus-within{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-white:focus-within{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-gray-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-gray-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-gray-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-gray-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-gray-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-gray-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-gray-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-gray-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-gray-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-gray-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-red-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-yellow-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-yellow-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-yellow-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-yellow-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-yellow-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-yellow-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-yellow-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-yellow-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-yellow-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-yellow-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-green-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-blue-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-blue-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-blue-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-blue-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-blue-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-blue-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-blue-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-blue-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-blue-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-blue-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-indigo-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-indigo-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-indigo-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-indigo-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-indigo-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-indigo-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-indigo-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-indigo-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-indigo-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-indigo-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-purple-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-purple-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-purple-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-purple-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-purple-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-purple-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-purple-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-purple-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-purple-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-purple-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-pink-50:focus-within{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-pink-100:focus-within{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-pink-200:focus-within{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-pink-300:focus-within{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-pink-400:focus-within{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-pink-500:focus-within{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-pink-600:focus-within{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-pink-700:focus-within{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-pink-800:focus-within{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-pink-900:focus-within{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-brown-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-brown-semi:focus-within{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-brown-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-brown-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-success-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-success-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-success-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-error-light:focus-within{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-error-default:focus-within{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-error-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:focus-within\:text-navigation-dark:focus-within{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-transparent:hover{
    color: transparent;
  }

  .desktop\:hover\:text-current:hover{
    color: currentColor;
  }

  .desktop\:hover\:text-black:hover{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-white:hover{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-gray-50:hover{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-gray-100:hover{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-gray-200:hover{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-gray-300:hover{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-gray-400:hover{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-gray-500:hover{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-gray-600:hover{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-gray-700:hover{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-gray-800:hover{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-gray-900:hover{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-50:hover{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-100:hover{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-200:hover{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-300:hover{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-400:hover{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-500:hover{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-600:hover{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-700:hover{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-800:hover{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-900:hover{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-light:hover{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-default:hover{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-red-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-yellow-50:hover{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-yellow-100:hover{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-yellow-200:hover{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-yellow-300:hover{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-yellow-400:hover{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-yellow-500:hover{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-yellow-600:hover{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-yellow-700:hover{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-yellow-800:hover{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-yellow-900:hover{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-50:hover{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-100:hover{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-200:hover{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-300:hover{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-400:hover{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-500:hover{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-600:hover{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-700:hover{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-800:hover{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-900:hover{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-light:hover{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-default:hover{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-green-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-blue-50:hover{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-blue-100:hover{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-blue-200:hover{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-blue-300:hover{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-blue-400:hover{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-blue-500:hover{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-blue-600:hover{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-blue-700:hover{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-blue-800:hover{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-blue-900:hover{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-indigo-50:hover{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-indigo-100:hover{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-indigo-200:hover{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-indigo-300:hover{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-indigo-400:hover{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-indigo-500:hover{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-indigo-600:hover{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-indigo-700:hover{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-indigo-800:hover{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-indigo-900:hover{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-purple-50:hover{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-purple-100:hover{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-purple-200:hover{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-purple-300:hover{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-purple-400:hover{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-purple-500:hover{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-purple-600:hover{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-purple-700:hover{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-purple-800:hover{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-purple-900:hover{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-pink-50:hover{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-pink-100:hover{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-pink-200:hover{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-pink-300:hover{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-pink-400:hover{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-pink-500:hover{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-pink-600:hover{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-pink-700:hover{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-pink-800:hover{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-pink-900:hover{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-brown-light:hover{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-brown-semi:hover{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-brown-default:hover{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-brown-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-success-light:hover{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-success-default:hover{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-success-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-error-light:hover{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-error-default:hover{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-error-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:hover\:text-navigation-dark:hover{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-transparent:focus{
    color: transparent;
  }

  .desktop\:focus\:text-current:focus{
    color: currentColor;
  }

  .desktop\:focus\:text-black:focus{
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-white:focus{
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-gray-50:focus{
    --tw-text-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-gray-100:focus{
    --tw-text-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-gray-200:focus{
    --tw-text-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-gray-300:focus{
    --tw-text-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-gray-400:focus{
    --tw-text-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-gray-500:focus{
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-gray-600:focus{
    --tw-text-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-gray-700:focus{
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-gray-800:focus{
    --tw-text-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-gray-900:focus{
    --tw-text-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-50:focus{
    --tw-text-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-100:focus{
    --tw-text-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-200:focus{
    --tw-text-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-300:focus{
    --tw-text-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-400:focus{
    --tw-text-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-500:focus{
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-600:focus{
    --tw-text-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-700:focus{
    --tw-text-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-800:focus{
    --tw-text-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-900:focus{
    --tw-text-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-light:focus{
    --tw-text-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-default:focus{
    --tw-text-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-red-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-yellow-50:focus{
    --tw-text-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-yellow-100:focus{
    --tw-text-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-yellow-200:focus{
    --tw-text-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-yellow-300:focus{
    --tw-text-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-yellow-400:focus{
    --tw-text-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-yellow-500:focus{
    --tw-text-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-yellow-600:focus{
    --tw-text-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-yellow-700:focus{
    --tw-text-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-yellow-800:focus{
    --tw-text-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-yellow-900:focus{
    --tw-text-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-50:focus{
    --tw-text-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-100:focus{
    --tw-text-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-200:focus{
    --tw-text-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-300:focus{
    --tw-text-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-400:focus{
    --tw-text-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-500:focus{
    --tw-text-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-600:focus{
    --tw-text-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-700:focus{
    --tw-text-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-800:focus{
    --tw-text-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-900:focus{
    --tw-text-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-light:focus{
    --tw-text-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-default:focus{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-green-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-blue-50:focus{
    --tw-text-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-blue-100:focus{
    --tw-text-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-blue-200:focus{
    --tw-text-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-blue-300:focus{
    --tw-text-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-blue-400:focus{
    --tw-text-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-blue-500:focus{
    --tw-text-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-blue-600:focus{
    --tw-text-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-blue-700:focus{
    --tw-text-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-blue-800:focus{
    --tw-text-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-blue-900:focus{
    --tw-text-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-indigo-50:focus{
    --tw-text-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-indigo-100:focus{
    --tw-text-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-indigo-200:focus{
    --tw-text-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-indigo-300:focus{
    --tw-text-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-indigo-400:focus{
    --tw-text-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-indigo-500:focus{
    --tw-text-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-indigo-600:focus{
    --tw-text-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-indigo-700:focus{
    --tw-text-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-indigo-800:focus{
    --tw-text-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-indigo-900:focus{
    --tw-text-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-purple-50:focus{
    --tw-text-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-purple-100:focus{
    --tw-text-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-purple-200:focus{
    --tw-text-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-purple-300:focus{
    --tw-text-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-purple-400:focus{
    --tw-text-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-purple-500:focus{
    --tw-text-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-purple-600:focus{
    --tw-text-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-purple-700:focus{
    --tw-text-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-purple-800:focus{
    --tw-text-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-purple-900:focus{
    --tw-text-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-pink-50:focus{
    --tw-text-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-pink-100:focus{
    --tw-text-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-pink-200:focus{
    --tw-text-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-pink-300:focus{
    --tw-text-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-pink-400:focus{
    --tw-text-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-pink-500:focus{
    --tw-text-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-pink-600:focus{
    --tw-text-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-pink-700:focus{
    --tw-text-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-pink-800:focus{
    --tw-text-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-pink-900:focus{
    --tw-text-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-brown-light:focus{
    --tw-text-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-brown-semi:focus{
    --tw-text-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-brown-default:focus{
    --tw-text-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-brown-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-success-light:focus{
    --tw-text-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-success-default:focus{
    --tw-text-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-success-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-error-light:focus{
    --tw-text-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-error-default:focus{
    --tw-text-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-error-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-text-opacity));
  }

  .desktop\:focus\:text-navigation-dark:focus{
    --tw-text-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-text-opacity));
  }

  .desktop\:text-opacity-0{
    --tw-text-opacity: 0;
  }

  .desktop\:text-opacity-5{
    --tw-text-opacity: 0.05;
  }

  .desktop\:text-opacity-10{
    --tw-text-opacity: 0.1;
  }

  .desktop\:text-opacity-20{
    --tw-text-opacity: 0.2;
  }

  .desktop\:text-opacity-25{
    --tw-text-opacity: 0.25;
  }

  .desktop\:text-opacity-30{
    --tw-text-opacity: 0.3;
  }

  .desktop\:text-opacity-40{
    --tw-text-opacity: 0.4;
  }

  .desktop\:text-opacity-50{
    --tw-text-opacity: 0.5;
  }

  .desktop\:text-opacity-60{
    --tw-text-opacity: 0.6;
  }

  .desktop\:text-opacity-70{
    --tw-text-opacity: 0.7;
  }

  .desktop\:text-opacity-75{
    --tw-text-opacity: 0.75;
  }

  .desktop\:text-opacity-80{
    --tw-text-opacity: 0.8;
  }

  .desktop\:text-opacity-90{
    --tw-text-opacity: 0.9;
  }

  .desktop\:text-opacity-95{
    --tw-text-opacity: 0.95;
  }

  .desktop\:text-opacity-100{
    --tw-text-opacity: 1;
  }

  .group:hover .desktop\:group-hover\:text-opacity-0{
    --tw-text-opacity: 0;
  }

  .group:hover .desktop\:group-hover\:text-opacity-5{
    --tw-text-opacity: 0.05;
  }

  .group:hover .desktop\:group-hover\:text-opacity-10{
    --tw-text-opacity: 0.1;
  }

  .group:hover .desktop\:group-hover\:text-opacity-20{
    --tw-text-opacity: 0.2;
  }

  .group:hover .desktop\:group-hover\:text-opacity-25{
    --tw-text-opacity: 0.25;
  }

  .group:hover .desktop\:group-hover\:text-opacity-30{
    --tw-text-opacity: 0.3;
  }

  .group:hover .desktop\:group-hover\:text-opacity-40{
    --tw-text-opacity: 0.4;
  }

  .group:hover .desktop\:group-hover\:text-opacity-50{
    --tw-text-opacity: 0.5;
  }

  .group:hover .desktop\:group-hover\:text-opacity-60{
    --tw-text-opacity: 0.6;
  }

  .group:hover .desktop\:group-hover\:text-opacity-70{
    --tw-text-opacity: 0.7;
  }

  .group:hover .desktop\:group-hover\:text-opacity-75{
    --tw-text-opacity: 0.75;
  }

  .group:hover .desktop\:group-hover\:text-opacity-80{
    --tw-text-opacity: 0.8;
  }

  .group:hover .desktop\:group-hover\:text-opacity-90{
    --tw-text-opacity: 0.9;
  }

  .group:hover .desktop\:group-hover\:text-opacity-95{
    --tw-text-opacity: 0.95;
  }

  .group:hover .desktop\:group-hover\:text-opacity-100{
    --tw-text-opacity: 1;
  }

  .desktop\:focus-within\:text-opacity-0:focus-within{
    --tw-text-opacity: 0;
  }

  .desktop\:focus-within\:text-opacity-5:focus-within{
    --tw-text-opacity: 0.05;
  }

  .desktop\:focus-within\:text-opacity-10:focus-within{
    --tw-text-opacity: 0.1;
  }

  .desktop\:focus-within\:text-opacity-20:focus-within{
    --tw-text-opacity: 0.2;
  }

  .desktop\:focus-within\:text-opacity-25:focus-within{
    --tw-text-opacity: 0.25;
  }

  .desktop\:focus-within\:text-opacity-30:focus-within{
    --tw-text-opacity: 0.3;
  }

  .desktop\:focus-within\:text-opacity-40:focus-within{
    --tw-text-opacity: 0.4;
  }

  .desktop\:focus-within\:text-opacity-50:focus-within{
    --tw-text-opacity: 0.5;
  }

  .desktop\:focus-within\:text-opacity-60:focus-within{
    --tw-text-opacity: 0.6;
  }

  .desktop\:focus-within\:text-opacity-70:focus-within{
    --tw-text-opacity: 0.7;
  }

  .desktop\:focus-within\:text-opacity-75:focus-within{
    --tw-text-opacity: 0.75;
  }

  .desktop\:focus-within\:text-opacity-80:focus-within{
    --tw-text-opacity: 0.8;
  }

  .desktop\:focus-within\:text-opacity-90:focus-within{
    --tw-text-opacity: 0.9;
  }

  .desktop\:focus-within\:text-opacity-95:focus-within{
    --tw-text-opacity: 0.95;
  }

  .desktop\:focus-within\:text-opacity-100:focus-within{
    --tw-text-opacity: 1;
  }

  .desktop\:hover\:text-opacity-0:hover{
    --tw-text-opacity: 0;
  }

  .desktop\:hover\:text-opacity-5:hover{
    --tw-text-opacity: 0.05;
  }

  .desktop\:hover\:text-opacity-10:hover{
    --tw-text-opacity: 0.1;
  }

  .desktop\:hover\:text-opacity-20:hover{
    --tw-text-opacity: 0.2;
  }

  .desktop\:hover\:text-opacity-25:hover{
    --tw-text-opacity: 0.25;
  }

  .desktop\:hover\:text-opacity-30:hover{
    --tw-text-opacity: 0.3;
  }

  .desktop\:hover\:text-opacity-40:hover{
    --tw-text-opacity: 0.4;
  }

  .desktop\:hover\:text-opacity-50:hover{
    --tw-text-opacity: 0.5;
  }

  .desktop\:hover\:text-opacity-60:hover{
    --tw-text-opacity: 0.6;
  }

  .desktop\:hover\:text-opacity-70:hover{
    --tw-text-opacity: 0.7;
  }

  .desktop\:hover\:text-opacity-75:hover{
    --tw-text-opacity: 0.75;
  }

  .desktop\:hover\:text-opacity-80:hover{
    --tw-text-opacity: 0.8;
  }

  .desktop\:hover\:text-opacity-90:hover{
    --tw-text-opacity: 0.9;
  }

  .desktop\:hover\:text-opacity-95:hover{
    --tw-text-opacity: 0.95;
  }

  .desktop\:hover\:text-opacity-100:hover{
    --tw-text-opacity: 1;
  }

  .desktop\:focus\:text-opacity-0:focus{
    --tw-text-opacity: 0;
  }

  .desktop\:focus\:text-opacity-5:focus{
    --tw-text-opacity: 0.05;
  }

  .desktop\:focus\:text-opacity-10:focus{
    --tw-text-opacity: 0.1;
  }

  .desktop\:focus\:text-opacity-20:focus{
    --tw-text-opacity: 0.2;
  }

  .desktop\:focus\:text-opacity-25:focus{
    --tw-text-opacity: 0.25;
  }

  .desktop\:focus\:text-opacity-30:focus{
    --tw-text-opacity: 0.3;
  }

  .desktop\:focus\:text-opacity-40:focus{
    --tw-text-opacity: 0.4;
  }

  .desktop\:focus\:text-opacity-50:focus{
    --tw-text-opacity: 0.5;
  }

  .desktop\:focus\:text-opacity-60:focus{
    --tw-text-opacity: 0.6;
  }

  .desktop\:focus\:text-opacity-70:focus{
    --tw-text-opacity: 0.7;
  }

  .desktop\:focus\:text-opacity-75:focus{
    --tw-text-opacity: 0.75;
  }

  .desktop\:focus\:text-opacity-80:focus{
    --tw-text-opacity: 0.8;
  }

  .desktop\:focus\:text-opacity-90:focus{
    --tw-text-opacity: 0.9;
  }

  .desktop\:focus\:text-opacity-95:focus{
    --tw-text-opacity: 0.95;
  }

  .desktop\:focus\:text-opacity-100:focus{
    --tw-text-opacity: 1;
  }

  .desktop\:underline{
    text-decoration: underline;
  }

  .desktop\:line-through{
    text-decoration: line-through;
  }

  .desktop\:no-underline{
    text-decoration: none;
  }

  .group:hover .desktop\:group-hover\:underline{
    text-decoration: underline;
  }

  .group:hover .desktop\:group-hover\:line-through{
    text-decoration: line-through;
  }

  .group:hover .desktop\:group-hover\:no-underline{
    text-decoration: none;
  }

  .desktop\:focus-within\:underline:focus-within{
    text-decoration: underline;
  }

  .desktop\:focus-within\:line-through:focus-within{
    text-decoration: line-through;
  }

  .desktop\:focus-within\:no-underline:focus-within{
    text-decoration: none;
  }

  .desktop\:hover\:underline:hover{
    text-decoration: underline;
  }

  .desktop\:hover\:line-through:hover{
    text-decoration: line-through;
  }

  .desktop\:hover\:no-underline:hover{
    text-decoration: none;
  }

  .desktop\:focus\:underline:focus{
    text-decoration: underline;
  }

  .desktop\:focus\:line-through:focus{
    text-decoration: line-through;
  }

  .desktop\:focus\:no-underline:focus{
    text-decoration: none;
  }

  .desktop\:antialiased{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .desktop\:subpixel-antialiased{
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
  }

  .desktop\:placeholder-transparent::-moz-placeholder{
    color: transparent;
  }

  .desktop\:placeholder-transparent:-ms-input-placeholder{
    color: transparent;
  }

  .desktop\:placeholder-transparent::placeholder{
    color: transparent;
  }

  .desktop\:placeholder-current::-moz-placeholder{
    color: currentColor;
  }

  .desktop\:placeholder-current:-ms-input-placeholder{
    color: currentColor;
  }

  .desktop\:placeholder-current::placeholder{
    color: currentColor;
  }

  .desktop\:placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-black:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-black::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-white:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-white::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-gray-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-red-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-yellow-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-green-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-blue-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-indigo-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-purple-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-50::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-50::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-100::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-200::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-200:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-200::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-300::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-300:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-300::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-400::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-400:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-400::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-600::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-600:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-600::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-700::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-700:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-700::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-800::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-800:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-800::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-900::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-900:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-pink-900::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-brown-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-brown-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-brown-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-brown-semi::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-brown-semi:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-brown-semi::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-brown-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-brown-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-brown-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-brown-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-brown-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-brown-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-success-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-success-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-success-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-success-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-success-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-success-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-success-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-success-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-success-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-error-light::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-error-light:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-error-light::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-error-default::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-error-default:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-error-default::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-error-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-error-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-error-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-navigation-dark::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-navigation-dark:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-navigation-dark::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-transparent:focus::-moz-placeholder{
    color: transparent;
  }

  .desktop\:focus\:placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent;
  }

  .desktop\:focus\:placeholder-transparent:focus::placeholder{
    color: transparent;
  }

  .desktop\:focus\:placeholder-current:focus::-moz-placeholder{
    color: currentColor;
  }

  .desktop\:focus\:placeholder-current:focus:-ms-input-placeholder{
    color: currentColor;
  }

  .desktop\:focus\:placeholder-current:focus::placeholder{
    color: currentColor;
  }

  .desktop\:focus\:placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-black:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-white:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 250, 251, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(243, 244, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(229, 231, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 213, 219, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(156, 163, 175, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(75, 85, 99, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 65, 81, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(31, 41, 55, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-gray-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(17, 24, 39, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 242, 242, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 226, 226, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 202, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 165, 165, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(248, 113, 113, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(220, 38, 38, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 28, 28, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(153, 27, 27, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(127, 29, 29, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(234, 122, 122, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(185, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-red-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 251, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(254, 243, 199, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 230, 138, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 211, 77, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 191, 36, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 158, 11, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(217, 119, 6, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(180, 83, 9, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(146, 64, 14, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-yellow-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(120, 53, 15, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 253, 245, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(209, 250, 229, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 243, 208, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(110, 231, 183, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(52, 211, 153, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(16, 185, 129, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(5, 150, 105, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(4, 120, 87, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 95, 70, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(6, 78, 59, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(181, 209, 185, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-green-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(28, 37, 30, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(239, 246, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 234, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(191, 219, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(147, 197, 253, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(96, 165, 250, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(59, 130, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(37, 99, 235, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(29, 78, 216, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 64, 175, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-blue-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(30, 58, 138, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(238, 242, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(224, 231, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(199, 210, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(165, 180, 252, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(129, 140, 248, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(99, 102, 241, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(79, 70, 229, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(67, 56, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(55, 48, 163, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-indigo-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(49, 46, 129, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(245, 243, 255, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(237, 233, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(221, 214, 254, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(196, 181, 253, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(167, 139, 250, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(139, 92, 246, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(124, 58, 237, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(109, 40, 217, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(91, 33, 182, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-purple-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(76, 29, 149, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-50:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(253, 242, 248, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(252, 231, 243, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-200:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-200:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(251, 207, 232, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-300:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-300:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 168, 212, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-400:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-400:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(244, 114, 182, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-500:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-500:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(236, 72, 153, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-600:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-600:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(219, 39, 119, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-700:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-700:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(190, 24, 93, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-800:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-800:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(157, 23, 77, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-900:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-pink-900:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(131, 24, 67, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-brown-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-brown-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-brown-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(240, 233, 222, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-brown-semi:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-brown-semi:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-brown-semi:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(222, 214, 202, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-brown-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-brown-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-brown-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(123, 108, 92, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-brown-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-brown-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-brown-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(61, 39, 6, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-success-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-success-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-success-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(145, 224, 156, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-success-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-success-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-success-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(45, 153, 60, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-success-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-success-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-success-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(38, 59, 41, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-error-light:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-error-light:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-error-light:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(249, 134, 134, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-error-default:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-error-default:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-error-default:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(203, 7, 7, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-error-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-error-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-error-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(88, 0, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-navigation-dark:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-navigation-dark:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:focus\:placeholder-navigation-dark:focus::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgba(255, 205, 0, var(--tw-placeholder-opacity));
  }

  .desktop\:placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0;
  }

  .desktop\:placeholder-opacity-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 0;
  }

  .desktop\:placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0;
  }

  .desktop\:placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .desktop\:placeholder-opacity-5:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .desktop\:placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .desktop\:placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .desktop\:placeholder-opacity-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .desktop\:placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .desktop\:placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .desktop\:placeholder-opacity-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .desktop\:placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .desktop\:placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .desktop\:placeholder-opacity-25:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .desktop\:placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .desktop\:placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .desktop\:placeholder-opacity-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .desktop\:placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .desktop\:placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .desktop\:placeholder-opacity-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .desktop\:placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .desktop\:placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .desktop\:placeholder-opacity-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .desktop\:placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .desktop\:placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .desktop\:placeholder-opacity-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .desktop\:placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .desktop\:placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .desktop\:placeholder-opacity-70:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .desktop\:placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .desktop\:placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .desktop\:placeholder-opacity-75:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .desktop\:placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .desktop\:placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .desktop\:placeholder-opacity-80:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .desktop\:placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .desktop\:placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .desktop\:placeholder-opacity-90:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .desktop\:placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .desktop\:placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .desktop\:placeholder-opacity-95:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .desktop\:placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .desktop\:placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1;
  }

  .desktop\:placeholder-opacity-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
  }

  .desktop\:placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1;
  }

  .desktop\:focus\:placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0;
  }

  .desktop\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0;
  }

  .desktop\:focus\:placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0;
  }

  .desktop\:focus\:placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .desktop\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .desktop\:focus\:placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05;
  }

  .desktop\:focus\:placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .desktop\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .desktop\:focus\:placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1;
  }

  .desktop\:focus\:placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .desktop\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .desktop\:focus\:placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2;
  }

  .desktop\:focus\:placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .desktop\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .desktop\:focus\:placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25;
  }

  .desktop\:focus\:placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .desktop\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .desktop\:focus\:placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3;
  }

  .desktop\:focus\:placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .desktop\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .desktop\:focus\:placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4;
  }

  .desktop\:focus\:placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .desktop\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .desktop\:focus\:placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5;
  }

  .desktop\:focus\:placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .desktop\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .desktop\:focus\:placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6;
  }

  .desktop\:focus\:placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .desktop\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .desktop\:focus\:placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7;
  }

  .desktop\:focus\:placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .desktop\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .desktop\:focus\:placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75;
  }

  .desktop\:focus\:placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .desktop\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .desktop\:focus\:placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8;
  }

  .desktop\:focus\:placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .desktop\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .desktop\:focus\:placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9;
  }

  .desktop\:focus\:placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .desktop\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .desktop\:focus\:placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95;
  }

  .desktop\:focus\:placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1;
  }

  .desktop\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
  }

  .desktop\:focus\:placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1;
  }

  .desktop\:opacity-0{
    opacity: 0;
  }

  .desktop\:opacity-5{
    opacity: 0.05;
  }

  .desktop\:opacity-10{
    opacity: 0.1;
  }

  .desktop\:opacity-20{
    opacity: 0.2;
  }

  .desktop\:opacity-25{
    opacity: 0.25;
  }

  .desktop\:opacity-30{
    opacity: 0.3;
  }

  .desktop\:opacity-40{
    opacity: 0.4;
  }

  .desktop\:opacity-50{
    opacity: 0.5;
  }

  .desktop\:opacity-60{
    opacity: 0.6;
  }

  .desktop\:opacity-70{
    opacity: 0.7;
  }

  .desktop\:opacity-75{
    opacity: 0.75;
  }

  .desktop\:opacity-80{
    opacity: 0.8;
  }

  .desktop\:opacity-90{
    opacity: 0.9;
  }

  .desktop\:opacity-95{
    opacity: 0.95;
  }

  .desktop\:opacity-100{
    opacity: 1;
  }

  .group:hover .desktop\:group-hover\:opacity-0{
    opacity: 0;
  }

  .group:hover .desktop\:group-hover\:opacity-5{
    opacity: 0.05;
  }

  .group:hover .desktop\:group-hover\:opacity-10{
    opacity: 0.1;
  }

  .group:hover .desktop\:group-hover\:opacity-20{
    opacity: 0.2;
  }

  .group:hover .desktop\:group-hover\:opacity-25{
    opacity: 0.25;
  }

  .group:hover .desktop\:group-hover\:opacity-30{
    opacity: 0.3;
  }

  .group:hover .desktop\:group-hover\:opacity-40{
    opacity: 0.4;
  }

  .group:hover .desktop\:group-hover\:opacity-50{
    opacity: 0.5;
  }

  .group:hover .desktop\:group-hover\:opacity-60{
    opacity: 0.6;
  }

  .group:hover .desktop\:group-hover\:opacity-70{
    opacity: 0.7;
  }

  .group:hover .desktop\:group-hover\:opacity-75{
    opacity: 0.75;
  }

  .group:hover .desktop\:group-hover\:opacity-80{
    opacity: 0.8;
  }

  .group:hover .desktop\:group-hover\:opacity-90{
    opacity: 0.9;
  }

  .group:hover .desktop\:group-hover\:opacity-95{
    opacity: 0.95;
  }

  .group:hover .desktop\:group-hover\:opacity-100{
    opacity: 1;
  }

  .desktop\:focus-within\:opacity-0:focus-within{
    opacity: 0;
  }

  .desktop\:focus-within\:opacity-5:focus-within{
    opacity: 0.05;
  }

  .desktop\:focus-within\:opacity-10:focus-within{
    opacity: 0.1;
  }

  .desktop\:focus-within\:opacity-20:focus-within{
    opacity: 0.2;
  }

  .desktop\:focus-within\:opacity-25:focus-within{
    opacity: 0.25;
  }

  .desktop\:focus-within\:opacity-30:focus-within{
    opacity: 0.3;
  }

  .desktop\:focus-within\:opacity-40:focus-within{
    opacity: 0.4;
  }

  .desktop\:focus-within\:opacity-50:focus-within{
    opacity: 0.5;
  }

  .desktop\:focus-within\:opacity-60:focus-within{
    opacity: 0.6;
  }

  .desktop\:focus-within\:opacity-70:focus-within{
    opacity: 0.7;
  }

  .desktop\:focus-within\:opacity-75:focus-within{
    opacity: 0.75;
  }

  .desktop\:focus-within\:opacity-80:focus-within{
    opacity: 0.8;
  }

  .desktop\:focus-within\:opacity-90:focus-within{
    opacity: 0.9;
  }

  .desktop\:focus-within\:opacity-95:focus-within{
    opacity: 0.95;
  }

  .desktop\:focus-within\:opacity-100:focus-within{
    opacity: 1;
  }

  .desktop\:hover\:opacity-0:hover{
    opacity: 0;
  }

  .desktop\:hover\:opacity-5:hover{
    opacity: 0.05;
  }

  .desktop\:hover\:opacity-10:hover{
    opacity: 0.1;
  }

  .desktop\:hover\:opacity-20:hover{
    opacity: 0.2;
  }

  .desktop\:hover\:opacity-25:hover{
    opacity: 0.25;
  }

  .desktop\:hover\:opacity-30:hover{
    opacity: 0.3;
  }

  .desktop\:hover\:opacity-40:hover{
    opacity: 0.4;
  }

  .desktop\:hover\:opacity-50:hover{
    opacity: 0.5;
  }

  .desktop\:hover\:opacity-60:hover{
    opacity: 0.6;
  }

  .desktop\:hover\:opacity-70:hover{
    opacity: 0.7;
  }

  .desktop\:hover\:opacity-75:hover{
    opacity: 0.75;
  }

  .desktop\:hover\:opacity-80:hover{
    opacity: 0.8;
  }

  .desktop\:hover\:opacity-90:hover{
    opacity: 0.9;
  }

  .desktop\:hover\:opacity-95:hover{
    opacity: 0.95;
  }

  .desktop\:hover\:opacity-100:hover{
    opacity: 1;
  }

  .desktop\:focus\:opacity-0:focus{
    opacity: 0;
  }

  .desktop\:focus\:opacity-5:focus{
    opacity: 0.05;
  }

  .desktop\:focus\:opacity-10:focus{
    opacity: 0.1;
  }

  .desktop\:focus\:opacity-20:focus{
    opacity: 0.2;
  }

  .desktop\:focus\:opacity-25:focus{
    opacity: 0.25;
  }

  .desktop\:focus\:opacity-30:focus{
    opacity: 0.3;
  }

  .desktop\:focus\:opacity-40:focus{
    opacity: 0.4;
  }

  .desktop\:focus\:opacity-50:focus{
    opacity: 0.5;
  }

  .desktop\:focus\:opacity-60:focus{
    opacity: 0.6;
  }

  .desktop\:focus\:opacity-70:focus{
    opacity: 0.7;
  }

  .desktop\:focus\:opacity-75:focus{
    opacity: 0.75;
  }

  .desktop\:focus\:opacity-80:focus{
    opacity: 0.8;
  }

  .desktop\:focus\:opacity-90:focus{
    opacity: 0.9;
  }

  .desktop\:focus\:opacity-95:focus{
    opacity: 0.95;
  }

  .desktop\:focus\:opacity-100:focus{
    opacity: 1;
  }

  .desktop\:bg-blend-normal{
    background-blend-mode: normal;
  }

  .desktop\:bg-blend-multiply{
    background-blend-mode: multiply;
  }

  .desktop\:bg-blend-screen{
    background-blend-mode: screen;
  }

  .desktop\:bg-blend-overlay{
    background-blend-mode: overlay;
  }

  .desktop\:bg-blend-darken{
    background-blend-mode: darken;
  }

  .desktop\:bg-blend-lighten{
    background-blend-mode: lighten;
  }

  .desktop\:bg-blend-color-dodge{
    background-blend-mode: color-dodge;
  }

  .desktop\:bg-blend-color-burn{
    background-blend-mode: color-burn;
  }

  .desktop\:bg-blend-hard-light{
    background-blend-mode: hard-light;
  }

  .desktop\:bg-blend-soft-light{
    background-blend-mode: soft-light;
  }

  .desktop\:bg-blend-difference{
    background-blend-mode: difference;
  }

  .desktop\:bg-blend-exclusion{
    background-blend-mode: exclusion;
  }

  .desktop\:bg-blend-hue{
    background-blend-mode: hue;
  }

  .desktop\:bg-blend-saturation{
    background-blend-mode: saturation;
  }

  .desktop\:bg-blend-color{
    background-blend-mode: color;
  }

  .desktop\:bg-blend-luminosity{
    background-blend-mode: luminosity;
  }

  .desktop\:mix-blend-normal{
    mix-blend-mode: normal;
  }

  .desktop\:mix-blend-multiply{
    mix-blend-mode: multiply;
  }

  .desktop\:mix-blend-screen{
    mix-blend-mode: screen;
  }

  .desktop\:mix-blend-overlay{
    mix-blend-mode: overlay;
  }

  .desktop\:mix-blend-darken{
    mix-blend-mode: darken;
  }

  .desktop\:mix-blend-lighten{
    mix-blend-mode: lighten;
  }

  .desktop\:mix-blend-color-dodge{
    mix-blend-mode: color-dodge;
  }

  .desktop\:mix-blend-color-burn{
    mix-blend-mode: color-burn;
  }

  .desktop\:mix-blend-hard-light{
    mix-blend-mode: hard-light;
  }

  .desktop\:mix-blend-soft-light{
    mix-blend-mode: soft-light;
  }

  .desktop\:mix-blend-difference{
    mix-blend-mode: difference;
  }

  .desktop\:mix-blend-exclusion{
    mix-blend-mode: exclusion;
  }

  .desktop\:mix-blend-hue{
    mix-blend-mode: hue;
  }

  .desktop\:mix-blend-saturation{
    mix-blend-mode: saturation;
  }

  .desktop\:mix-blend-color{
    mix-blend-mode: color;
  }

  .desktop\:mix-blend-luminosity{
    mix-blend-mode: luminosity;
  }

  .desktop\:shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:shadow-none{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .desktop\:group-hover\:shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .desktop\:group-hover\:shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .desktop\:group-hover\:shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .desktop\:group-hover\:shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .desktop\:group-hover\:shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .desktop\:group-hover\:shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .desktop\:group-hover\:shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .desktop\:group-hover\:shadow-none{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus-within\:shadow-sm:focus-within{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus-within\:shadow:focus-within{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus-within\:shadow-md:focus-within{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus-within\:shadow-lg:focus-within{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus-within\:shadow-xl:focus-within{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus-within\:shadow-2xl:focus-within{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus-within\:shadow-inner:focus-within{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus-within\:shadow-none:focus-within{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:hover\:shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:hover\:shadow:hover{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:hover\:shadow-md:hover{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:hover\:shadow-lg:hover{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:hover\:shadow-xl:hover{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:hover\:shadow-2xl:hover{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:hover\:shadow-inner:hover{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:hover\:shadow-none:hover{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus\:shadow-sm:focus{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus\:shadow:focus{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus\:shadow-md:focus{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus\:shadow-lg:focus{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus\:shadow-xl:focus{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus\:shadow-2xl:focus{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus\:shadow-inner:focus{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:focus\:shadow-none:focus{
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .desktop\:outline-none{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .desktop\:outline-white{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .desktop\:outline-black{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .desktop\:focus-within\:outline-none:focus-within{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .desktop\:focus-within\:outline-white:focus-within{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .desktop\:focus-within\:outline-black:focus-within{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .desktop\:focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

  .desktop\:focus\:outline-white:focus{
    outline: 2px dotted white;
    outline-offset: 2px;
  }

  .desktop\:focus\:outline-black:focus{
    outline: 2px dotted black;
    outline-offset: 2px;
  }

  .desktop\:ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:ring-2{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:ring-4{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:ring-8{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:focus-within\:ring-0:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:focus-within\:ring-1:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:focus-within\:ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:focus-within\:ring-4:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:focus-within\:ring-8:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:focus-within\:ring:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:focus\:ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:focus\:ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:focus\:ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:focus\:ring-4:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:focus\:ring-8:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:focus\:ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  }

  .desktop\:ring-inset{
    --tw-ring-inset: inset;
  }

  .desktop\:focus-within\:ring-inset:focus-within{
    --tw-ring-inset: inset;
  }

  .desktop\:focus\:ring-inset:focus{
    --tw-ring-inset: inset;
  }

  .desktop\:ring-transparent{
    --tw-ring-color: transparent;
  }

  .desktop\:ring-current{
    --tw-ring-color: currentColor;
  }

  .desktop\:ring-black{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
  }

  .desktop\:ring-white{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
  }

  .desktop\:ring-gray-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
  }

  .desktop\:ring-gray-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
  }

  .desktop\:ring-gray-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
  }

  .desktop\:ring-gray-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
  }

  .desktop\:ring-gray-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
  }

  .desktop\:ring-gray-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
  }

  .desktop\:ring-gray-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
  }

  .desktop\:ring-gray-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
  }

  .desktop\:ring-gray-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
  }

  .desktop\:ring-gray-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(234, 122, 122, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 0, 0, var(--tw-ring-opacity));
  }

  .desktop\:ring-red-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .desktop\:ring-yellow-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
  }

  .desktop\:ring-yellow-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
  }

  .desktop\:ring-yellow-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
  }

  .desktop\:ring-yellow-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
  }

  .desktop\:ring-yellow-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
  }

  .desktop\:ring-yellow-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
  }

  .desktop\:ring-yellow-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
  }

  .desktop\:ring-yellow-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
  }

  .desktop\:ring-yellow-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
  }

  .desktop\:ring-yellow-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(181, 209, 185, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .desktop\:ring-green-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(28, 37, 30, var(--tw-ring-opacity));
  }

  .desktop\:ring-blue-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
  }

  .desktop\:ring-blue-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
  }

  .desktop\:ring-blue-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
  }

  .desktop\:ring-blue-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
  }

  .desktop\:ring-blue-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
  }

  .desktop\:ring-blue-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
  }

  .desktop\:ring-blue-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
  }

  .desktop\:ring-blue-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
  }

  .desktop\:ring-blue-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
  }

  .desktop\:ring-blue-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
  }

  .desktop\:ring-indigo-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
  }

  .desktop\:ring-indigo-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
  }

  .desktop\:ring-indigo-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
  }

  .desktop\:ring-indigo-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
  }

  .desktop\:ring-indigo-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
  }

  .desktop\:ring-indigo-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
  }

  .desktop\:ring-indigo-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
  }

  .desktop\:ring-indigo-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
  }

  .desktop\:ring-indigo-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
  }

  .desktop\:ring-indigo-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
  }

  .desktop\:ring-purple-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
  }

  .desktop\:ring-purple-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
  }

  .desktop\:ring-purple-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
  }

  .desktop\:ring-purple-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
  }

  .desktop\:ring-purple-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
  }

  .desktop\:ring-purple-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
  }

  .desktop\:ring-purple-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
  }

  .desktop\:ring-purple-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
  }

  .desktop\:ring-purple-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
  }

  .desktop\:ring-purple-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
  }

  .desktop\:ring-pink-50{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
  }

  .desktop\:ring-pink-100{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
  }

  .desktop\:ring-pink-200{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
  }

  .desktop\:ring-pink-300{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
  }

  .desktop\:ring-pink-400{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
  }

  .desktop\:ring-pink-500{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
  }

  .desktop\:ring-pink-600{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
  }

  .desktop\:ring-pink-700{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
  }

  .desktop\:ring-pink-800{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
  }

  .desktop\:ring-pink-900{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
  }

  .desktop\:ring-brown-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(240, 233, 222, var(--tw-ring-opacity));
  }

  .desktop\:ring-brown-semi{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(222, 214, 202, var(--tw-ring-opacity));
  }

  .desktop\:ring-brown-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(123, 108, 92, var(--tw-ring-opacity));
  }

  .desktop\:ring-brown-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(61, 39, 6, var(--tw-ring-opacity));
  }

  .desktop\:ring-success-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(145, 224, 156, var(--tw-ring-opacity));
  }

  .desktop\:ring-success-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(45, 153, 60, var(--tw-ring-opacity));
  }

  .desktop\:ring-success-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .desktop\:ring-error-light{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 134, 134, var(--tw-ring-opacity));
  }

  .desktop\:ring-error-default{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(203, 7, 7, var(--tw-ring-opacity));
  }

  .desktop\:ring-error-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .desktop\:ring-navigation-dark{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 205, 0, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-transparent:focus-within{
    --tw-ring-color: transparent;
  }

  .desktop\:focus-within\:ring-current:focus-within{
    --tw-ring-color: currentColor;
  }

  .desktop\:focus-within\:ring-black:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-white:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-gray-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-gray-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-gray-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-gray-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-gray-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-gray-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-gray-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-gray-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-gray-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-gray-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(234, 122, 122, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 0, 0, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-red-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-yellow-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-yellow-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-yellow-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-yellow-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-yellow-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-yellow-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-yellow-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-yellow-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-yellow-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-yellow-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(181, 209, 185, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-green-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(28, 37, 30, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-blue-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-blue-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-blue-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-blue-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-blue-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-blue-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-blue-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-blue-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-blue-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-blue-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-indigo-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-indigo-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-indigo-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-indigo-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-indigo-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-indigo-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-indigo-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-indigo-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-indigo-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-indigo-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-purple-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-purple-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-purple-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-purple-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-purple-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-purple-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-purple-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-purple-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-purple-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-purple-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-pink-50:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-pink-100:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-pink-200:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-pink-300:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-pink-400:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-pink-500:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-pink-600:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-pink-700:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-pink-800:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-pink-900:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-brown-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(240, 233, 222, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-brown-semi:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(222, 214, 202, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-brown-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(123, 108, 92, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-brown-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(61, 39, 6, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-success-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(145, 224, 156, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-success-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(45, 153, 60, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-success-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-error-light:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 134, 134, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-error-default:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(203, 7, 7, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-error-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .desktop\:focus-within\:ring-navigation-dark:focus-within{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 205, 0, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-transparent:focus{
    --tw-ring-color: transparent;
  }

  .desktop\:focus\:ring-current:focus{
    --tw-ring-color: currentColor;
  }

  .desktop\:focus\:ring-black:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-white:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-gray-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-gray-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-gray-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-gray-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-gray-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-gray-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-gray-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-gray-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-gray-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-gray-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 242, 242, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 226, 226, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 202, 202, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(220, 38, 38, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 28, 28, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(153, 27, 27, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(127, 29, 29, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(234, 122, 122, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(185, 0, 0, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-red-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-yellow-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 251, 235, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-yellow-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(254, 243, 199, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-yellow-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 230, 138, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-yellow-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 211, 77, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-yellow-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 191, 36, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-yellow-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-yellow-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(217, 119, 6, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-yellow-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(180, 83, 9, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-yellow-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(146, 64, 14, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-yellow-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(120, 53, 15, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 253, 245, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(209, 250, 229, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 243, 208, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(52, 211, 153, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(5, 150, 105, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(4, 120, 87, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 95, 70, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(6, 78, 59, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(181, 209, 185, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-green-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(28, 37, 30, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-blue-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(239, 246, 255, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-blue-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 234, 254, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-blue-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-blue-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-blue-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-blue-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-blue-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-blue-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-blue-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 64, 175, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-blue-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(30, 58, 138, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-indigo-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(238, 242, 255, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-indigo-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(224, 231, 255, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-indigo-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(199, 210, 254, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-indigo-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(165, 180, 252, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-indigo-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(129, 140, 248, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-indigo-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-indigo-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(79, 70, 229, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-indigo-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(67, 56, 202, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-indigo-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(55, 48, 163, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-indigo-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(49, 46, 129, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-purple-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(245, 243, 255, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-purple-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(237, 233, 254, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-purple-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(221, 214, 254, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-purple-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(196, 181, 253, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-purple-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(167, 139, 250, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-purple-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-purple-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(124, 58, 237, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-purple-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(109, 40, 217, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-purple-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(91, 33, 182, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-purple-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(76, 29, 149, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-pink-50:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(253, 242, 248, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-pink-100:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(252, 231, 243, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-pink-200:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(251, 207, 232, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-pink-300:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 168, 212, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-pink-400:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(244, 114, 182, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-pink-500:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(236, 72, 153, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-pink-600:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(219, 39, 119, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-pink-700:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(190, 24, 93, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-pink-800:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(157, 23, 77, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-pink-900:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(131, 24, 67, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-brown-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(240, 233, 222, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-brown-semi:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(222, 214, 202, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-brown-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(123, 108, 92, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-brown-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(61, 39, 6, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-success-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(145, 224, 156, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-success-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(45, 153, 60, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-success-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(38, 59, 41, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-error-light:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(249, 134, 134, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-error-default:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(203, 7, 7, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-error-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(88, 0, 0, var(--tw-ring-opacity));
  }

  .desktop\:focus\:ring-navigation-dark:focus{
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(255, 205, 0, var(--tw-ring-opacity));
  }

  .desktop\:ring-opacity-0{
    --tw-ring-opacity: 0;
  }

  .desktop\:ring-opacity-5{
    --tw-ring-opacity: 0.05;
  }

  .desktop\:ring-opacity-10{
    --tw-ring-opacity: 0.1;
  }

  .desktop\:ring-opacity-20{
    --tw-ring-opacity: 0.2;
  }

  .desktop\:ring-opacity-25{
    --tw-ring-opacity: 0.25;
  }

  .desktop\:ring-opacity-30{
    --tw-ring-opacity: 0.3;
  }

  .desktop\:ring-opacity-40{
    --tw-ring-opacity: 0.4;
  }

  .desktop\:ring-opacity-50{
    --tw-ring-opacity: 0.5;
  }

  .desktop\:ring-opacity-60{
    --tw-ring-opacity: 0.6;
  }

  .desktop\:ring-opacity-70{
    --tw-ring-opacity: 0.7;
  }

  .desktop\:ring-opacity-75{
    --tw-ring-opacity: 0.75;
  }

  .desktop\:ring-opacity-80{
    --tw-ring-opacity: 0.8;
  }

  .desktop\:ring-opacity-90{
    --tw-ring-opacity: 0.9;
  }

  .desktop\:ring-opacity-95{
    --tw-ring-opacity: 0.95;
  }

  .desktop\:ring-opacity-100{
    --tw-ring-opacity: 1;
  }

  .desktop\:focus-within\:ring-opacity-0:focus-within{
    --tw-ring-opacity: 0;
  }

  .desktop\:focus-within\:ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05;
  }

  .desktop\:focus-within\:ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1;
  }

  .desktop\:focus-within\:ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2;
  }

  .desktop\:focus-within\:ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25;
  }

  .desktop\:focus-within\:ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3;
  }

  .desktop\:focus-within\:ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4;
  }

  .desktop\:focus-within\:ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5;
  }

  .desktop\:focus-within\:ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6;
  }

  .desktop\:focus-within\:ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7;
  }

  .desktop\:focus-within\:ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75;
  }

  .desktop\:focus-within\:ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8;
  }

  .desktop\:focus-within\:ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9;
  }

  .desktop\:focus-within\:ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95;
  }

  .desktop\:focus-within\:ring-opacity-100:focus-within{
    --tw-ring-opacity: 1;
  }

  .desktop\:focus\:ring-opacity-0:focus{
    --tw-ring-opacity: 0;
  }

  .desktop\:focus\:ring-opacity-5:focus{
    --tw-ring-opacity: 0.05;
  }

  .desktop\:focus\:ring-opacity-10:focus{
    --tw-ring-opacity: 0.1;
  }

  .desktop\:focus\:ring-opacity-20:focus{
    --tw-ring-opacity: 0.2;
  }

  .desktop\:focus\:ring-opacity-25:focus{
    --tw-ring-opacity: 0.25;
  }

  .desktop\:focus\:ring-opacity-30:focus{
    --tw-ring-opacity: 0.3;
  }

  .desktop\:focus\:ring-opacity-40:focus{
    --tw-ring-opacity: 0.4;
  }

  .desktop\:focus\:ring-opacity-50:focus{
    --tw-ring-opacity: 0.5;
  }

  .desktop\:focus\:ring-opacity-60:focus{
    --tw-ring-opacity: 0.6;
  }

  .desktop\:focus\:ring-opacity-70:focus{
    --tw-ring-opacity: 0.7;
  }

  .desktop\:focus\:ring-opacity-75:focus{
    --tw-ring-opacity: 0.75;
  }

  .desktop\:focus\:ring-opacity-80:focus{
    --tw-ring-opacity: 0.8;
  }

  .desktop\:focus\:ring-opacity-90:focus{
    --tw-ring-opacity: 0.9;
  }

  .desktop\:focus\:ring-opacity-95:focus{
    --tw-ring-opacity: 0.95;
  }

  .desktop\:focus\:ring-opacity-100:focus{
    --tw-ring-opacity: 1;
  }

  .desktop\:ring-offset-0{
    --tw-ring-offset-width: 0px;
  }

  .desktop\:ring-offset-1{
    --tw-ring-offset-width: 1px;
  }

  .desktop\:ring-offset-2{
    --tw-ring-offset-width: 2px;
  }

  .desktop\:ring-offset-4{
    --tw-ring-offset-width: 4px;
  }

  .desktop\:ring-offset-8{
    --tw-ring-offset-width: 8px;
  }

  .desktop\:focus-within\:ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px;
  }

  .desktop\:focus-within\:ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px;
  }

  .desktop\:focus-within\:ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px;
  }

  .desktop\:focus-within\:ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px;
  }

  .desktop\:focus-within\:ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px;
  }

  .desktop\:focus\:ring-offset-0:focus{
    --tw-ring-offset-width: 0px;
  }

  .desktop\:focus\:ring-offset-1:focus{
    --tw-ring-offset-width: 1px;
  }

  .desktop\:focus\:ring-offset-2:focus{
    --tw-ring-offset-width: 2px;
  }

  .desktop\:focus\:ring-offset-4:focus{
    --tw-ring-offset-width: 4px;
  }

  .desktop\:focus\:ring-offset-8:focus{
    --tw-ring-offset-width: 8px;
  }

  .desktop\:ring-offset-transparent{
    --tw-ring-offset-color: transparent;
  }

  .desktop\:ring-offset-current{
    --tw-ring-offset-color: currentColor;
  }

  .desktop\:ring-offset-black{
    --tw-ring-offset-color: #000;
  }

  .desktop\:ring-offset-white{
    --tw-ring-offset-color: #fff;
  }

  .desktop\:ring-offset-gray-50{
    --tw-ring-offset-color: #f9fafb;
  }

  .desktop\:ring-offset-gray-100{
    --tw-ring-offset-color: #f3f4f6;
  }

  .desktop\:ring-offset-gray-200{
    --tw-ring-offset-color: #e5e7eb;
  }

  .desktop\:ring-offset-gray-300{
    --tw-ring-offset-color: #d1d5db;
  }

  .desktop\:ring-offset-gray-400{
    --tw-ring-offset-color: #9ca3af;
  }

  .desktop\:ring-offset-gray-500{
    --tw-ring-offset-color: #6b7280;
  }

  .desktop\:ring-offset-gray-600{
    --tw-ring-offset-color: #4b5563;
  }

  .desktop\:ring-offset-gray-700{
    --tw-ring-offset-color: #374151;
  }

  .desktop\:ring-offset-gray-800{
    --tw-ring-offset-color: #1f2937;
  }

  .desktop\:ring-offset-gray-900{
    --tw-ring-offset-color: #111827;
  }

  .desktop\:ring-offset-red-50{
    --tw-ring-offset-color: #fef2f2;
  }

  .desktop\:ring-offset-red-100{
    --tw-ring-offset-color: #fee2e2;
  }

  .desktop\:ring-offset-red-200{
    --tw-ring-offset-color: #fecaca;
  }

  .desktop\:ring-offset-red-300{
    --tw-ring-offset-color: #fca5a5;
  }

  .desktop\:ring-offset-red-400{
    --tw-ring-offset-color: #f87171;
  }

  .desktop\:ring-offset-red-500{
    --tw-ring-offset-color: #ef4444;
  }

  .desktop\:ring-offset-red-600{
    --tw-ring-offset-color: #dc2626;
  }

  .desktop\:ring-offset-red-700{
    --tw-ring-offset-color: #b91c1c;
  }

  .desktop\:ring-offset-red-800{
    --tw-ring-offset-color: #991b1b;
  }

  .desktop\:ring-offset-red-900{
    --tw-ring-offset-color: #7f1d1d;
  }

  .desktop\:ring-offset-red-light{
    --tw-ring-offset-color: #EA7A7A;
  }

  .desktop\:ring-offset-red-default{
    --tw-ring-offset-color: #B90000;
  }

  .desktop\:ring-offset-red-dark{
    --tw-ring-offset-color: #580000;
  }

  .desktop\:ring-offset-yellow-50{
    --tw-ring-offset-color: #fffbeb;
  }

  .desktop\:ring-offset-yellow-100{
    --tw-ring-offset-color: #fef3c7;
  }

  .desktop\:ring-offset-yellow-200{
    --tw-ring-offset-color: #fde68a;
  }

  .desktop\:ring-offset-yellow-300{
    --tw-ring-offset-color: #fcd34d;
  }

  .desktop\:ring-offset-yellow-400{
    --tw-ring-offset-color: #fbbf24;
  }

  .desktop\:ring-offset-yellow-500{
    --tw-ring-offset-color: #f59e0b;
  }

  .desktop\:ring-offset-yellow-600{
    --tw-ring-offset-color: #d97706;
  }

  .desktop\:ring-offset-yellow-700{
    --tw-ring-offset-color: #b45309;
  }

  .desktop\:ring-offset-yellow-800{
    --tw-ring-offset-color: #92400e;
  }

  .desktop\:ring-offset-yellow-900{
    --tw-ring-offset-color: #78350f;
  }

  .desktop\:ring-offset-green-50{
    --tw-ring-offset-color: #ecfdf5;
  }

  .desktop\:ring-offset-green-100{
    --tw-ring-offset-color: #d1fae5;
  }

  .desktop\:ring-offset-green-200{
    --tw-ring-offset-color: #a7f3d0;
  }

  .desktop\:ring-offset-green-300{
    --tw-ring-offset-color: #6ee7b7;
  }

  .desktop\:ring-offset-green-400{
    --tw-ring-offset-color: #34d399;
  }

  .desktop\:ring-offset-green-500{
    --tw-ring-offset-color: #10b981;
  }

  .desktop\:ring-offset-green-600{
    --tw-ring-offset-color: #059669;
  }

  .desktop\:ring-offset-green-700{
    --tw-ring-offset-color: #047857;
  }

  .desktop\:ring-offset-green-800{
    --tw-ring-offset-color: #065f46;
  }

  .desktop\:ring-offset-green-900{
    --tw-ring-offset-color: #064e3b;
  }

  .desktop\:ring-offset-green-light{
    --tw-ring-offset-color: #B5D1B9;
  }

  .desktop\:ring-offset-green-default{
    --tw-ring-offset-color: #263B29;
  }

  .desktop\:ring-offset-green-dark{
    --tw-ring-offset-color: #1C251E;
  }

  .desktop\:ring-offset-blue-50{
    --tw-ring-offset-color: #eff6ff;
  }

  .desktop\:ring-offset-blue-100{
    --tw-ring-offset-color: #dbeafe;
  }

  .desktop\:ring-offset-blue-200{
    --tw-ring-offset-color: #bfdbfe;
  }

  .desktop\:ring-offset-blue-300{
    --tw-ring-offset-color: #93c5fd;
  }

  .desktop\:ring-offset-blue-400{
    --tw-ring-offset-color: #60a5fa;
  }

  .desktop\:ring-offset-blue-500{
    --tw-ring-offset-color: #3b82f6;
  }

  .desktop\:ring-offset-blue-600{
    --tw-ring-offset-color: #2563eb;
  }

  .desktop\:ring-offset-blue-700{
    --tw-ring-offset-color: #1d4ed8;
  }

  .desktop\:ring-offset-blue-800{
    --tw-ring-offset-color: #1e40af;
  }

  .desktop\:ring-offset-blue-900{
    --tw-ring-offset-color: #1e3a8a;
  }

  .desktop\:ring-offset-indigo-50{
    --tw-ring-offset-color: #eef2ff;
  }

  .desktop\:ring-offset-indigo-100{
    --tw-ring-offset-color: #e0e7ff;
  }

  .desktop\:ring-offset-indigo-200{
    --tw-ring-offset-color: #c7d2fe;
  }

  .desktop\:ring-offset-indigo-300{
    --tw-ring-offset-color: #a5b4fc;
  }

  .desktop\:ring-offset-indigo-400{
    --tw-ring-offset-color: #818cf8;
  }

  .desktop\:ring-offset-indigo-500{
    --tw-ring-offset-color: #6366f1;
  }

  .desktop\:ring-offset-indigo-600{
    --tw-ring-offset-color: #4f46e5;
  }

  .desktop\:ring-offset-indigo-700{
    --tw-ring-offset-color: #4338ca;
  }

  .desktop\:ring-offset-indigo-800{
    --tw-ring-offset-color: #3730a3;
  }

  .desktop\:ring-offset-indigo-900{
    --tw-ring-offset-color: #312e81;
  }

  .desktop\:ring-offset-purple-50{
    --tw-ring-offset-color: #f5f3ff;
  }

  .desktop\:ring-offset-purple-100{
    --tw-ring-offset-color: #ede9fe;
  }

  .desktop\:ring-offset-purple-200{
    --tw-ring-offset-color: #ddd6fe;
  }

  .desktop\:ring-offset-purple-300{
    --tw-ring-offset-color: #c4b5fd;
  }

  .desktop\:ring-offset-purple-400{
    --tw-ring-offset-color: #a78bfa;
  }

  .desktop\:ring-offset-purple-500{
    --tw-ring-offset-color: #8b5cf6;
  }

  .desktop\:ring-offset-purple-600{
    --tw-ring-offset-color: #7c3aed;
  }

  .desktop\:ring-offset-purple-700{
    --tw-ring-offset-color: #6d28d9;
  }

  .desktop\:ring-offset-purple-800{
    --tw-ring-offset-color: #5b21b6;
  }

  .desktop\:ring-offset-purple-900{
    --tw-ring-offset-color: #4c1d95;
  }

  .desktop\:ring-offset-pink-50{
    --tw-ring-offset-color: #fdf2f8;
  }

  .desktop\:ring-offset-pink-100{
    --tw-ring-offset-color: #fce7f3;
  }

  .desktop\:ring-offset-pink-200{
    --tw-ring-offset-color: #fbcfe8;
  }

  .desktop\:ring-offset-pink-300{
    --tw-ring-offset-color: #f9a8d4;
  }

  .desktop\:ring-offset-pink-400{
    --tw-ring-offset-color: #f472b6;
  }

  .desktop\:ring-offset-pink-500{
    --tw-ring-offset-color: #ec4899;
  }

  .desktop\:ring-offset-pink-600{
    --tw-ring-offset-color: #db2777;
  }

  .desktop\:ring-offset-pink-700{
    --tw-ring-offset-color: #be185d;
  }

  .desktop\:ring-offset-pink-800{
    --tw-ring-offset-color: #9d174d;
  }

  .desktop\:ring-offset-pink-900{
    --tw-ring-offset-color: #831843;
  }

  .desktop\:ring-offset-brown-light{
    --tw-ring-offset-color: #f0e9de;
  }

  .desktop\:ring-offset-brown-semi{
    --tw-ring-offset-color: #ded6ca;
  }

  .desktop\:ring-offset-brown-default{
    --tw-ring-offset-color: #7b6c5c;
  }

  .desktop\:ring-offset-brown-dark{
    --tw-ring-offset-color: #3d2706;
  }

  .desktop\:ring-offset-success-light{
    --tw-ring-offset-color: #91E09C;
  }

  .desktop\:ring-offset-success-default{
    --tw-ring-offset-color: #2D993C;
  }

  .desktop\:ring-offset-success-dark{
    --tw-ring-offset-color: #263B29;
  }

  .desktop\:ring-offset-error-light{
    --tw-ring-offset-color: #F98686;
  }

  .desktop\:ring-offset-error-default{
    --tw-ring-offset-color: #CB0707;
  }

  .desktop\:ring-offset-error-dark{
    --tw-ring-offset-color: #580000;
  }

  .desktop\:ring-offset-navigation-dark{
    --tw-ring-offset-color: #ffcd00;
  }

  .desktop\:focus-within\:ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent;
  }

  .desktop\:focus-within\:ring-offset-current:focus-within{
    --tw-ring-offset-color: currentColor;
  }

  .desktop\:focus-within\:ring-offset-black:focus-within{
    --tw-ring-offset-color: #000;
  }

  .desktop\:focus-within\:ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff;
  }

  .desktop\:focus-within\:ring-offset-gray-50:focus-within{
    --tw-ring-offset-color: #f9fafb;
  }

  .desktop\:focus-within\:ring-offset-gray-100:focus-within{
    --tw-ring-offset-color: #f3f4f6;
  }

  .desktop\:focus-within\:ring-offset-gray-200:focus-within{
    --tw-ring-offset-color: #e5e7eb;
  }

  .desktop\:focus-within\:ring-offset-gray-300:focus-within{
    --tw-ring-offset-color: #d1d5db;
  }

  .desktop\:focus-within\:ring-offset-gray-400:focus-within{
    --tw-ring-offset-color: #9ca3af;
  }

  .desktop\:focus-within\:ring-offset-gray-500:focus-within{
    --tw-ring-offset-color: #6b7280;
  }

  .desktop\:focus-within\:ring-offset-gray-600:focus-within{
    --tw-ring-offset-color: #4b5563;
  }

  .desktop\:focus-within\:ring-offset-gray-700:focus-within{
    --tw-ring-offset-color: #374151;
  }

  .desktop\:focus-within\:ring-offset-gray-800:focus-within{
    --tw-ring-offset-color: #1f2937;
  }

  .desktop\:focus-within\:ring-offset-gray-900:focus-within{
    --tw-ring-offset-color: #111827;
  }

  .desktop\:focus-within\:ring-offset-red-50:focus-within{
    --tw-ring-offset-color: #fef2f2;
  }

  .desktop\:focus-within\:ring-offset-red-100:focus-within{
    --tw-ring-offset-color: #fee2e2;
  }

  .desktop\:focus-within\:ring-offset-red-200:focus-within{
    --tw-ring-offset-color: #fecaca;
  }

  .desktop\:focus-within\:ring-offset-red-300:focus-within{
    --tw-ring-offset-color: #fca5a5;
  }

  .desktop\:focus-within\:ring-offset-red-400:focus-within{
    --tw-ring-offset-color: #f87171;
  }

  .desktop\:focus-within\:ring-offset-red-500:focus-within{
    --tw-ring-offset-color: #ef4444;
  }

  .desktop\:focus-within\:ring-offset-red-600:focus-within{
    --tw-ring-offset-color: #dc2626;
  }

  .desktop\:focus-within\:ring-offset-red-700:focus-within{
    --tw-ring-offset-color: #b91c1c;
  }

  .desktop\:focus-within\:ring-offset-red-800:focus-within{
    --tw-ring-offset-color: #991b1b;
  }

  .desktop\:focus-within\:ring-offset-red-900:focus-within{
    --tw-ring-offset-color: #7f1d1d;
  }

  .desktop\:focus-within\:ring-offset-red-light:focus-within{
    --tw-ring-offset-color: #EA7A7A;
  }

  .desktop\:focus-within\:ring-offset-red-default:focus-within{
    --tw-ring-offset-color: #B90000;
  }

  .desktop\:focus-within\:ring-offset-red-dark:focus-within{
    --tw-ring-offset-color: #580000;
  }

  .desktop\:focus-within\:ring-offset-yellow-50:focus-within{
    --tw-ring-offset-color: #fffbeb;
  }

  .desktop\:focus-within\:ring-offset-yellow-100:focus-within{
    --tw-ring-offset-color: #fef3c7;
  }

  .desktop\:focus-within\:ring-offset-yellow-200:focus-within{
    --tw-ring-offset-color: #fde68a;
  }

  .desktop\:focus-within\:ring-offset-yellow-300:focus-within{
    --tw-ring-offset-color: #fcd34d;
  }

  .desktop\:focus-within\:ring-offset-yellow-400:focus-within{
    --tw-ring-offset-color: #fbbf24;
  }

  .desktop\:focus-within\:ring-offset-yellow-500:focus-within{
    --tw-ring-offset-color: #f59e0b;
  }

  .desktop\:focus-within\:ring-offset-yellow-600:focus-within{
    --tw-ring-offset-color: #d97706;
  }

  .desktop\:focus-within\:ring-offset-yellow-700:focus-within{
    --tw-ring-offset-color: #b45309;
  }

  .desktop\:focus-within\:ring-offset-yellow-800:focus-within{
    --tw-ring-offset-color: #92400e;
  }

  .desktop\:focus-within\:ring-offset-yellow-900:focus-within{
    --tw-ring-offset-color: #78350f;
  }

  .desktop\:focus-within\:ring-offset-green-50:focus-within{
    --tw-ring-offset-color: #ecfdf5;
  }

  .desktop\:focus-within\:ring-offset-green-100:focus-within{
    --tw-ring-offset-color: #d1fae5;
  }

  .desktop\:focus-within\:ring-offset-green-200:focus-within{
    --tw-ring-offset-color: #a7f3d0;
  }

  .desktop\:focus-within\:ring-offset-green-300:focus-within{
    --tw-ring-offset-color: #6ee7b7;
  }

  .desktop\:focus-within\:ring-offset-green-400:focus-within{
    --tw-ring-offset-color: #34d399;
  }

  .desktop\:focus-within\:ring-offset-green-500:focus-within{
    --tw-ring-offset-color: #10b981;
  }

  .desktop\:focus-within\:ring-offset-green-600:focus-within{
    --tw-ring-offset-color: #059669;
  }

  .desktop\:focus-within\:ring-offset-green-700:focus-within{
    --tw-ring-offset-color: #047857;
  }

  .desktop\:focus-within\:ring-offset-green-800:focus-within{
    --tw-ring-offset-color: #065f46;
  }

  .desktop\:focus-within\:ring-offset-green-900:focus-within{
    --tw-ring-offset-color: #064e3b;
  }

  .desktop\:focus-within\:ring-offset-green-light:focus-within{
    --tw-ring-offset-color: #B5D1B9;
  }

  .desktop\:focus-within\:ring-offset-green-default:focus-within{
    --tw-ring-offset-color: #263B29;
  }

  .desktop\:focus-within\:ring-offset-green-dark:focus-within{
    --tw-ring-offset-color: #1C251E;
  }

  .desktop\:focus-within\:ring-offset-blue-50:focus-within{
    --tw-ring-offset-color: #eff6ff;
  }

  .desktop\:focus-within\:ring-offset-blue-100:focus-within{
    --tw-ring-offset-color: #dbeafe;
  }

  .desktop\:focus-within\:ring-offset-blue-200:focus-within{
    --tw-ring-offset-color: #bfdbfe;
  }

  .desktop\:focus-within\:ring-offset-blue-300:focus-within{
    --tw-ring-offset-color: #93c5fd;
  }

  .desktop\:focus-within\:ring-offset-blue-400:focus-within{
    --tw-ring-offset-color: #60a5fa;
  }

  .desktop\:focus-within\:ring-offset-blue-500:focus-within{
    --tw-ring-offset-color: #3b82f6;
  }

  .desktop\:focus-within\:ring-offset-blue-600:focus-within{
    --tw-ring-offset-color: #2563eb;
  }

  .desktop\:focus-within\:ring-offset-blue-700:focus-within{
    --tw-ring-offset-color: #1d4ed8;
  }

  .desktop\:focus-within\:ring-offset-blue-800:focus-within{
    --tw-ring-offset-color: #1e40af;
  }

  .desktop\:focus-within\:ring-offset-blue-900:focus-within{
    --tw-ring-offset-color: #1e3a8a;
  }

  .desktop\:focus-within\:ring-offset-indigo-50:focus-within{
    --tw-ring-offset-color: #eef2ff;
  }

  .desktop\:focus-within\:ring-offset-indigo-100:focus-within{
    --tw-ring-offset-color: #e0e7ff;
  }

  .desktop\:focus-within\:ring-offset-indigo-200:focus-within{
    --tw-ring-offset-color: #c7d2fe;
  }

  .desktop\:focus-within\:ring-offset-indigo-300:focus-within{
    --tw-ring-offset-color: #a5b4fc;
  }

  .desktop\:focus-within\:ring-offset-indigo-400:focus-within{
    --tw-ring-offset-color: #818cf8;
  }

  .desktop\:focus-within\:ring-offset-indigo-500:focus-within{
    --tw-ring-offset-color: #6366f1;
  }

  .desktop\:focus-within\:ring-offset-indigo-600:focus-within{
    --tw-ring-offset-color: #4f46e5;
  }

  .desktop\:focus-within\:ring-offset-indigo-700:focus-within{
    --tw-ring-offset-color: #4338ca;
  }

  .desktop\:focus-within\:ring-offset-indigo-800:focus-within{
    --tw-ring-offset-color: #3730a3;
  }

  .desktop\:focus-within\:ring-offset-indigo-900:focus-within{
    --tw-ring-offset-color: #312e81;
  }

  .desktop\:focus-within\:ring-offset-purple-50:focus-within{
    --tw-ring-offset-color: #f5f3ff;
  }

  .desktop\:focus-within\:ring-offset-purple-100:focus-within{
    --tw-ring-offset-color: #ede9fe;
  }

  .desktop\:focus-within\:ring-offset-purple-200:focus-within{
    --tw-ring-offset-color: #ddd6fe;
  }

  .desktop\:focus-within\:ring-offset-purple-300:focus-within{
    --tw-ring-offset-color: #c4b5fd;
  }

  .desktop\:focus-within\:ring-offset-purple-400:focus-within{
    --tw-ring-offset-color: #a78bfa;
  }

  .desktop\:focus-within\:ring-offset-purple-500:focus-within{
    --tw-ring-offset-color: #8b5cf6;
  }

  .desktop\:focus-within\:ring-offset-purple-600:focus-within{
    --tw-ring-offset-color: #7c3aed;
  }

  .desktop\:focus-within\:ring-offset-purple-700:focus-within{
    --tw-ring-offset-color: #6d28d9;
  }

  .desktop\:focus-within\:ring-offset-purple-800:focus-within{
    --tw-ring-offset-color: #5b21b6;
  }

  .desktop\:focus-within\:ring-offset-purple-900:focus-within{
    --tw-ring-offset-color: #4c1d95;
  }

  .desktop\:focus-within\:ring-offset-pink-50:focus-within{
    --tw-ring-offset-color: #fdf2f8;
  }

  .desktop\:focus-within\:ring-offset-pink-100:focus-within{
    --tw-ring-offset-color: #fce7f3;
  }

  .desktop\:focus-within\:ring-offset-pink-200:focus-within{
    --tw-ring-offset-color: #fbcfe8;
  }

  .desktop\:focus-within\:ring-offset-pink-300:focus-within{
    --tw-ring-offset-color: #f9a8d4;
  }

  .desktop\:focus-within\:ring-offset-pink-400:focus-within{
    --tw-ring-offset-color: #f472b6;
  }

  .desktop\:focus-within\:ring-offset-pink-500:focus-within{
    --tw-ring-offset-color: #ec4899;
  }

  .desktop\:focus-within\:ring-offset-pink-600:focus-within{
    --tw-ring-offset-color: #db2777;
  }

  .desktop\:focus-within\:ring-offset-pink-700:focus-within{
    --tw-ring-offset-color: #be185d;
  }

  .desktop\:focus-within\:ring-offset-pink-800:focus-within{
    --tw-ring-offset-color: #9d174d;
  }

  .desktop\:focus-within\:ring-offset-pink-900:focus-within{
    --tw-ring-offset-color: #831843;
  }

  .desktop\:focus-within\:ring-offset-brown-light:focus-within{
    --tw-ring-offset-color: #f0e9de;
  }

  .desktop\:focus-within\:ring-offset-brown-semi:focus-within{
    --tw-ring-offset-color: #ded6ca;
  }

  .desktop\:focus-within\:ring-offset-brown-default:focus-within{
    --tw-ring-offset-color: #7b6c5c;
  }

  .desktop\:focus-within\:ring-offset-brown-dark:focus-within{
    --tw-ring-offset-color: #3d2706;
  }

  .desktop\:focus-within\:ring-offset-success-light:focus-within{
    --tw-ring-offset-color: #91E09C;
  }

  .desktop\:focus-within\:ring-offset-success-default:focus-within{
    --tw-ring-offset-color: #2D993C;
  }

  .desktop\:focus-within\:ring-offset-success-dark:focus-within{
    --tw-ring-offset-color: #263B29;
  }

  .desktop\:focus-within\:ring-offset-error-light:focus-within{
    --tw-ring-offset-color: #F98686;
  }

  .desktop\:focus-within\:ring-offset-error-default:focus-within{
    --tw-ring-offset-color: #CB0707;
  }

  .desktop\:focus-within\:ring-offset-error-dark:focus-within{
    --tw-ring-offset-color: #580000;
  }

  .desktop\:focus-within\:ring-offset-navigation-dark:focus-within{
    --tw-ring-offset-color: #ffcd00;
  }

  .desktop\:focus\:ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent;
  }

  .desktop\:focus\:ring-offset-current:focus{
    --tw-ring-offset-color: currentColor;
  }

  .desktop\:focus\:ring-offset-black:focus{
    --tw-ring-offset-color: #000;
  }

  .desktop\:focus\:ring-offset-white:focus{
    --tw-ring-offset-color: #fff;
  }

  .desktop\:focus\:ring-offset-gray-50:focus{
    --tw-ring-offset-color: #f9fafb;
  }

  .desktop\:focus\:ring-offset-gray-100:focus{
    --tw-ring-offset-color: #f3f4f6;
  }

  .desktop\:focus\:ring-offset-gray-200:focus{
    --tw-ring-offset-color: #e5e7eb;
  }

  .desktop\:focus\:ring-offset-gray-300:focus{
    --tw-ring-offset-color: #d1d5db;
  }

  .desktop\:focus\:ring-offset-gray-400:focus{
    --tw-ring-offset-color: #9ca3af;
  }

  .desktop\:focus\:ring-offset-gray-500:focus{
    --tw-ring-offset-color: #6b7280;
  }

  .desktop\:focus\:ring-offset-gray-600:focus{
    --tw-ring-offset-color: #4b5563;
  }

  .desktop\:focus\:ring-offset-gray-700:focus{
    --tw-ring-offset-color: #374151;
  }

  .desktop\:focus\:ring-offset-gray-800:focus{
    --tw-ring-offset-color: #1f2937;
  }

  .desktop\:focus\:ring-offset-gray-900:focus{
    --tw-ring-offset-color: #111827;
  }

  .desktop\:focus\:ring-offset-red-50:focus{
    --tw-ring-offset-color: #fef2f2;
  }

  .desktop\:focus\:ring-offset-red-100:focus{
    --tw-ring-offset-color: #fee2e2;
  }

  .desktop\:focus\:ring-offset-red-200:focus{
    --tw-ring-offset-color: #fecaca;
  }

  .desktop\:focus\:ring-offset-red-300:focus{
    --tw-ring-offset-color: #fca5a5;
  }

  .desktop\:focus\:ring-offset-red-400:focus{
    --tw-ring-offset-color: #f87171;
  }

  .desktop\:focus\:ring-offset-red-500:focus{
    --tw-ring-offset-color: #ef4444;
  }

  .desktop\:focus\:ring-offset-red-600:focus{
    --tw-ring-offset-color: #dc2626;
  }

  .desktop\:focus\:ring-offset-red-700:focus{
    --tw-ring-offset-color: #b91c1c;
  }

  .desktop\:focus\:ring-offset-red-800:focus{
    --tw-ring-offset-color: #991b1b;
  }

  .desktop\:focus\:ring-offset-red-900:focus{
    --tw-ring-offset-color: #7f1d1d;
  }

  .desktop\:focus\:ring-offset-red-light:focus{
    --tw-ring-offset-color: #EA7A7A;
  }

  .desktop\:focus\:ring-offset-red-default:focus{
    --tw-ring-offset-color: #B90000;
  }

  .desktop\:focus\:ring-offset-red-dark:focus{
    --tw-ring-offset-color: #580000;
  }

  .desktop\:focus\:ring-offset-yellow-50:focus{
    --tw-ring-offset-color: #fffbeb;
  }

  .desktop\:focus\:ring-offset-yellow-100:focus{
    --tw-ring-offset-color: #fef3c7;
  }

  .desktop\:focus\:ring-offset-yellow-200:focus{
    --tw-ring-offset-color: #fde68a;
  }

  .desktop\:focus\:ring-offset-yellow-300:focus{
    --tw-ring-offset-color: #fcd34d;
  }

  .desktop\:focus\:ring-offset-yellow-400:focus{
    --tw-ring-offset-color: #fbbf24;
  }

  .desktop\:focus\:ring-offset-yellow-500:focus{
    --tw-ring-offset-color: #f59e0b;
  }

  .desktop\:focus\:ring-offset-yellow-600:focus{
    --tw-ring-offset-color: #d97706;
  }

  .desktop\:focus\:ring-offset-yellow-700:focus{
    --tw-ring-offset-color: #b45309;
  }

  .desktop\:focus\:ring-offset-yellow-800:focus{
    --tw-ring-offset-color: #92400e;
  }

  .desktop\:focus\:ring-offset-yellow-900:focus{
    --tw-ring-offset-color: #78350f;
  }

  .desktop\:focus\:ring-offset-green-50:focus{
    --tw-ring-offset-color: #ecfdf5;
  }

  .desktop\:focus\:ring-offset-green-100:focus{
    --tw-ring-offset-color: #d1fae5;
  }

  .desktop\:focus\:ring-offset-green-200:focus{
    --tw-ring-offset-color: #a7f3d0;
  }

  .desktop\:focus\:ring-offset-green-300:focus{
    --tw-ring-offset-color: #6ee7b7;
  }

  .desktop\:focus\:ring-offset-green-400:focus{
    --tw-ring-offset-color: #34d399;
  }

  .desktop\:focus\:ring-offset-green-500:focus{
    --tw-ring-offset-color: #10b981;
  }

  .desktop\:focus\:ring-offset-green-600:focus{
    --tw-ring-offset-color: #059669;
  }

  .desktop\:focus\:ring-offset-green-700:focus{
    --tw-ring-offset-color: #047857;
  }

  .desktop\:focus\:ring-offset-green-800:focus{
    --tw-ring-offset-color: #065f46;
  }

  .desktop\:focus\:ring-offset-green-900:focus{
    --tw-ring-offset-color: #064e3b;
  }

  .desktop\:focus\:ring-offset-green-light:focus{
    --tw-ring-offset-color: #B5D1B9;
  }

  .desktop\:focus\:ring-offset-green-default:focus{
    --tw-ring-offset-color: #263B29;
  }

  .desktop\:focus\:ring-offset-green-dark:focus{
    --tw-ring-offset-color: #1C251E;
  }

  .desktop\:focus\:ring-offset-blue-50:focus{
    --tw-ring-offset-color: #eff6ff;
  }

  .desktop\:focus\:ring-offset-blue-100:focus{
    --tw-ring-offset-color: #dbeafe;
  }

  .desktop\:focus\:ring-offset-blue-200:focus{
    --tw-ring-offset-color: #bfdbfe;
  }

  .desktop\:focus\:ring-offset-blue-300:focus{
    --tw-ring-offset-color: #93c5fd;
  }

  .desktop\:focus\:ring-offset-blue-400:focus{
    --tw-ring-offset-color: #60a5fa;
  }

  .desktop\:focus\:ring-offset-blue-500:focus{
    --tw-ring-offset-color: #3b82f6;
  }

  .desktop\:focus\:ring-offset-blue-600:focus{
    --tw-ring-offset-color: #2563eb;
  }

  .desktop\:focus\:ring-offset-blue-700:focus{
    --tw-ring-offset-color: #1d4ed8;
  }

  .desktop\:focus\:ring-offset-blue-800:focus{
    --tw-ring-offset-color: #1e40af;
  }

  .desktop\:focus\:ring-offset-blue-900:focus{
    --tw-ring-offset-color: #1e3a8a;
  }

  .desktop\:focus\:ring-offset-indigo-50:focus{
    --tw-ring-offset-color: #eef2ff;
  }

  .desktop\:focus\:ring-offset-indigo-100:focus{
    --tw-ring-offset-color: #e0e7ff;
  }

  .desktop\:focus\:ring-offset-indigo-200:focus{
    --tw-ring-offset-color: #c7d2fe;
  }

  .desktop\:focus\:ring-offset-indigo-300:focus{
    --tw-ring-offset-color: #a5b4fc;
  }

  .desktop\:focus\:ring-offset-indigo-400:focus{
    --tw-ring-offset-color: #818cf8;
  }

  .desktop\:focus\:ring-offset-indigo-500:focus{
    --tw-ring-offset-color: #6366f1;
  }

  .desktop\:focus\:ring-offset-indigo-600:focus{
    --tw-ring-offset-color: #4f46e5;
  }

  .desktop\:focus\:ring-offset-indigo-700:focus{
    --tw-ring-offset-color: #4338ca;
  }

  .desktop\:focus\:ring-offset-indigo-800:focus{
    --tw-ring-offset-color: #3730a3;
  }

  .desktop\:focus\:ring-offset-indigo-900:focus{
    --tw-ring-offset-color: #312e81;
  }

  .desktop\:focus\:ring-offset-purple-50:focus{
    --tw-ring-offset-color: #f5f3ff;
  }

  .desktop\:focus\:ring-offset-purple-100:focus{
    --tw-ring-offset-color: #ede9fe;
  }

  .desktop\:focus\:ring-offset-purple-200:focus{
    --tw-ring-offset-color: #ddd6fe;
  }

  .desktop\:focus\:ring-offset-purple-300:focus{
    --tw-ring-offset-color: #c4b5fd;
  }

  .desktop\:focus\:ring-offset-purple-400:focus{
    --tw-ring-offset-color: #a78bfa;
  }

  .desktop\:focus\:ring-offset-purple-500:focus{
    --tw-ring-offset-color: #8b5cf6;
  }

  .desktop\:focus\:ring-offset-purple-600:focus{
    --tw-ring-offset-color: #7c3aed;
  }

  .desktop\:focus\:ring-offset-purple-700:focus{
    --tw-ring-offset-color: #6d28d9;
  }

  .desktop\:focus\:ring-offset-purple-800:focus{
    --tw-ring-offset-color: #5b21b6;
  }

  .desktop\:focus\:ring-offset-purple-900:focus{
    --tw-ring-offset-color: #4c1d95;
  }

  .desktop\:focus\:ring-offset-pink-50:focus{
    --tw-ring-offset-color: #fdf2f8;
  }

  .desktop\:focus\:ring-offset-pink-100:focus{
    --tw-ring-offset-color: #fce7f3;
  }

  .desktop\:focus\:ring-offset-pink-200:focus{
    --tw-ring-offset-color: #fbcfe8;
  }

  .desktop\:focus\:ring-offset-pink-300:focus{
    --tw-ring-offset-color: #f9a8d4;
  }

  .desktop\:focus\:ring-offset-pink-400:focus{
    --tw-ring-offset-color: #f472b6;
  }

  .desktop\:focus\:ring-offset-pink-500:focus{
    --tw-ring-offset-color: #ec4899;
  }

  .desktop\:focus\:ring-offset-pink-600:focus{
    --tw-ring-offset-color: #db2777;
  }

  .desktop\:focus\:ring-offset-pink-700:focus{
    --tw-ring-offset-color: #be185d;
  }

  .desktop\:focus\:ring-offset-pink-800:focus{
    --tw-ring-offset-color: #9d174d;
  }

  .desktop\:focus\:ring-offset-pink-900:focus{
    --tw-ring-offset-color: #831843;
  }

  .desktop\:focus\:ring-offset-brown-light:focus{
    --tw-ring-offset-color: #f0e9de;
  }

  .desktop\:focus\:ring-offset-brown-semi:focus{
    --tw-ring-offset-color: #ded6ca;
  }

  .desktop\:focus\:ring-offset-brown-default:focus{
    --tw-ring-offset-color: #7b6c5c;
  }

  .desktop\:focus\:ring-offset-brown-dark:focus{
    --tw-ring-offset-color: #3d2706;
  }

  .desktop\:focus\:ring-offset-success-light:focus{
    --tw-ring-offset-color: #91E09C;
  }

  .desktop\:focus\:ring-offset-success-default:focus{
    --tw-ring-offset-color: #2D993C;
  }

  .desktop\:focus\:ring-offset-success-dark:focus{
    --tw-ring-offset-color: #263B29;
  }

  .desktop\:focus\:ring-offset-error-light:focus{
    --tw-ring-offset-color: #F98686;
  }

  .desktop\:focus\:ring-offset-error-default:focus{
    --tw-ring-offset-color: #CB0707;
  }

  .desktop\:focus\:ring-offset-error-dark:focus{
    --tw-ring-offset-color: #580000;
  }

  .desktop\:focus\:ring-offset-navigation-dark:focus{
    --tw-ring-offset-color: #ffcd00;
  }

  .desktop\:filter{
    --tw-blur: var(--tw-empty,/*!*/ /*!*/);
    --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
    --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
    --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
    --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
    --tw-invert: var(--tw-empty,/*!*/ /*!*/);
    --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
    --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
    --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  }

  .desktop\:filter-none{
    filter: none;
  }

  .desktop\:blur-0{
    --tw-blur: blur(0);
  }

  .desktop\:blur-none{
    --tw-blur: blur(0);
  }

  .desktop\:blur-sm{
    --tw-blur: blur(4px);
  }

  .desktop\:blur{
    --tw-blur: blur(8px);
  }

  .desktop\:blur-md{
    --tw-blur: blur(12px);
  }

  .desktop\:blur-lg{
    --tw-blur: blur(16px);
  }

  .desktop\:blur-xl{
    --tw-blur: blur(24px);
  }

  .desktop\:blur-2xl{
    --tw-blur: blur(40px);
  }

  .desktop\:blur-3xl{
    --tw-blur: blur(64px);
  }

  .desktop\:brightness-0{
    --tw-brightness: brightness(0);
  }

  .desktop\:brightness-50{
    --tw-brightness: brightness(.5);
  }

  .desktop\:brightness-75{
    --tw-brightness: brightness(.75);
  }

  .desktop\:brightness-90{
    --tw-brightness: brightness(.9);
  }

  .desktop\:brightness-95{
    --tw-brightness: brightness(.95);
  }

  .desktop\:brightness-100{
    --tw-brightness: brightness(1);
  }

  .desktop\:brightness-105{
    --tw-brightness: brightness(1.05);
  }

  .desktop\:brightness-110{
    --tw-brightness: brightness(1.1);
  }

  .desktop\:brightness-125{
    --tw-brightness: brightness(1.25);
  }

  .desktop\:brightness-150{
    --tw-brightness: brightness(1.5);
  }

  .desktop\:brightness-200{
    --tw-brightness: brightness(2);
  }

  .desktop\:contrast-0{
    --tw-contrast: contrast(0);
  }

  .desktop\:contrast-50{
    --tw-contrast: contrast(.5);
  }

  .desktop\:contrast-75{
    --tw-contrast: contrast(.75);
  }

  .desktop\:contrast-100{
    --tw-contrast: contrast(1);
  }

  .desktop\:contrast-125{
    --tw-contrast: contrast(1.25);
  }

  .desktop\:contrast-150{
    --tw-contrast: contrast(1.5);
  }

  .desktop\:contrast-200{
    --tw-contrast: contrast(2);
  }

  .desktop\:drop-shadow-sm{
    --tw-drop-shadow: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
  }

  .desktop\:drop-shadow{
    --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
  }

  .desktop\:drop-shadow-md{
    --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
  }

  .desktop\:drop-shadow-lg{
    --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
  }

  .desktop\:drop-shadow-xl{
    --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
  }

  .desktop\:drop-shadow-2xl{
    --tw-drop-shadow: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
  }

  .desktop\:drop-shadow-none{
    --tw-drop-shadow: drop-shadow(0 0 #0000);
  }

  .desktop\:grayscale-0{
    --tw-grayscale: grayscale(0);
  }

  .desktop\:grayscale{
    --tw-grayscale: grayscale(100%);
  }

  .desktop\:hue-rotate-0{
    --tw-hue-rotate: hue-rotate(0deg);
  }

  .desktop\:hue-rotate-15{
    --tw-hue-rotate: hue-rotate(15deg);
  }

  .desktop\:hue-rotate-30{
    --tw-hue-rotate: hue-rotate(30deg);
  }

  .desktop\:hue-rotate-60{
    --tw-hue-rotate: hue-rotate(60deg);
  }

  .desktop\:hue-rotate-90{
    --tw-hue-rotate: hue-rotate(90deg);
  }

  .desktop\:hue-rotate-180{
    --tw-hue-rotate: hue-rotate(180deg);
  }

  .desktop\:-hue-rotate-180{
    --tw-hue-rotate: hue-rotate(-180deg);
  }

  .desktop\:-hue-rotate-90{
    --tw-hue-rotate: hue-rotate(-90deg);
  }

  .desktop\:-hue-rotate-60{
    --tw-hue-rotate: hue-rotate(-60deg);
  }

  .desktop\:-hue-rotate-30{
    --tw-hue-rotate: hue-rotate(-30deg);
  }

  .desktop\:-hue-rotate-15{
    --tw-hue-rotate: hue-rotate(-15deg);
  }

  .desktop\:invert-0{
    --tw-invert: invert(0);
  }

  .desktop\:invert{
    --tw-invert: invert(100%);
  }

  .desktop\:saturate-0{
    --tw-saturate: saturate(0);
  }

  .desktop\:saturate-50{
    --tw-saturate: saturate(.5);
  }

  .desktop\:saturate-100{
    --tw-saturate: saturate(1);
  }

  .desktop\:saturate-150{
    --tw-saturate: saturate(1.5);
  }

  .desktop\:saturate-200{
    --tw-saturate: saturate(2);
  }

  .desktop\:sepia-0{
    --tw-sepia: sepia(0);
  }

  .desktop\:sepia{
    --tw-sepia: sepia(100%);
  }

  .desktop\:backdrop-filter{
    --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/);
    --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
            backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  }

  .desktop\:backdrop-filter-none{
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }

  .desktop\:backdrop-blur-0{
    --tw-backdrop-blur: blur(0);
  }

  .desktop\:backdrop-blur-none{
    --tw-backdrop-blur: blur(0);
  }

  .desktop\:backdrop-blur-sm{
    --tw-backdrop-blur: blur(4px);
  }

  .desktop\:backdrop-blur{
    --tw-backdrop-blur: blur(8px);
  }

  .desktop\:backdrop-blur-md{
    --tw-backdrop-blur: blur(12px);
  }

  .desktop\:backdrop-blur-lg{
    --tw-backdrop-blur: blur(16px);
  }

  .desktop\:backdrop-blur-xl{
    --tw-backdrop-blur: blur(24px);
  }

  .desktop\:backdrop-blur-2xl{
    --tw-backdrop-blur: blur(40px);
  }

  .desktop\:backdrop-blur-3xl{
    --tw-backdrop-blur: blur(64px);
  }

  .desktop\:backdrop-brightness-0{
    --tw-backdrop-brightness: brightness(0);
  }

  .desktop\:backdrop-brightness-50{
    --tw-backdrop-brightness: brightness(.5);
  }

  .desktop\:backdrop-brightness-75{
    --tw-backdrop-brightness: brightness(.75);
  }

  .desktop\:backdrop-brightness-90{
    --tw-backdrop-brightness: brightness(.9);
  }

  .desktop\:backdrop-brightness-95{
    --tw-backdrop-brightness: brightness(.95);
  }

  .desktop\:backdrop-brightness-100{
    --tw-backdrop-brightness: brightness(1);
  }

  .desktop\:backdrop-brightness-105{
    --tw-backdrop-brightness: brightness(1.05);
  }

  .desktop\:backdrop-brightness-110{
    --tw-backdrop-brightness: brightness(1.1);
  }

  .desktop\:backdrop-brightness-125{
    --tw-backdrop-brightness: brightness(1.25);
  }

  .desktop\:backdrop-brightness-150{
    --tw-backdrop-brightness: brightness(1.5);
  }

  .desktop\:backdrop-brightness-200{
    --tw-backdrop-brightness: brightness(2);
  }

  .desktop\:backdrop-contrast-0{
    --tw-backdrop-contrast: contrast(0);
  }

  .desktop\:backdrop-contrast-50{
    --tw-backdrop-contrast: contrast(.5);
  }

  .desktop\:backdrop-contrast-75{
    --tw-backdrop-contrast: contrast(.75);
  }

  .desktop\:backdrop-contrast-100{
    --tw-backdrop-contrast: contrast(1);
  }

  .desktop\:backdrop-contrast-125{
    --tw-backdrop-contrast: contrast(1.25);
  }

  .desktop\:backdrop-contrast-150{
    --tw-backdrop-contrast: contrast(1.5);
  }

  .desktop\:backdrop-contrast-200{
    --tw-backdrop-contrast: contrast(2);
  }

  .desktop\:backdrop-grayscale-0{
    --tw-backdrop-grayscale: grayscale(0);
  }

  .desktop\:backdrop-grayscale{
    --tw-backdrop-grayscale: grayscale(100%);
  }

  .desktop\:backdrop-hue-rotate-0{
    --tw-backdrop-hue-rotate: hue-rotate(0deg);
  }

  .desktop\:backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(15deg);
  }

  .desktop\:backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(30deg);
  }

  .desktop\:backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(60deg);
  }

  .desktop\:backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(90deg);
  }

  .desktop\:backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(180deg);
  }

  .desktop\:-backdrop-hue-rotate-180{
    --tw-backdrop-hue-rotate: hue-rotate(-180deg);
  }

  .desktop\:-backdrop-hue-rotate-90{
    --tw-backdrop-hue-rotate: hue-rotate(-90deg);
  }

  .desktop\:-backdrop-hue-rotate-60{
    --tw-backdrop-hue-rotate: hue-rotate(-60deg);
  }

  .desktop\:-backdrop-hue-rotate-30{
    --tw-backdrop-hue-rotate: hue-rotate(-30deg);
  }

  .desktop\:-backdrop-hue-rotate-15{
    --tw-backdrop-hue-rotate: hue-rotate(-15deg);
  }

  .desktop\:backdrop-invert-0{
    --tw-backdrop-invert: invert(0);
  }

  .desktop\:backdrop-invert{
    --tw-backdrop-invert: invert(100%);
  }

  .desktop\:backdrop-opacity-0{
    --tw-backdrop-opacity: opacity(0);
  }

  .desktop\:backdrop-opacity-5{
    --tw-backdrop-opacity: opacity(0.05);
  }

  .desktop\:backdrop-opacity-10{
    --tw-backdrop-opacity: opacity(0.1);
  }

  .desktop\:backdrop-opacity-20{
    --tw-backdrop-opacity: opacity(0.2);
  }

  .desktop\:backdrop-opacity-25{
    --tw-backdrop-opacity: opacity(0.25);
  }

  .desktop\:backdrop-opacity-30{
    --tw-backdrop-opacity: opacity(0.3);
  }

  .desktop\:backdrop-opacity-40{
    --tw-backdrop-opacity: opacity(0.4);
  }

  .desktop\:backdrop-opacity-50{
    --tw-backdrop-opacity: opacity(0.5);
  }

  .desktop\:backdrop-opacity-60{
    --tw-backdrop-opacity: opacity(0.6);
  }

  .desktop\:backdrop-opacity-70{
    --tw-backdrop-opacity: opacity(0.7);
  }

  .desktop\:backdrop-opacity-75{
    --tw-backdrop-opacity: opacity(0.75);
  }

  .desktop\:backdrop-opacity-80{
    --tw-backdrop-opacity: opacity(0.8);
  }

  .desktop\:backdrop-opacity-90{
    --tw-backdrop-opacity: opacity(0.9);
  }

  .desktop\:backdrop-opacity-95{
    --tw-backdrop-opacity: opacity(0.95);
  }

  .desktop\:backdrop-opacity-100{
    --tw-backdrop-opacity: opacity(1);
  }

  .desktop\:backdrop-saturate-0{
    --tw-backdrop-saturate: saturate(0);
  }

  .desktop\:backdrop-saturate-50{
    --tw-backdrop-saturate: saturate(.5);
  }

  .desktop\:backdrop-saturate-100{
    --tw-backdrop-saturate: saturate(1);
  }

  .desktop\:backdrop-saturate-150{
    --tw-backdrop-saturate: saturate(1.5);
  }

  .desktop\:backdrop-saturate-200{
    --tw-backdrop-saturate: saturate(2);
  }

  .desktop\:backdrop-sepia-0{
    --tw-backdrop-sepia: sepia(0);
  }

  .desktop\:backdrop-sepia{
    --tw-backdrop-sepia: sepia(100%);
  }

  .desktop\:transition-none{
    transition-property: none;
  }

  .desktop\:transition-all{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .desktop\:transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .desktop\:transition-colors{
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .desktop\:transition-opacity{
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .desktop\:transition-shadow{
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .desktop\:transition-transform{
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .desktop\:delay-75{
    transition-delay: 75ms;
  }

  .desktop\:delay-100{
    transition-delay: 100ms;
  }

  .desktop\:delay-150{
    transition-delay: 150ms;
  }

  .desktop\:delay-200{
    transition-delay: 200ms;
  }

  .desktop\:delay-300{
    transition-delay: 300ms;
  }

  .desktop\:delay-500{
    transition-delay: 500ms;
  }

  .desktop\:delay-700{
    transition-delay: 700ms;
  }

  .desktop\:delay-1000{
    transition-delay: 1000ms;
  }

  .desktop\:duration-75{
    transition-duration: 75ms;
  }

  .desktop\:duration-100{
    transition-duration: 100ms;
  }

  .desktop\:duration-150{
    transition-duration: 150ms;
  }

  .desktop\:duration-200{
    transition-duration: 200ms;
  }

  .desktop\:duration-300{
    transition-duration: 300ms;
  }

  .desktop\:duration-500{
    transition-duration: 500ms;
  }

  .desktop\:duration-700{
    transition-duration: 700ms;
  }

  .desktop\:duration-1000{
    transition-duration: 1000ms;
  }

  .desktop\:ease-linear{
    transition-timing-function: linear;
  }

  .desktop\:ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }

  .desktop\:ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  .desktop\:ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
}
